:root {
    --bg-dark: #121212;
    --bg-card: #1e1e1e;
    --text-primary: #e0e0e0;
    --text-secondary: #a0a0a0;
    --accent-gold: #d4af37;
    --accent-gold-hover: #b5952f;
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Playfair Display', serif;
}

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

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

h1,
h2,
h3,
.nav-links a,
.btn-gold,
.btn-outline {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 2px;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    transition: background 0.3s ease, padding 0.3s ease;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-gold);
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-primary);
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-gold);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.btn-nav {
    border: 1px solid var(--accent-gold);
    padding: 8px 20px;
    color: var(--accent-gold) !important;
}

.btn-nav:hover {
    background: var(--accent-gold);
    color: var(--bg-dark) !important;
}

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

.menu-toggle span {
    width: 30px;
    height: 3px;
    background-color: var(--accent-gold);
}

/* Hero Section */
.hero {
    height: 100vh;
    background-image: url('https://images.unsplash.com/photo-1503951914875-452162b0f3f1?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
    opacity: 0;
    /* JS Fade in */
    transform: translateY(30px);
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #fff;
}

.accent-text {
    color: var(--accent-gold);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #ccc;
    font-style: italic;
}

.btn-gold {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--accent-gold);
    color: var(--bg-dark);
    font-weight: 700;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-gold:hover {
    background-color: var(--accent-gold-hover);
    transform: translateY(-3px);
}

/* Services */
.services {
    padding: 100px 20px;
    background-color: var(--bg-dark);
}

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

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

.section-title {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.divider {
    width: 60px;
    height: 3px;
    background-color: var(--accent-gold);
    margin: 0 auto;
}

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

.service-card {
    background-color: var(--bg-card);
    padding: 40px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
}

.icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.price {
    display: block;
    font-size: 1.2rem;
    color: var(--accent-gold);
    font-weight: 700;
    font-family: var(--font-heading);
}

/* Gallery - Asymmetrical Grid */
.gallery {
    display: flex;
    flex-wrap: wrap;
    background-color: #000;
}

.gallery-grid {
    flex: 1 1 60%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 300px);
}

.gallery-item {
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: grayscale(80%);
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.gallery-text {
    flex: 1 1 40%;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--bg-card);
}

.gallery-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--accent-gold);
}

.gallery-text p {
    margin-bottom: 30px;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.btn-outline {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid var(--text-primary);
    color: var(--text-primary);
    width: fit-content;
    transition: all 0.3s;
}

.btn-outline:hover {
    background-color: var(--text-primary);
    color: var(--bg-dark);
}

/* Testimonials */
.testimonials {
    padding: 100px 20px;
    background-color: var(--bg-dark);
    text-align: center;
}

.testimonial-slider {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 50px;
}

.testimonial-card {
    background-color: transparent;
    max-width: 350px;
    padding: 20px;
    border-left: 3px solid var(--accent-gold);
    text-align: left;
}

.quote {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-gold);
}

.author span {
    font-family: var(--font-heading);
    color: var(--text-secondary);
    font-weight: 700;
}

/* CTA Section */
.cta-section {
    padding: 120px 20px;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1634306385202-0e42d7088b7e?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.cta-content h2 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 15px;
}

.cta-content p {
    color: #ccc;
    font-size: 1.2rem;
    margin-bottom: 40px;
}

/* Footer */
.main-footer {
    background-color: #000;
    padding: 80px 20px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 50px;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--accent-gold);
}

.footer-info {
    text-align: right;
    color: var(--text-secondary);
}

.footer-info p {
    margin-bottom: 10px;
}

.socials a {
    color: var(--text-primary);
    margin-left: 15px;
    font-weight: bold;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #555;
    font-size: 0.9rem;
}

.pagedraft-link {
    color: var(--accent-gold);
    font-weight: 700;
    transition: color 0.3s;
}

.pagedraft-link:hover {
    color: #fff;
    text-decoration: underline;
}

/* Responsive */
/* Responsive & Animations */
@media (max-width: 768px) {
    .navbar {
        padding: 15px 30px;
        /* Increased side padding */
    }

    .logo {
        font-size: 1.2rem;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(18, 18, 18, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        z-index: 999;
        /* Animation Base State */
        opacity: 0;
        transform: translateY(-20px);
        transition: opacity 0.4s ease, transform 0.4s ease;
    }

    .nav-links.active {
        display: flex;
        opacity: 1;
        transform: translateY(0);
    }

    .nav-links a {
        font-size: 1.5rem;
    }

    .menu-toggle {
        display: flex;
        z-index: 1001;
        /* Above nav overlay */
        margin-right: 20px;
    }

    /* Hamburger Animation */
    .menu-toggle span {
        transition: all 0.3s ease-in-out;
        transform-origin: center;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

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

    .gallery {
        flex-direction: column;
    }

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

    .gallery-text {
        padding: 40px 20px;
    }

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

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