:root {
    --primary-color: #D4AF37; /* Gold */
    --primary-hover: #F3E5AB;
    --bg-dark: #0A0A0A;
    --bg-darker: #050505;
    --bg-card: rgba(20, 20, 20, 0.7);
    --text-main: #F5F5F5;
    --text-muted: #A0A0A0;
    --glass-border: rgba(255, 255, 255, 0.05);
    --font-family: 'Outfit', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-darker);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

/* Typography */
h1, h2, h3, h4 {
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

p {
    color: var(--text-muted);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--bg-darker);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background-color: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-secondary:hover {
    background-color: rgba(212, 175, 55, 0.1);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 1rem 0;
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
}

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

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

.logo-img {
    height: 80px;
    width: auto;
}

.logo-text {
    font-size: 1.2rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.nav-links a:not(.btn) {
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.nav-links a:not(.btn):hover {
    color: var(--primary-color);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.mobile-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-main);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    height: auto;
    padding-bottom: 4rem;
    display: flex;
    align-items: center;
    background-image: url('assets/7211.JPG');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0; /* Align left */
    padding-top: 8rem; /* Prevent overlap with fixed navbar */
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background-color: rgba(212, 175, 55, 0.2);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #E0E0E0;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 4rem;
}

.stats-container {
    display: flex;
    gap: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-box h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.2rem;
}

.stars {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

/* Info Section */
.info-section {
    padding: 6rem 0;
    background-color: var(--bg-dark);
}

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

.info-content h2 {
    font-size: 2.8rem;
    color: var(--text-main);
    margin-bottom: 1rem;
}

.lead-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.happy-hour-block {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
    border-left: 4px solid var(--primary-color);
    padding: 2rem;
    border-radius: 0 8px 8px 0;
}

.happy-hour-block h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

/* Page Header (About Page) */
.page-header {
    padding: 12rem 0 6rem;
    background-size: cover;
    background-position: center;
    text-align: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.page-header h1 {
    font-size: 4rem;
    color: var(--text-main);
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

/* About Page Content */
.about-page-content {
    padding: 6rem 0;
    background-color: var(--bg-dark);
}

.about-text-block {
    max-width: 800px;
    margin: 0 auto 4rem auto;
}

.about-text-block h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.about-text-block p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.about-list {
    list-style: none;
    margin-top: 1.5rem;
}

.about-list li {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.about-list li::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    line-height: 1.2;
}

.about-list li strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* About Gallery */
.about-gallery {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 350px;
    gap: 1.5rem;
    margin-top: 4rem;
}

.about-gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.about-gallery-img:hover {
    transform: scale(1.02);
    border-color: rgba(212, 175, 55, 0.3);
}

.about-gallery-img:nth-child(1) { grid-column: span 3; }
.about-gallery-img:nth-child(2) { grid-column: span 3; }
.about-gallery-img:nth-child(3) { grid-column: span 2; }
.about-gallery-img:nth-child(4) { grid-column: span 2; }
.about-gallery-img:nth-child(5) { grid-column: span 2; }

/* Services Section */
.hours-card {
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.hours-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
}

.hours-card h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--text-main);
    text-align: center;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.95rem;
}

.hours-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.hours-row span:first-child {
    color: var(--text-muted);
}

.hours-row span:last-child {
    color: var(--text-main);
    font-weight: 600;
}

/* Services Section */
.services {
    padding: 6rem 0;
}

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.service-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image {
    transform: scale(1.05);
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    margin-bottom: 1rem;
}

/* Statement Banner */
.statement-banner {
    padding: 8rem 0;
    background: linear-gradient(rgba(5, 5, 5, 0.85), rgba(5, 5, 5, 0.95)), url('assets/7216.JPG');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.statement-text {
    font-size: 4rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--text-main);
    letter-spacing: 2px;
    line-height: 1.2;
    margin: 0;
}

.highlight-text {
    color: var(--primary-color);
}

/* Testimonial */
.testimonial {
    padding: 6rem 0;
    background: linear-gradient(rgba(10, 10, 10, 0.9), rgba(10, 10, 10, 0.9)), url('assets/7215.JPG');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
}

.testimonial-content {
    max-width: 800px;
    margin: 0 auto;
}

.quote-mark {
    font-size: 5rem;
    color: var(--primary-color);
    line-height: 1;
    opacity: 0.5;
    margin-bottom: -2rem;
    font-family: serif;
}

.quote {
    font-size: 2rem;
    color: var(--text-main);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.author {
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 1px;
}

/* Footer */
footer {
    background-color: #000;
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-brand p {
    margin-top: 1rem;
    font-size: 0.9rem;
}

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

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-main);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    color: var(--bg-darker);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-links, .footer-contact, .footer-subscribe {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links h4, .footer-contact h4, .footer-subscribe h4 {
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.footer-links a, .footer-contact a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links a:hover, .footer-contact a:hover {
    color: var(--primary-color);
}

.subscribe-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.subscribe-form input {
    flex: 1;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-main);
    border-radius: 4px;
    outline: none;
    font-family: var(--font-family);
}

.subscribe-form input:focus {
    border-color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Animations */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

.slide-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { animation-delay: 0.2s; transition-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; transition-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; transition-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; transition-delay: 0.8s; }

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Gallery Section */
.gallery {
    padding: 6rem 0;
    background-color: var(--bg-darker);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.gallery-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.gallery-img:hover {
    transform: scale(1.02);
    border-color: rgba(212, 175, 55, 0.3);
}

/* Responsive */
@media (max-width: 1024px) {
    .info-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    
    .logo-img {
        height: 55px;
    }

    .hero-content {
        padding-top: 6rem;
    }
    
    .info-section, .services, .gallery, .testimonial, .about-page-content {
        padding: 4rem 0;
    }

    .page-header {
        padding: 8rem 0 4rem;
    }

    footer {
        padding: 4rem 0 2rem;
    }
    
    .mobile-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(5, 5, 5, 0.98);
        flex-direction: column;
        justify-content: center;
        transition: 0.4s ease;
    }

    .nav-links.active {
        right: 0;
    }

    .hero-actions {
        flex-direction: column;
    }
    
    .stats-container {
        flex-direction: column;
        gap: 1.5rem;
    }

    .info-content h2 {
        font-size: 2.2rem;
    }

    .statement-text {
        font-size: 2.5rem;
    }
    
    .statement-banner {
        padding: 5rem 0;
    }

    .services-grid, .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-img {
        height: 300px;
    }

    .about-gallery {
        grid-template-columns: 1fr;
        grid-auto-rows: 300px;
    }
    
    .about-gallery-img {
        grid-column: span 1 !important;
    }

    .quote {
        font-size: 1.5rem;
    }
}
