/* poppins-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  src: url('../assets/fonts/poppins-v23-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* poppins-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  src: url('../assets/fonts/poppins-v23-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* poppins-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  src: url('../assets/fonts/poppins-v23-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* playfair-display-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400;
  src: url('../assets/fonts/playfair-display-v39-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* playfair-display-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 600;
  src: url('../assets/fonts/playfair-display-v39-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* playfair-display-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 700;
  src: url('../assets/fonts/playfair-display-v39-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

:root {
    --primary-black: #0a0a0a;
    --secondary-black: #1a1a1a;
    --accent-gold: #d4af37;
    --accent-gold-light: #e6c766;
    --accent-gold-dark: #b8941f;
    --text-white: #ffffff;
    --text-gray: #a0a0a0;
    --text-light-gray: #d0d0d0;
    --border-gray: #333333;
    --shadow-dark: rgba(0, 0, 0, 0.5);
    --shadow-gold: rgba(212, 175, 55, 0.3);
    
    --font-primary: 'Poppins', sans-serif;        /* Clean, modern, readable */
    --font-display: 'Playfair Display', serif;    /* Elegant for headings */
    
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background-color: var(--primary-black);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Headings use display font */
h1, h2, h3, h4, h5, h6,
.hero-title,
.section-title,
.footer-brand h3 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
}

.gallery-content h4,
.location-overlay h3,
.location-header h4 {
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.2;
}

/* Specific heading styles */
.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    background-clip: text;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 1rem;
}

/* Body text improvements */
.hero-subtitle,
.section-subtitle {
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 1.125rem;
    color: var(--text-gray);
    line-height: 1.5;
}

.about-description {
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-gray);
}

/* Navigation font styling */
.nav-link {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.logo-text {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.5rem;
}

/* Button typography */
.btn {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

/* Stats typography */
.stat-number {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 2rem;
    color: var(--accent-gold);
}

.stat-label {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 0.9rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-gray);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 4px 20px var(--shadow-dark);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: var(--transition-smooth);
    position: relative;
}

.nav-link:hover {
    color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.1);
}

.nav-link.cta {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
    color: var(--primary-black);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
}

.nav-link.cta:hover {
    background: linear-gradient(135deg, var(--accent-gold-light), var(--accent-gold));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow-gold);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-white);
    margin: 3px 0;
    transition: var(--transition-smooth);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

/* Hero Background Slideshow */
.hero-background-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

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

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

.hero-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.8), rgba(26, 26, 26, 0.6));
    z-index: 1;
}

/* Remove the old hero-background styles and replace with slideshow */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-content {
    z-index: 10;
    max-width: 800px;
    padding: 0 2rem;
    position: relative;
}

/* Simplified Footer */
.footer {
    background: var(--secondary-black);
    border-top: 1px solid var(--border-gray);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-brand img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.footer-brand h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin: 0;
}

.footer-brand p {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition-smooth);
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.footer-links a:hover {
    color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

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

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--border-gray);
    color: var(--text-white);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition-spring);
}

.social-links a:hover {
    background: var(--accent-gold);
    color: var(--primary-black);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px var(--shadow-gold);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-gray);
    text-align: center;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.footer-legal a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-smooth);
}

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

.footer-legal span {
    color: var(--border-gray);
}

.footer-bottom p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin: 0;
}

.designed-by {
    color: var(--accent-gold);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition-smooth);
}

.designed-by:hover {
    color: var(--accent-gold-light);
}

/* Mobile Footer Responsive */
@media (max-width: 768px) {
    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .footer-links a {
        padding: 0.75rem;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .footer-legal span {
        display: none;
    }
}

@media (max-width: 480px) {
    .footer-brand p {
        font-size: 0.9rem;
    }
    
    .social-links {
        justify-content: center;
    }
}

.hero-content {
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: clamp(1.25rem, 3vw, 2rem);
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-light-gray);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    font-family: var(--font-display);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: var(--accent-gold);
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: -4px;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--accent-gold);
    border-bottom: 2px solid var(--accent-gold);
    transform: rotate(45deg);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: var(--transition-spring);
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
    color: var(--primary-black);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-gold-light), var(--accent-gold));
    transform: translateY(-3px);
    box-shadow: 0 12px 30px var(--shadow-gold);
}

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--accent-gold);
}

.btn-secondary:hover {
    background: var(--accent-gold);
    color: var(--primary-black);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px var(--shadow-gold);
}

.btn-outline {
    background: transparent;
    color: var(--accent-gold);
    border: 1px solid var(--accent-gold);
}

.btn-outline:hover {
    background: var(--accent-gold);
    color: var(--primary-black);
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

/* Sections */
section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: var(--secondary-black);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-description {
    font-size: 1.125rem;
    color: var(--text-light-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.about-features {
    display: grid;
    gap: 2rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature i {
    color: var(--accent-gold);
    font-size: 1.5rem;
    margin-top: 0.25rem;
    flex-shrink: 0; /* Prevent icon from shrinking */
    width: 24px; /* Fixed width for consistent alignment */
}

.feature-content {
    flex: 1;
}

.feature h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-white);
    white-space: nowrap; /* Prevent wrapping */
    overflow: hidden;
    text-overflow: ellipsis; /* Add ellipsis if text is too long */
}

.feature p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0; /* Remove default margin */
    padding-left: 0; /* Ensure consistent left alignment */
}

/* Alternative approach for better responsive handling */
@media (max-width: 768px) {
    .feature h4 {
        white-space: normal; /* Allow wrapping on mobile */
        overflow: visible;
        text-overflow: initial;
    }
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px var(--shadow-dark);
}

/* Locations Section */
.locations {
    background: var(--primary-black);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.location-card {
    background: var(--secondary-black);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition-spring);
    border: 1px solid var(--border-gray);
}

.location-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px var(--shadow-dark);
    border-color: var(--accent-gold);
}

.location-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.location-card:hover .location-image img {
    transform: scale(1.1);
}

.location-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(10, 10, 10, 0.8));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
}

.location-overlay h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
}

.location-overlay p {
    color: var(--accent-gold);
    font-size: 0.9rem;
}

.location-info {
    padding: 1.5rem;
}

.location-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.location-header h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
}

.location-badge {
    background: var(--accent-gold);
    color: var(--primary-black);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.location-details {
    margin-bottom: 1.5rem;
}

.location-details p {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.location-details i {
    color: var(--accent-gold);
    font-size: 1rem;
    margin-top: 0.125rem;
    width: 16px;
}

.location-details .closed {
    color: #ff6b6b;
    font-weight: 500;
}

.location-actions {
    display: flex;
    gap: 0.75rem;
}

/* Gallery Section - Updated with external buttons */
.gallery {
    background: var(--secondary-black);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-spring);
    background: var(--primary-black);
    border: 1px solid var(--border-gray);
    display: flex;
    flex-direction: column;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px var(--shadow-dark);
    border-color: var(--accent-gold);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.gallery-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.gallery-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin: 0;
}

.gallery-content p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Gallery Actions Section */
.gallery-actions {
    padding: 2rem;
    background: var(--primary-black);
    border-radius: 20px;
    border: 1px solid var(--border-gray);
}

.gallery-buttons {
    text-align: center;
}

.gallery-buttons h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 1rem;
    font-family: var(--font-primary);
}

.gallery-menu-links,
.gallery-reservation-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.gallery-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: transparent;
    color: var(--accent-gold);
    text-decoration: none;
    border: 2px solid var(--accent-gold);
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    transition: var(--transition-spring);
    text-align: center;
}

.gallery-action-btn:hover {
    background: var(--accent-gold);
    color: var(--primary-black);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px var(--shadow-gold);
}

.gallery-action-btn i {
    font-size: 1.1rem;
}

.gallery-action-btn span {
    font-weight: 600;
}

/* Alternative horizontal layout for wider screens */
@media (min-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .gallery-menu-links,
    .gallery-reservation-links {
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
    }
    
    .gallery-action-btn {
        flex: 1;
        min-width: 120px;
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        margin-bottom: 2rem;
    }
    
    .gallery-item img {
        height: 200px;
    }
    
    .gallery-content {
        padding: 1.25rem;
    }
    
    .gallery-actions {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1.5rem;
    }
    
    .gallery-buttons h3 {
        font-size: 1.125rem;
        margin-bottom: 1rem;
    }
    
    .gallery-action-btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .gallery-content h4 {
        font-size: 1.125rem;
    }
    
    .gallery-content p {
        font-size: 0.9rem;
    }
    
    .gallery-actions {
        padding: 1.25rem;
    }
    
    .gallery-action-btn {
        padding: 1rem;
        font-size: 0.9rem;
    }
}

/* Remove old gallery link styles */
.gallery-links,
.gallery-link {
    display: none;
}

/* Contact Section */
.contact {
    background: var(--primary-black);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    display: grid;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    color: var(--accent-gold);
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.contact-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-map {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px var(--shadow-dark);
}

.contact-map img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.map-link {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: var(--accent-gold);
    color: var(--primary-black);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.map-link:hover {
    background: var(--accent-gold-light);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: var(--secondary-black);
    border-top: 1px solid var(--border-gray);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand {
    grid-column: span 1;
}

.footer-brand img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}

.footer-brand h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.footer-column h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.footer-column a {
    display: block;
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    transition: var(--transition-smooth);
}

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

.footer-social h4 {
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--border-gray);
    color: var(--text-white);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition-spring);
}

.social-links a:hover {
    background: var(--accent-gold);
    color: var(--primary-black);
    transform: translateY(-3px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-gray);
    color: var(--text-gray);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--accent-gold);
    text-decoration: none;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-brand {
        grid-column: span 2;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .locations-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand {
        grid-column: span 1;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }
    
    section {
        padding: 4rem 0;
    }
    
    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        flex-direction: column;
        gap: 0.25rem;
margin-bottom: 1rem;
    }

	.hero-description {
	margin-bottom: 0.5rem;
}
    
    .location-actions {
        flex-direction: column;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Smooth scroll behavior and intersection observer effects */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Button styles - Add missing btn-small styling */
.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    border-radius: 8px;
}

/* Location actions styling */
.location-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.location-actions .btn {
    flex: 1;
    min-width: 0;
    text-align: center;
    justify-content: center;
}

.location-actions .btn-small {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
    color: var(--primary-black);
    border: none;
    font-weight: 600;
    transition: var(--transition-spring);
}

.location-actions .btn-small:hover {
    background: linear-gradient(135deg, var(--accent-gold-light), var(--accent-gold));
    transform: translateY(-2px);
    box-shadow: 0 8px 20px var(--shadow-gold);
}

.location-actions .btn-outline.btn-small {
    background: transparent;
    color: var(--accent-gold);
    border: 1px solid var(--accent-gold);
}

.location-actions .btn-outline.btn-small:hover {
    background: var(--accent-gold);
    color: var(--primary-black);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px var(--shadow-gold);
}

/* Fix location details alignment */
.location-details {
    margin-bottom: 1.5rem;
}

.location-details p {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.5;
}

.location-details i {
    color: var(--accent-gold);
    font-size: 1rem;
    margin-top: 0.125rem;
    width: 16px;
    flex-shrink: 0;
}

/* Fix closed text alignment */
.location-details .closed {
    color: #ff6b6b;
    font-weight: 500;
    display: block;
    margin-top: 0.25rem;
    margin-left: 0;
    padding-left: 0;
}

/* Better structure for opening hours with closed days */
.opening-hours {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.opening-hours .closed {
    color: #ff6b6b;
    font-weight: 500;
    font-style: italic;
}

/* Mobile responsive adjustments */
@media (max-width: 480px) {
    .location-actions {
        flex-direction: column;
    }
    
    .location-actions .btn {
        flex: none;
        width: 100%;
    }
}

/* Mobile Navigation Fixes */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.3s ease-in-out;
        z-index: 999;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        font-size: 1.5rem;
        font-weight: 600;
        padding: 1rem 2rem;
        border-radius: 12px;
        transition: var(--transition-smooth);
    }
    
    .nav-link:hover {
        background: rgba(212, 175, 55, 0.2);
        transform: scale(1.05);
    }
    
    .nav-link.cta {
        background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
        color: var(--primary-black);
        font-size: 1.3rem;
        padding: 1.25rem 2.5rem;
    }
    
    .hamburger {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        padding: 0.5rem;
        z-index: 1001;
        position: relative;
    }
    
    .hamburger span {
        width: 25px;
        height: 3px;
        background: var(--text-white);
        margin: 3px 0;
        transition: var(--transition-smooth);
        border-radius: 2px;
        transform-origin: center;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
        background: var(--accent-gold);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
        background: var(--accent-gold);
    }
}

/* Ensure hamburger is hidden on desktop */
@media (min-width: 769px) {
    .hamburger {
        display: none;
    }
    
    .nav-menu {
        position: static;
        background: none;
        backdrop-filter: none;
        width: auto;
        height: auto;
        flex-direction: row;
        justify-content: flex-end;
        right: 0;
    }
}

/* Mobile Navigation - Updated to fade in */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        opacity: 0;
        visibility: hidden;
        transform: scale(0.95);
        transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
        z-index: 999;
    }
    
    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: scale(1);
    }
    
    .nav-link {
        font-size: 1.5rem;
        font-weight: 500;
        padding: 1rem 2rem;
        border-radius: 12px;
        transition: var(--transition-smooth);
        transform: translateY(20px);
        opacity: 0;
        animation: none;
    }
    
    /* Staggered fade-in animation for menu items */
    .nav-menu.active .nav-link {
        transform: translateY(0);
        opacity: 1;
    }
    
    .nav-link:hover {
        background: rgba(212, 175, 55, 0.2);
        transform: scale(1.05);
        color: var(--accent-gold);
    }
    
    .nav-link.cta {
        background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
        color: var(--primary-black);
        font-size: 1.3rem;
        padding: 1.25rem 2.5rem;
        margin-top: 1rem;
    }
    
    .nav-link.cta:hover {
        background: linear-gradient(135deg, var(--accent-gold-light), var(--accent-gold));
        transform: scale(1.05);
        color: var(--primary-black);
    }
    
    .hamburger {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        padding: 0.5rem;
        z-index: 1001;
        position: relative;
    }
    
    .hamburger span {
        width: 25px;
        height: 3px;
        background: var(--text-white);
        margin: 3px 0;
        transition: var(--transition-smooth);
        border-radius: 2px;
        transform-origin: center;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
        background: var(--accent-gold);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
        background: var(--accent-gold);
    }
}

/* Fade-in animation keyframes */
@keyframes fadeInUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Ensure hamburger is hidden on desktop */
@media (min-width: 769px) {
    .hamburger {
        display: none;
    }
    
    .nav-menu {
        position: static;
        background: none;
        backdrop-filter: none;
        width: auto;
        height: auto;
        flex-direction: row;
        justify-content: flex-end;
        opacity: 1;
        visibility: visible;
        transform: none;
    }
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}
/* Mobile padding adjustments */
@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem; /* Increased from 1rem */
    }
    
    .hero-content {
        padding: 0 1.5rem; /* Add padding to hero content */
    }
    
    .nav-container {
        padding: 0.5rem 1.5rem; /* Add padding to navbar */
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.25rem;
    }
    
    .hero-content {
        padding: 0 1.25rem;
    }
    
    .nav-container {
        padding: 0.5rem 1.25rem;
    }
}


/* Call to Action Section */
.cta-section {
    background: linear-gradient(135deg, var(--secondary-black) 0%, var(--primary-black) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/images/sushi.jpg') center/cover;
    opacity: 0.05;
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
    font-family: var(--font-display);
}

.cta-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 0rem;
    line-height: 1.6;
}

/* CTA Stats */
.cta-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 4rem;
    padding: 2rem 0;
}

.cta-stat {
    text-align: center;
    position: relative;
}

.cta-stat::after {
    content: '';
    position: absolute;
    right: -2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background: var(--border-gray);
}

.cta-stat:last-child::after {
    display: none;
}

.cta-stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1;
    margin-bottom: 0.5rem;
    font-family: var(--font-display);
}

.cta-stat-label {
    font-size: 1rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* CTA Actions */
.cta-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 800px;
    margin: 0 auto;
}

.cta-group {
    text-align: center;
}

.cta-group h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    font-family: var(--font-display);
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    text-decoration: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    transition: var(--transition-spring);
    text-align: center;
    border: 2px solid transparent;
}

.cta-btn.primary {
    background: var(--accent-gold);
    color: var(--primary-black);
    border-color: var(--accent-gold);
}

.cta-btn.primary:hover {
    background: var(--accent-gold-light);
    border-color: var(--accent-gold-light);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px var(--shadow-gold);
}

.cta-btn.secondary {
    background: transparent;
    color: var(--accent-gold);
    border-color: var(--accent-gold);
}

.cta-btn.secondary:hover {
    background: var(--accent-gold);
    color: var(--primary-black);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px var(--shadow-gold);
}

.cta-btn i {
    font-size: 1.1rem;
}

.cta-btn span {
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .cta-title {
        font-size: 2.2rem;
    }
    
    .cta-stats {
        gap: 3rem;
    }
    
    .cta-actions {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .cta-stats {
        flex-direction: column;
        gap: 2rem;
        margin-bottom: 3rem;
    }
    
    .cta-stat::after {
        display: none;
    }
    
    .cta-stat-number {
        font-size: 2.5rem;
    }
    
    .cta-actions {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .cta-group h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .cta-title {
        font-size: 1.6rem;
    }
    
    .cta-stats {
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .cta-stat-number {
        font-size: 2rem;
    }
    
    .cta-actions {
        gap: 2rem;
    }
    
    .cta-btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }
}
