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

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #d4af37;
    --accent-color: #f8f8f8;
    --text-light: #666;
    --text-dark: #333;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    --shadow-light: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 8px 40px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 12px 60px rgba(0, 0, 0, 0.2);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Adjust based on navbar height */
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    overflow-x: hidden;
}

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

/* Navigation */
.modern-nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    list-style: none;
}

.logo a {
    font-family: "Permanent Marker", cursive;
    font-size: 1.8rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
}

.nav-main li:not(.logo):not(.menu-toggle) {
    margin: 0 15px;
}

.nav-main a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 16px;
    border-radius: 8px;
}

.nav-main li:not(.logo):not(.menu-toggle) a:hover {
    color: var(--secondary-color) !important;
    background: rgba(212, 175, 55, 0.15) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}

.nav-main a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 2px;
    left: 50%;
    background: var(--secondary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-main a:hover::after {
    width: 80%;
}

.logo a:hover {
    background: none !important;
    transform: scale(1.05) !important;
}

.logo a::after {
    display: none;
}

.menu-toggle {
    display: none;
    cursor: pointer;
}

.hamburger {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.menu-toggle:hover .hamburger {
    color: var(--secondary-color);
    transform: scale(1.1);
}

/* Sidebar */
.sidebar {
    font-size: 16px;
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 280px;
    z-index: 999;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    list-style: none;
    max-width: 100vw;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.sidebar.active {
    display: flex;
}

.sidebar li {
    margin: 10px 0;
}

.sidebar a {
    color: var(--text-dark);
    text-decoration: none;
    padding: 15px 30px;
    display: block;
    transition: all 0.3s ease;
    font-weight: 500;
}

.sidebar li:not(:first-child) a:hover {
    background: rgba(212, 175, 55, 0.25) !important;
    padding-left: 40px;
    color: var(--secondary-color) !important;
    border-left: 4px solid var(--secondary-color);
    transform: translateX(5px);
    box-shadow: inset 0 0 20px rgba(212, 175, 55, 0.15);
}

.sidebar a:hover {
    background: rgba(212, 175, 55, 0.15) !important;
    color: var(--secondary-color) !important;
}

.sidebar li:not(:first-child) a {
    position: relative;
    overflow: hidden;
}

.sidebar li:not(:first-child) a::before {
    content: '';
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.5s ease;
}

.sidebar li:not(:first-child) a:hover::before {
    left: 100%;
}

.close-icon {
    font-size: 1.5rem;
    font-weight: bold;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%),
                url('https://images.unsplash.com/photo-1562788865-9ddf6285376b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8fHx8fH0&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    color: var(--white);
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-family: "Permanent Marker", cursive;
    font-size: clamp(2.5rem, 6vw, 5rem);
    margin-bottom: 1rem;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    margin-bottom: 2rem;
    color: var(--secondary-color);
    font-weight: 300;
    letter-spacing: 1px;
}

.hero-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.icon {
    font-size: 1.2rem;
}

.hero-decoration {
    position: absolute;
    bottom: 30px;
    font-size: 3rem;
    color: rgba(212, 175, 55, 0.3);
    animation: bounce 2s infinite;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: var(--white);
}

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

.about-text h2 {
    font-family: "Permanent Marker", cursive;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.accent-line {
    width: 60px;
    height: 4px;
    background: var(--gradient-gold);
    margin-bottom: 30px;
    border-radius: 2px;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 30px;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 30px 0;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.service-item:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: translateX(10px);
}

.service-icon {
    font-size: 1.5rem;
}

.about-closing {
    font-style: italic;
    color: var(--primary-color);
    font-weight: 500;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

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

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-image:hover .image-overlay {
    opacity: 0.2;
}

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
}

.section-title {
    font-family: "Permanent Marker", cursive;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay span {
    font-weight: 600;
    font-size: 1.1rem;
}

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

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.location-info h2 {
    font-family: "Permanent Marker", cursive;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--secondary-color);
}

.address-card, .hours-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.address-card h3, .hours-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.phone-link, .email-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.phone-link:hover, .email-link:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.email-link {
    margin-left: 20px;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hour-item.closed {
    opacity: 0.6;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
}

/* Map Section */
.map-section {
    padding: 60px 0;
    background: var(--white);
}

.map-section .map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
    height: 450px;
}

.map-section .map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
}

/* Larger map for contact page */
.contact-hero + .map-section .map-container iframe {
    height: 500px;
}

/* Social Section */
.social-section {
    padding: 100px 0;
    background: var(--white);
    text-align: center;
}

.social-section h2 {
    font-family: "Permanent Marker", cursive;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 600px;
    margin: 0 auto;
}

.social-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 40px 30px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.social-card.instagram:hover {
    border-color: #E4405F;
    color: #E4405F;
}

.social-card.facebook:hover {
    border-color: #1877F2;
    color: #1877F2;
}

.social-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.social-icon svg {
    width: 30px;
    height: 30px;
    transition: all 0.3s ease;
}

.social-card:hover .social-icon {
    background: currentColor;
}

.social-card:hover .social-icon svg {
    color: var(--white);
}

/* Bottom Navigation */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 100;
    padding: 15px 0;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.bottom-nav.show {
    transform: translateY(0);
}

.bottom-nav-content {
    display: flex;
    justify-content: center;
    gap: 60px;
    max-width: 400px;
    margin: 0 auto;
}

.bottom-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 10px 20px;
    text-decoration: none;
    color: var(--text-light);
    border-radius: 12px;
    transition: all 0.3s ease;
    min-width: 80px;
}

.bottom-nav .nav-item:hover {
    color: var(--secondary-color);
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

.bottom-nav .nav-item.active {
    color: var(--secondary-color);
    background: rgba(212, 175, 55, 0.15);
    font-weight: 600;
}

.bottom-nav .nav-icon {
    font-size: 1.5rem;
}

.bottom-nav .nav-text {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Footer */
.modern-footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 40px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand h3 {
    font-family: "Permanent Marker", cursive;
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 5px;
}

.footer-info p {
    color: rgba(255, 255, 255, 0.7);
}

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

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

/* Contact Hero Section */
.contact-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2d2d2d 100%);
    padding: 140px 0 100px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.03"><circle cx="30" cy="30" r="2"/></g></svg>');
    opacity: 0.5;
}

.contact-hero .container {
    position: relative;
    z-index: 2;
}

.contact-hero h1 {
    font-family: "Permanent Marker", cursive;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    text-shadow: none;
    letter-spacing: 1px;
    animation: fadeInUp 0.8s ease-out;
}

.contact-hero p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out;
}

.email-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary-color);
    text-decoration: none;
    margin-top: 10px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.email-link:hover {
    color: var(--white);
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-hero {
        padding: 100px 0 60px;
    }

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

    .hideOnMobile {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

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

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .hero-info {
        flex-direction: column;
    }

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

    .nav-main {
        padding: 15px 20px;
    }

    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .about-section,
    .gallery-section,
    .location-section,
    .social-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .address-card,
    .hours-card {
        padding: 20px;
    }
}