:root {
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --color-caramel: rgb(231, 231, 231);
    --color-bg: #ffffff;
    --color-text: #222;
    --glass-blur: rgba(255, 255, 255, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 140px;
    padding: 0 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: background-color 0.3s ease;
}

.logo {
    margin-left: 5rem; /* shifts logo right */
}

.call-top-button {
    position: absolute;
    top: 20px;
    right: 60px;
}

.call-link {
    display: inline-block;
    background-color: transparent;
    color: #888; /* light grey */
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-style: italic;
    text-decoration: none;
    padding: 6px 14px;
    border: 1px solid transparent;
    border-radius: 30px;
    transition: all 0.3s ease;
}
.logo img {
    height: 350px;
    object-fit: contain;
    filter: drop-shadow(0 1px 2px rgba(103, 103, 103, 0.1));
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.nav {
    display: flex;
    align-items: center;
}

.nav-wrapper {
    display: flex;
    justify-content: center;
    flex: 1;
}

.nav-call {
    margin-bottom: 39px;
    text-align: center;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 0;
    margin: 0;
}

.nav-links a {
    font-family: "Times New Roman";
    font-weight: 500;
    font-size: 1.2rem;
    color: #000;
    text-decoration: none;
    padding: 8px 0;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background: var(--color-caramel);
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--color-caramel);
}

.burger {
    display: none;
}

.burger span {
    width: 25px;
    height: 3px;
    background: #222;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
}

.fullscreen-nav {
    position: fixed;
    inset: 0;
    background-color: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.fullscreen-nav.active {
    opacity: 1;
    pointer-events: auto;
}

.fullscreen-nav ul {
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 0;
    margin: 0;
}

.fullscreen-nav li {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.fullscreen-nav.active li {
    opacity: 1;
    transform: translateY(0);
}

.fullscreen-nav.active li:nth-child(1) { transition-delay: 0.1s; }
.fullscreen-nav.active li:nth-child(2) { transition-delay: 0.2s; }
.fullscreen-nav.active li:nth-child(3) { transition-delay: 0.3s; }
.fullscreen-nav.active li:nth-child(4) { transition-delay: 0.4s; }
.fullscreen-nav.active li:nth-child(5) { transition-delay: 0.5s; }
.fullscreen-nav.active li:nth-child(6) { transition-delay: 0.6s; }

.fullscreen-nav a {
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: #000;
}

.close-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 1.8rem;
    font-family: var(--font-heading);
    color: #8f5b2c;
    cursor: pointer;
    z-index: 10001;
    padding: 5px 10px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px);
    transition: background 0.3s ease;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.8);
}

.hero {
    margin-top: 128px;
    position: relative;
    height: 95vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #fff;
}

.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: grid;
}

.hero-slider .slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: fadeHero 15s infinite ease-in-out;
    filter: blur(6px) brightness(0.9);
    transition: opacity 0.5s ease;
}

.hero-slider .slide:nth-child(1) { animation-delay: 0s; }
.hero-slider .slide:nth-child(2) { animation-delay: 5s; }
.hero-slider .slide:nth-child(3) { animation-delay: 10s; }

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    padding: 20px;
    animation: fadeInUp 1.2s ease-out;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--color-caramel);
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.7rem;
    margin-bottom: 30px;
    color: #fff2d6;
}

.btn-cta {
    display: inline-block;
    background: var(--color-caramel);
    color: #835959;
    padding: 12px 30px;
    border-radius: 40px;
    font-weight: 500;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(197, 138, 83, 0.3);
    transition: all 0.5s ease;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(197, 138, 83, 0.4);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: #fff;
    letter-spacing: 1px;
    animation: bounceText 2s infinite ease-in-out;
}

.scroll-indicator .line {
    width: 2px;
    height: 40px;
    background: #fff;
    margin: 6px auto 0;
    animation: bounceLine 2s infinite ease-in-out;
}

@keyframes fadeHero {
    0% { opacity: 0; }
    10% { opacity: 1; }
    30% { opacity: 1; }
    40% { opacity: 0; }
    100% { opacity: 0; }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInMenu {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounceText {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, 10px); }
}

@keyframes bounceLine {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(0.6); }
}

@media (max-width: 768px) {
    .logo {
        margin-left: 0;
    }

    .logo img {
        height: 200px;
        object-fit: contain;
    }

    .burger {
        display: flex;
    }
}

@media (max-width: 768px) {
    .site-header {
        padding: 0 20px;
        height: 100px;
    }
    
    .logo {
        margin-left: 0;
    }

    .logo img {
        height: 200px;
        object-fit: contain;
    }

    .nav-wrapper,
    .nav-links,
    .desktop-phone {
        display: none;
    }

    .burger {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        position: absolute;
        top: 30px;
        right: 30px;
        z-index: 10001;
    }

    .burger.active {
        position: fixed;
        z-index: 10002;
    }

    .mobile-header-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin-bottom: 20px;
    }

    .phone-link,
    .phone-inline {
        color: inherit;
        text-decoration: none;
        font-family: var(--font-body);
        font-size: 0.95rem;
        cursor: pointer;
    }

    .phone-link:hover,
    .phone-inline:hover {
        color: var(--color-caramel);
    }

    .phone-link svg {
        width: 16px;
        height: 16px;
        fill: rgba(0, 0, 0, 0.6);
    }

    .lang {
        font-size: 0.95rem;
        color: rgba(0, 0, 0, 0.6);
    }
    
    .hero {
        margin-top: 100px;
        height: 70vh;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.4rem;
    }
    
    .reserve-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn-cta {
        padding: 14px 28px;
        font-size: 1rem;
    }
}

@media (min-width: 769px) {
    .mobile-header-info {
        display: none;
    }
}

.call-link {
    display: inline-block;
    background-color: var(--color-caramel);
    color: #000000;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.reserve-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.reserve-btn {
    background: var(--color-caramel);
    color: #000000;
    border: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.reserve-btn:hover {
    background: #8f5b2c;
    color: #fff;
}

.lang-switcher {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: #888;
    display: flex;
    align-items: center;
    gap: 4px;
}

.lang-switcher span {
    color: #aaa;
    cursor: pointer;
    transition: color 0.3s ease;
}

.lang-switcher span:hover {
    color: #000;
}

.lang-switcher strong {
    font-weight: 500;
    color: #8f5b2c;
}

@media (max-width: 768px) {
    .desktop-lang {
        display: none;
    }
}

.header-phone {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: #8f5b2c;
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.header-phone a {
    color: #8f5b2c;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.header-phone a:hover {
    color: #000;
}

.btn-reserve-header {
    background: var(--color-caramel);
    color: #000000;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-reserve-header:hover {
    background: #8f5b2c;
    color: #fff;
}

@media (max-width: 768px) {
    .desktop-phone {
        display: none;
    }
}

@media (max-width: 768px) {
    .desktop-lang {
        display: none;
    }
}

@media (min-width: 769px) {
    .mobile-lang {
        display: none;
    }
}

/* ====== ABOUT ROBI SECTION ====== */

.about {
    padding: 120px 20px;
    background-color: #fffbfb;
    text-align: center;
}

.container {
    max-width: 900px;
    margin: 0 auto;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--color-caramel);
    animation: fadeInUp 1s ease-out;
}

.about-text {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: #c09f34;
    line-height: 1.8;
    letter-spacing: 0.2px;
    animation: fadeInUp 1.2s ease-out;
    max-width: 700px;
    margin: 0 auto;
}

/* ====== ATMOSPHERE ROBI SECTION ====== */

.atmosphere {
    padding: 100px 40px;
    background: #fff;
}

.atmosphere-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.atmosphere-image img {
    max-width: 500px;
    width: 100%;
    border-radius: 0px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    object-fit: cover;
}

.atmosphere-text {
    max-width: 500px;
    font-family: var(--font-heading);
    color: #222;
    animation: fadeInUp 1s ease-out;
}

.atmosphere-text h2 {
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--color-caramel);
    margin-bottom: 20px;
    text-shadow: #111111;
}

.atmosphere-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 12px;
}

.btn-cta.small {
    padding: 10px 22px;
    font-size: 0.95rem;
    background: #8f5b2c;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    display: inline-block;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.btn-cta.small:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .atmosphere-grid {
        flex-direction: column;
        text-align: center;
    }

    .atmosphere-text h2 {
        font-size: 2rem;
    }
}

/* ====== SIGNATURE ROBI SECTION ====== */

.signature-title {
    color: rgba(168, 106, 53, 0.54); /* deep caramel tone or anything you prefer */
    font-weight: 300;
}

.signature-dishes {
    padding: 100px 20px;
    background-color: #fdfdfd;
    text-align: center;
}

.signature-dishes .container {
    max-width: 1200px;
    margin: 0 auto;
}

.dishes-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.dish-card {
    background: #fff;
    border-radius: 0px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    max-width: 360px;
    text-align: left;
    transition: transform 0.3s ease;
}

.dish-card:hover {
    transform: translateY(-5px);
}

.dish-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.dish-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin: 16px 20px 6px;
    color: #222;
}

.dish-card p {
    font-family: var(--font-body);
    font-size: 1rem;
    color: #555;
    margin: 0 20px 20px;
    line-height: 1.6;
}

.btn-cta.small.center {
    display: inline-block;
    margin-top: 40px;
    font-size: 0.95rem;
    padding: 10px 24px;
    background-color: var(--color-caramel);
    color: #000;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta.small.center:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

/* ====== RESERVATIONS SECTION ====== */

.reservations-section {
    padding: 100px 40px;
    background: #f9f9f9;
    text-align: center;
}

.reservations-section .container {
    max-width: 1000px;
    margin: 0 auto;
}

.reservations-section .section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #8f5b2c;
    animation: fadeInUp 1s ease-out;
}

.reservations-intro {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.reservation-wrapper {
    background: linear-gradient(135deg, #fff 0%, #fafafa 100%);
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    margin-bottom: 50px;
    text-align: left;
    border: 1px solid rgba(143, 91, 44, 0.1);
    position: relative;
    overflow: hidden;
}

.reservation-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8f5b2c, #b8763a, #8f5b2c);
    border-radius: 16px 16px 0 0;
}

.reservation-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.form-group {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    width: 100%;
}

.form-group label {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    color: #444;
    margin-bottom: 10px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 4px;
}

.form-group label::after {
    content: '*';
    color: #e74c3c;
    font-size: 1.1rem;
    margin-left: 2px;
}

.form-group.optional label::after {
    display: none;
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-body);
    font-size: 1rem;
    padding: 16px 20px;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    background: #fff;
    color: #333;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8f5b2c;
    box-shadow: 0 0 0 4px rgba(143, 91, 44, 0.15), 0 4px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.form-group input:hover:not(:focus),
.form-group select:hover:not(:focus),
.form-group textarea:hover:not(:focus) {
    border-color: #d0d0d0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.reservation-submit {
    background: linear-gradient(135deg, #8f5b2c 0%, #b8763a 100%);
    color: #fff;
    border: none;
    padding: 18px 40px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 30px;
    position: relative;
    box-shadow: 0 8px 24px rgba(143, 91, 44, 0.3);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    overflow: hidden;
}

.reservation-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.reservation-submit:hover:not(:disabled) {
    background: linear-gradient(135deg, #7a4d39 0%, #a66832 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(143, 91, 44, 0.4);
}

.reservation-submit:hover:not(:disabled)::before {
    left: 100%;
}

.reservation-submit:active:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(143, 91, 44, 0.35);
}

.reservation-submit:disabled {
    background: linear-gradient(135deg, #ccc 0%, #bbb 100%);
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.submit-loading {
    display: none;
    margin-left: 8px;
}

.submit-loading::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.reservation-message {
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    margin-top: 30px;
    position: relative;
    animation: fadeInUp 0.6s ease-out;
}

.reservation-message.success {
    background: linear-gradient(135deg, #e8f5e8 0%, #f0f9f0 100%);
    border: 2px solid #4caf50;
    color: #2e7d32;
    box-shadow: 0 8px 24px rgba(76, 175, 80, 0.2);
}

.reservation-message.success::before {
    content: '✓';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #4caf50;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
}

.reservation-message.error {
    background: linear-gradient(135deg, #ffebee 0%, #fef5f5 100%);
    border: 2px solid #f44336;
    color: #c62828;
    box-shadow: 0 8px 24px rgba(244, 67, 54, 0.2);
}

.reservation-message.error::before {
    content: '!';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #f44336;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
}

.reservation-message h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.reservation-message p {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
}

.reservation-message a {
    color: inherit;
    font-weight: 500;
}

.reservation-info {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.info-item {
    text-align: center;
    max-width: 300px;
}

.info-item h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: #8f5b2c;
    margin-bottom: 10px;
}

.info-item p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.info-item a {
    color: #8f5b2c;
    text-decoration: none;
    font-weight: 500;
}

.info-item a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .reservations-section {
        padding: 80px 20px;
    }
    
    .reservation-wrapper {
        padding: 30px 20px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .form-group {
        min-width: auto;
    }
    
    .reservation-info {
        flex-direction: column;
        gap: 30px;
        text-align: center;
        align-items: center;
        justify-content: center;
    }
    
    .info-item {
        text-align: center;
        max-width: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .info-item h4 {
        text-align: center;
        width: 100%;
    }
    
    .info-item p {
        text-align: center;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .reservations-section .section-title {
        font-size: 2rem;
    }
}

/* ===== MENU SECTION ===== */
.menu-access {
    padding: 100px 40px;
    background: #ffffff;
}

.menu-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.menu-info {
    flex: 1 1 500px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    font-family: var(--font-body);
}

.menu-header {
    font-size: 2.2rem;
    font-weight: 300;
    color: #222;
    margin-bottom: 10px;
}

/* Individual link blocks */
.menu-link {
    margin-top: 16px;
    position: relative;
    padding-bottom: 16px;
    text-align: left;
}

/* Link text */
.menu-link a {
    font-size: 1.3rem;
    font-weight: 400;
    color: #8f5b2c;
    text-decoration: none;
    position: relative;
    z-index: 2;
    display: inline-block;
    transition: color 0.3s ease;
    animation: fadeInUp 0.8s ease-out;
}

/* Underline animation */
.menu-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0%;
    background: #8f5b2c;
    transition: width 0.6s ease;
    animation: lineGrow 1.2s ease forwards;
}

@keyframes lineGrow {
    0% { width: 0%; }
    100% { width: 60%; }
}

/* Subtitle text under links */
.menu-link span {
    display: block;
    margin-top: 4px;
    font-size: 0.95rem;
    color: #666;
    font-weight: 300;
}

/* Right side image */
.menu-image img {
    width: 100%;
    max-width: 460px;
    border-radius: 0px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .menu-image {
        order: -1; /* Moves the image above the text */
    }

    .menu-link {
        text-align: center;
    }

    .menu-link::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .menu-link span {
        text-align: center;
    }

    .menu-header {
        font-size: 1.8rem;
    }

    .menu-image img {
        margin-top: 0;
        margin-bottom: 30px;
    }
}

/* ====== Chief Founder ROBI SECTION ====== */

.meet-team {
    padding: 100px 40px;
    background: #fff;
    text-align: center;
}

.team-wrapper {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.team-member {
    max-width: 320px;
    font-family: var(--font-body);
    text-align: left;
}

.team-member img {
    width: 100%;
    height: 400px;
    border-radius: 0px;
    object-fit: cover;
    object-position: center top;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
    margin-bottom: 20px;
}

.team-member h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: #111;
    margin-bottom: 6px;
}

.team-member .role {
    font-size: 1rem;
    color: #8f5b2c;
    font-style: italic;
    margin-bottom: 10px;
}

.team-member .bio {
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
    font-weight: 300;
}

.team-link a {
    font-size: 1rem;
    font-style: italic;
    color: #333;
    text-decoration: none;
    border-bottom: 1px dotted #aaa;
    transition: all 0.2s ease;
}

.team-link a:hover {
    color: #8f5b2c;
    border-color: #8f5b2c;
}

@media (max-width: 768px) {
    .team-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .team-member {
        text-align: center;
        max-width: 280px;
    }
    
    .team-member img {
        height: 350px;
    }
    
    .meet-team {
        padding: 80px 20px;
    }
}

/* ===== JOBS SECTION ===== */
.jobs-section {
    padding: 100px 40px;
    background: #f8f8f8;
    text-align: left;
}

.jobs-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.jobs-title {
    font-size: 2.2rem;
    font-weight: 300;
    color: #222;
    margin-bottom: 10px;
    position: relative;
}

.jobs-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0%;
    background: #8f5b2c;
    transition: width 0.6s ease;
    animation: lineGrow 1.2s ease forwards;
}

.jobs-intro {
    font-family: var(--font-body);
    font-size: 1rem;
    color: #555;
    max-width: 700px;
    margin: 20px 0 40px;
    line-height: 1.6;
}

/* ====== FOOTER ====== */

.site-footer {
    padding: 80px 40px 40px;
    background: #222;
    color: #fff;
}

.footer-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.footer-info {
    flex: 1 1 400px;
    font-family: var(--font-body);
}

.footer-info h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 20px;
}

.footer-info h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: #fff;
    margin: 30px 0 10px;
}

.footer-info p {
    font-size: 1rem;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer-info a {
    color: #8f5b2c;
    text-decoration: none;
}

.footer-info a:hover {
    text-decoration: underline;
}

.footer-map {
    flex: 1 1 400px;
}

.footer-map iframe {
    width: 100%;
    height: 250px;
    border: 0;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .footer-wrapper {
        flex-direction: column;
        text-align: center;
    }
}

/* ====== FOOTER BRANDING ====== */

.footer-branding {
    padding: 40px 20px;
    background: #111;
    text-align: center;
}

.branding-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.footer-logo {
    height: 80px;
    margin-bottom: 20px;
    filter: brightness(0.8);
}

.follow-text {
    font-family: var(--font-body);
    font-size: 1rem;
    color: #888;
    margin-bottom: 10px;
}

.underline {
    width: 60px;
    height: 2px;
    background: #8f5b2c;
    margin: 0 auto 20px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icons a {
    display: inline-block;
    transition: transform 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.1);
}

.social-icons img {
    height: 30px;
    filter: brightness(0.7);
    transition: filter 0.3s ease;
}

.social-icons a:hover img {
    filter: brightness(1);
}

