/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
    --primary-black: #1a1a1a;
    --primary-white: #ffffff;
    --cream: #f9f7f4;
    --gold: #39a3a3;
    --gold-dark: #2d8282;
    --gray-light: #f5f5f5;
    --gray-medium: #888888;
    --gray-dark: #444444;
    --text-dark: #2c2c2c;
    --border-light: #e8e8e8;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    background-color: var(--primary-white);
    line-height: 1.8;
    overflow-x: hidden;
    font-weight: 400;
    font-size: 15px;
}

h1,
h2,
h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    color: var(--primary-black);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Elegant Decorative Elements */
.section-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gray-medium);
    margin-bottom: 15px;
    display: block;
}

/* Header Styles - Fixed White Background */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 12px 0;
    background: var(--primary-white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
}

header.scrolled {
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.12);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo {
    max-height: 55px;
    width: auto;
    object-fit: contain;
    /* Remove filter - show original logo colors */
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 45px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.main-nav a {
    text-decoration: none;
    color: var(--primary-black);
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: color 0.2s ease;
    position: relative;
    padding: 5px 0;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--gold);
}

.main-nav a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--gold);
}

.reservation-link-mobile {
    display: none;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-black);
    font-size: 12px;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color 0.2s ease;
}

.header-phone:hover {
    color: var(--gold);
}

.header-phone svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
}

.reservation-btn {
    background-color: var(--gold);
    color: var(--primary-white);
    padding: 12px 28px;
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 11px;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
}

.reservation-btn:hover {
    background-color: var(--gold-dark);
}

/* Hero Slider Section */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    margin-top: 80px;
}

.hero-slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.3) 0%,
            rgba(0, 0, 0, 0.5) 50%,
            rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    color: var(--primary-white);
    width: 90%;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 30px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 35px;
    color: var(--gold);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-badge span {
    color: var(--gold);
    font-size: 10px;
}

.hero-content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.2rem;
    font-weight: 600;
    color: var(--primary-white);
    line-height: 1.3;
    margin-bottom: 20px;
    letter-spacing: 4px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-content h1 .brand-name {
    display: block;
    font-size: 6rem;
    font-weight: 700;
    font-style: italic;
    letter-spacing: 6px;
    margin-top: 15px;
    color: var(--gold);
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.6);
}

.hero-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 500;
    font-style: italic;
    color: var(--primary-white);
    margin-bottom: 30px;
    letter-spacing: 2px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.6);
}

.hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 35px;
}

.hero-divider span {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero-divider svg {
    color: var(--gold);
    width: 20px;
    height: 20px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.hero-btn {
    padding: 16px 40px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-btn.primary {
    background-color: var(--gold);
    color: var(--primary-white);
    border: 1px solid var(--gold);
}

.hero-btn.primary:hover {
    background-color: var(--gold-dark);
    border-color: var(--gold-dark);
}

.hero-btn.secondary {
    background-color: transparent;
    color: var(--primary-white);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.hero-btn.secondary:hover {
    background-color: var(--primary-white);
    color: var(--primary-black);
    border-color: var(--primary-white);
}

/* Slider Navigation Dots */
.slider-nav {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.slider-dot:hover {
    border-color: var(--gold);
}

.slider-dot.active {
    background-color: var(--gold);
    border-color: var(--gold);
}

/* Scroll Down Indicator */
.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--primary-white);
    text-decoration: none;
    z-index: 3;
    transition: color 0.3s ease;
}

.scroll-down:hover {
    color: var(--gold);
}

.scroll-down span {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--primary-white), transparent);
    animation: scroll-line-anim 1.5s ease-in-out infinite;
}

@keyframes scroll-line-anim {

    0%,
    100% {
        opacity: 1;
        transform: scaleY(1);
    }

    50% {
        opacity: 0.5;
        transform: scaleY(0.7);
    }
}

/* Old Hero Section - Keep for compatibility */
.hero {
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 600px;
    overflow: hidden;
    margin-top: 80px;
}

.hero-image {
    width: 100%;
    height: 100%;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.5));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--primary-white);
    padding: 20px;
}

.hero-overlay h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4.5rem;
    font-weight: 400;
    margin-bottom: 25px;
    color: var(--primary-white);
    text-transform: uppercase;
    letter-spacing: 8px;
    line-height: 1.2;
}

.hero-overlay h1 span {
    display: block;
    font-style: italic;
    text-transform: none;
    letter-spacing: 3px;
    font-size: 3.5rem;
}

.hero-overlay p {
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.hero-btn {
    padding: 14px 35px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.hero-btn.primary {
    background-color: var(--gold);
    color: var(--primary-white);
    border: 1px solid var(--gold);
}

.hero-btn.primary:hover {
    background-color: var(--gold-dark);
    border-color: var(--gold-dark);
}

.hero-btn.secondary {
    background-color: transparent;
    color: var(--primary-white);
    border: 1px solid var(--primary-white);
}

.hero-btn.secondary:hover {
    background-color: var(--primary-white);
    color: var(--primary-black);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--primary-white);
}

.scroll-indicator span {
    display: block;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.scroll-indicator .arrow {
    width: 20px;
    height: 20px;
    border-right: 1px solid var(--primary-white);
    border-bottom: 1px solid var(--primary-white);
    transform: rotate(45deg);
    margin: 0 auto;
    animation: scroll-bounce 2s infinite;
}

@keyframes scroll-bounce {

    0%,
    100% {
        transform: rotate(45deg) translateY(0);
    }

    50% {
        transform: rotate(45deg) translateY(5px);
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--gold);
    color: var(--primary-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(201, 169, 98, 0.4);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background-color: var(--gold-dark);
    transform: translateY(-3px);
}

.scroll-to-top svg {
    width: 24px;
    height: 24px;
}

/* Welcome Section - Two Column Text */
.welcome-section {
    padding: 100px 0;
    background-color: var(--primary-white);
}

.welcome-header {
    text-align: center;
    margin-bottom: 60px;
}

.welcome-header .section-label {
    margin-bottom: 20px;
}

.welcome-header h2 {
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.3;
    max-width: 600px;
    margin: 0 auto;
}

.welcome-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1000px;
    margin: 0 auto;
}

.welcome-text {
    font-size: 14px;
    line-height: 2;
    color: var(--gray-dark);
}

.welcome-text p {
    margin-bottom: 20px;
}

/* Our Story / Experience Section */
.our-story {
    padding: 100px 0;
    background-color: var(--cream);
}

.our-story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.our-story-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.our-story-image.visible {
    opacity: 1;
    transform: translateX(0);
}

.our-story-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.our-story-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
    transition-delay: 0.1s;
}

.our-story-text.visible {
    opacity: 1;
    transform: translateX(0);
}

.our-story-text .section-label {
    text-align: left;
}

.our-story h2 {
    font-size: 3rem;
    margin-bottom: 10px;
    text-align: left;
    color: var(--primary-black);
    font-weight: 400;
    line-height: 1.2;
}

.our-story h2 span {
    font-style: italic;
    display: block;
}

.our-story .subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.4rem;
    color: var(--gray-medium);
    margin-bottom: 30px;
}

.our-story p {
    font-size: 14px;
    line-height: 2;
    color: var(--gray-dark);
    text-align: left;
    margin-bottom: 20px;
}

.discover-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-black);
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
    margin-top: 20px;
    transition: color 0.2s ease;
}

.discover-more:hover {
    color: var(--gold);
}

.discover-more::after {
    content: '→';
    font-size: 14px;
    transition: transform 0.2s ease;
}

.discover-more:hover::after {
    transform: translateX(5px);
}

/* Selected Menus Section */
.menu-section {
    padding: 100px 0;
    background-color: var(--primary-white);
}

.menu-section .section-label {
    text-align: center;
}

.menu-section h2 {
    font-size: 3rem;
    margin-bottom: 15px;
    text-align: center;
    color: var(--primary-black);
    font-weight: 400;
}

.menu-subtitle {
    font-size: 14px;
    color: var(--gray-medium);
    text-align: center;
    margin-bottom: 60px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

/* Menu List Style */
.menu-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 80px;
    max-width: 1000px;
    margin: 0 auto;
}

.menu-list-item {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 25px;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.menu-list-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.menu-list-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.menu-list-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary-black);
}

.menu-list-item .price-line {
    flex: 1;
    height: 1px;
    background: repeating-linear-gradient(90deg, var(--border-light) 0, var(--border-light) 5px, transparent 5px, transparent 10px);
    margin: 0 15px;
}

.menu-list-item .price {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-black);
}

.menu-list-item p {
    font-size: 13px;
    color: var(--gray-medium);
    line-height: 1.7;
}

/* Old Menu Grid Style - Keep for compatibility */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 50px;
}

.menu-item {
    background-color: var(--primary-white);
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.4s ease-out;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(20px);
}

.menu-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.menu-item:nth-child(1).visible {
    transition-delay: 0.05s;
}

.menu-item:nth-child(2).visible {
    transition-delay: 0.1s;
}

.menu-item:nth-child(3).visible {
    transition-delay: 0.15s;
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.menu-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    margin-bottom: 0;
}

.menu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.menu-item:hover .menu-image img {
    transform: scale(1.05);
}

.menu-item h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--primary-black);
    font-weight: 600;
    padding: 25px 25px 0 25px;
}

.menu-item p {
    color: var(--gray-medium);
    line-height: 1.7;
    font-size: 14px;
    padding: 0 25px 25px 25px;
    flex-grow: 1;
}

.menu-button-container {
    text-align: center;
    margin-top: 50px;
}

.view-menu-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: transparent;
    color: var(--primary-black);
    padding: 14px 35px;
    text-decoration: none;
    font-weight: 500;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.2s ease;
    border: 1px solid var(--primary-black);
}

.view-menu-btn:hover {
    background-color: var(--gold);
    border-color: var(--gold);
    color: var(--primary-white);
}

.view-menu-btn .arrow {
    font-size: 16px;
    transition: transform 0.2s ease;
}

.view-menu-btn:hover .arrow {
    transform: translateX(5px);
}

/* Instagram Gallery Section */
.instagram-section {
    padding: 80px 0;
    background-color: var(--cream);
}

.instagram-section h2 {
    font-size: 3rem;
    margin-bottom: 10px;
    text-align: center;
    color: var(--primary-black);
    font-weight: 400;
}

.instagram-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--gray-medium);
    text-align: center;
    margin-bottom: 40px;
    font-style: italic;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
}

.instagram-item {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    overflow: hidden;
    opacity: 0;
    transform: scale(0.98);
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.instagram-item.visible {
    opacity: 1;
    transform: scale(1);
}

.instagram-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.instagram-item:hover img {
    transform: scale(1.08);
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.instagram-item:hover .instagram-overlay {
    opacity: 1;
}

.instagram-loading {
    text-align: center;
    color: var(--gray-medium);
    padding: 40px;
    font-size: 1rem;
}

/* Contact Page Styles */
.contact-hero {
    padding: 180px 0 100px;
    background-color: var(--cream);
    text-align: center;
    margin-top: 80px;
}

.contact-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 400;
}

.contact-hero p {
    font-size: 1rem;
    color: var(--gray-medium);
    letter-spacing: 1px;
}

.contact-section {
    padding: 100px 0;
    background-color: var(--primary-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 40px;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    font-weight: 400;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.contact-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    margin-bottom: 12px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.contact-item p {
    color: var(--gray-dark);
    line-height: 1.9;
    margin-bottom: 5px;
    font-size: 14px;
}

.contact-item a {
    color: var(--primary-black);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.contact-item a:hover {
    color: var(--gold);
}

.map-container {
    width: 100%;
}

.map-container h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    font-weight: 400;
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
}

.map-note {
    margin-top: 15px;
    color: var(--gray-medium);
    font-style: italic;
    font-size: 13px;
}

/* NEW Footer Styles - White Background */
footer {
    background-color: var(--primary-white);
    color: var(--text-dark);
    padding: 80px 0 40px;
    border-top: 1px solid var(--border-light);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-brand {
    padding-right: 30px;
}

.footer-brand .logo {
    max-height: 60px;
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--gray-dark);
    font-size: 14px;
    line-height: 1.9;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    background-color: var(--cream);
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-black);
    transition: all 0.2s ease;
    border-radius: 50%;
}

.footer-social a:hover {
    background-color: var(--gold);
    border-color: var(--gold);
    color: var(--primary-white);
}

.footer-column h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-black);
    margin-bottom: 25px;
}

.footer-column p,
.footer-column a {
    color: var(--gray-dark);
    font-size: 14px;
    line-height: 2;
    text-decoration: none;
    display: block;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: var(--gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-light);
}

.footer-bottom p {
    color: var(--gray-medium);
    font-size: 13px;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    color: var(--gray-medium);
    font-size: 13px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
    color: var(--gold);
}

/* Old footer styles for backward compatibility */
.footer-logo {
    margin-bottom: 30px;
    display: flex;
    justify-content: flex-start;
}

.footer-logo img {
    max-height: 60px;
    width: auto;
    object-fit: contain;
}

.footer-description {
    color: var(--gray-dark);
    font-size: 14px;
    margin-bottom: 25px;
    line-height: 1.9;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
    max-width: 800px;
}

.footer-section {
    background-color: transparent;
}

.footer-section h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: var(--primary-black);
}

.footer-section p {
    color: var(--gray-dark);
    margin-bottom: 8px;
    line-height: 1.9;
    font-size: 14px;
}

.footer-section a {
    color: var(--gray-dark);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-section a:hover {
    color: var(--gold);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .menu-list {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .welcome-content {
        gap: 50px;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 20px;
    }

    .header-right {
        display: none;
    }

    .logo-container {
        flex-shrink: 0;
    }

    .logo {
        max-height: 45px;
    }

    .reservation-btn {
        display: none;
    }

    .reservation-link-mobile {
        display: inline-block !important;
    }

    .main-nav ul {
        gap: 20px;
    }

    .main-nav a {
        font-size: 11px;
    }

    .hero {
        height: 70vh;
        min-height: 500px;
        margin-top: 70px;
    }

    /* Hero Slider Responsive */
    .hero-slider {
        height: 80vh;
        min-height: 550px;
        margin-top: 70px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }

    .hero-content h1 .brand-name {
        font-size: 3rem;
        letter-spacing: 3px;
    }

    .hero-tagline {
        font-size: 1.1rem;
    }

    .hero-badge {
        padding: 8px 18px;
        font-size: 9px;
    }

    .hero-divider span {
        width: 50px;
    }

    .slider-nav {
        bottom: 80px;
    }

    .scroll-down {
        display: none;
    }

    .hero-overlay h1 {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }

    .hero-overlay h1 span {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .welcome-section,
    .our-story,
    .menu-section {
        padding: 70px 0;
    }

    .welcome-header h2,
    .our-story h2,
    .menu-section h2 {
        font-size: 2.2rem;
    }

    .welcome-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .menu-item {
        max-width: 100%;
    }

    .menu-image {
        height: 250px;
    }

    .our-story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .our-story-image {
        order: 1;
    }

    .our-story-image img {
        height: 350px;
    }

    .our-story-text {
        order: 2;
    }

    .our-story h2,
    .our-story p,
    .our-story-text .section-label {
        text-align: center;
    }

    .discover-more {
        justify-content: center;
    }

    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-hero {
        padding: 140px 0 70px;
        margin-top: 70px;
    }

    .contact-hero h1 {
        font-size: 2.5rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-brand {
        padding-right: 0;
        text-align: center;
    }

    .footer-brand .logo {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-column {
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 100%;
    }

    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 15px;
    }

    .logo {
        max-height: 40px;
    }

    .main-nav ul {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .main-nav a {
        font-size: 10px;
    }

    .hero {
        height: 60vh;
        min-height: 400px;
        margin-top: 60px;
    }

    .hero-overlay h1 {
        font-size: 1.8rem;
        letter-spacing: 3px;
    }

    .hero-overlay h1 span {
        font-size: 1.5rem;
    }

    .hero-overlay p {
        font-size: 0.9rem;
    }

    .welcome-section,
    .our-story,
    .menu-section {
        padding: 50px 0;
    }

    .welcome-header h2,
    .our-story h2,
    .menu-section h2 {
        font-size: 1.8rem;
    }

    .our-story-image img {
        height: 280px;
    }

    /* Hero Slider 480px */
    .hero-slider {
        height: 70vh;
        min-height: 450px;
        margin-top: 60px;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content h1 .brand-name {
        font-size: 2.5rem;
    }

    .hero-tagline {
        font-size: 1rem;
    }

    .hero-badge {
        padding: 6px 14px;
        font-size: 8px;
        letter-spacing: 2px;
    }

    .hero-btn {
        padding: 12px 28px;
        font-size: 10px;
    }

    .slider-nav {
        bottom: 60px;
        gap: 8px;
    }

    .slider-dot {
        width: 10px;
        height: 10px;
    }

    .contact-hero {
        padding: 120px 0 50px;
        margin-top: 60px;
    }

    .contact-hero h1 {
        font-size: 2rem;
    }

    .map-container iframe {
        height: 300px;
    }

    .footer-brand .logo {
        max-height: 50px;
    }
}