/* Global Styles & Variables */
:root {
    --gold-primary: #bf953f;
    --gold-secondary: #fcf6ba;
    --gold-tertiary: #aa771c;
    --gold-gradient: linear-gradient(135deg, #bf953f 0%, #fcf6ba 40%, #b38728 60%, #fbf5b7 80%, #aa771c 100%);
    --gold-text-gradient: linear-gradient(to right, #bf953f, #fcf6ba, #bf953f);
    --black-deep: #050505;
    --black-surface: #0a0a0a;
    --glass-bg: rgba(20, 20, 20, 0.6);
    --glass-border: rgba(191, 149, 63, 0.3);
    --text-main: #f0f0f0;
    --text-muted: #a0a0a0;
    --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --font-heading: 'Cinzel', serif;
    --font-body: 'Lato', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--black-deep);
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
    background-image: radial-gradient(circle at 50% 0%, #1a1a1a 0%, #050505 70%);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--black-deep);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-primary);
    border-radius: 4px;
}

/* Typography Enhancements */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--gold-primary);
    font-weight: 700;
    text-transform: uppercase;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    text-align: center;
    margin-bottom: 4rem;
    background: var(--gold-text-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: shine 5s linear infinite;
    position: relative;
    letter-spacing: 2px;
}

.section-title::after {
    content: '✧';
    display: block;
    font-size: 2rem;
    margin-top: 10px;
    background: none;
    -webkit-text-fill-color: var(--gold-primary);
    opacity: 0.8;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header & Glassmorphism Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition-smooth);
    background: rgba(5, 5, 5, 0.2);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

header.scrolled {
    background: rgba(5, 5, 5, 0.9);
    padding: 0.8rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid var(--gold-primary);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    /* allow wrapping on small screens */
    gap: 1rem;
}

.logo {
    text-align: center;
}

.logo h1 {
    font-size: 2rem;
    letter-spacing: 3px;
    margin: 0;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo .subtitle {
    font-size: 0.7rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-muted);
    display: block;
}

/* Navigation Links - Always Visible */
.nav-links {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-main);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold-primary);
    transition: var(--transition-smooth);
}

.nav-links a:hover {
    color: var(--gold-secondary);
}

.nav-links a:hover::before {
    width: 100%;
}

.btn-contact {
    padding: 0.8rem 2.2rem;
    background: var(--gold-gradient);
    color: var(--black-deep) !important;
    border: none;
    border-radius: 2px;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(191, 149, 63, 0.3);
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    z-index: 1;
}

.btn-contact:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(191, 149, 63, 0.5);
    filter: brightness(1.1);
}

.hamburger {
    display: none !important;
    /* Force hide hamburger */
}

/* Premium Hero Section with Advanced Image Styling */
.hero {
    height: 100vh;
    /* Uses a pseudo-element for the image to allow animation without moving content */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    background: url('bg.png') no-repeat center center;
    background-size: cover;

    /* Advanced CSS Styling */
    filter: brightness(0.8) contrast(1.1);
    transform: scale(1);
    animation: breatheZoom 20s infinite alternate ease-in-out;
}

@keyframes breatheZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

.hero::after {
    /* Gradient Overlay */
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(5, 5, 5, 0.4) 0%, rgba(5, 5, 5, 0.9) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
    padding: 0 20px;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 1.1;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.5s;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    /* Gold sheen on text */
    background: linear-gradient(to bottom, #fcf6ba, #bf953f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: clamp(1rem, 2vw, 1.3rem);
    letter-spacing: 3px;
    color: #ddd;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.8s;
}

.cta-group {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 1.1s;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Luxury Buttons */
.btn-gold {
    background: var(--gold-gradient);
    color: var(--black-deep);
    padding: 1rem 3rem;
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    text-transform: uppercase;
}

.btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    transition: 0.5s;
}

.btn-gold:hover::before {
    left: 100%;
}

.btn-gold:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(191, 149, 63, 0.4);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 1rem 3rem;
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: var(--transition-smooth);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: var(--gold-primary);
}

/* Info Banner */
#info-bar {
    position: relative;
    z-index: 10;
    margin-top: -50px;
    padding-bottom: 3rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.info-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

.info-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold-primary);
    background: rgba(20, 20, 20, 0.8);
}

.info-icon {
    font-size: 2.5rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.info-text h3 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: var(--white);
    letter-spacing: 1px;
}

.info-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Services Grid with Hover Effects */
.services-section {
    padding: 8rem 0;
    background: var(--black-deep);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: #0f0f0f;
    padding: 4rem 2rem;
    text-align: center;
    border: 1px solid #222;
    position: relative;
    transition: var(--transition-smooth);
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-card:hover {
    background: #151515;
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    border-color: #333;
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    color: #333;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
    color: var(--gold-primary);
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.service-card p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* Location and Contact */
.location-section {
    padding: 6rem 0;
    position: relative;
    background: linear-gradient(45deg, #080808, #111);
}

/* Adjusted location wrapper to center single item since image is gone */
.location-wrapper {
    display: flex;
    justify-content: center;
}

.location-info {
    padding: 3rem;
    border: 1px solid var(--gold-primary);
    background: rgba(10, 10, 10, 0.8);
    position: relative;
    max-width: 800px;
    width: 100%;
}

.location-info::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid rgba(191, 149, 63, 0.3);
    z-index: -1;
}

.location-detail {
    margin-bottom: 2rem;
    display: flex;
    gap: 1.5rem;
}

.location-detail i {
    font-size: 1.5rem;
    color: var(--gold-primary);
    margin-top: 5px;
}

.location-detail h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.reviews-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    /* Safety for small screens */
}

.stars {
    color: var(--gold-primary);
}

/* Footer */
footer {
    background: #020202;
    padding: 4rem 0 2rem;
    border-top: 1px solid #1a1a1a;
    text-align: center;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-social a {
    width: 50px;
    height: 50px;
    border: 1px solid #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1.2rem;
    transition: var(--transition-smooth);
}

.footer-social a:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
    transform: rotate(360deg);
}

.copyright {
    color: #444;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* Styles for smaller screens (Mobile) - Stack content, no hamburger */
@media (max-width: 900px) {
    nav {
        flex-direction: column;
        gap: 1.5rem;
        padding-bottom: 0.5rem;
    }

    .nav-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
        width: 100%;
        background: transparent;
        position: relative;
        height: auto;
        border: none;
        top: 0;
        right: 0;
        flex-direction: row;
        /* Horizontal on mobile too if possible, or wrap */
    }

    .nav-links a {
        font-size: 0.8rem;
    }

    .section-title {
        font-size: 2rem;
    }

    /* Fix overlap by making header relative regarding flow on mobile */
    header {
        position: relative !important;
        background: var(--black-deep);
        padding: 1rem 0;
    }

    .hero h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero {
        height: auto;
        min-height: 50vh;
        align-items: center;
        /* Center normally now that header is out of the way */
        padding-top: 3rem;
        padding-bottom: 4rem;
    }

    .hero-content {
        padding: 0 1rem;
    }
}

/* Animations Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}