@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=Inter:wght@300;400;600&display=swap');

:root {
    --gold: #D4AF37;
    --gold-bright: #F4CF67;
    --dark-bg: #0A0A0A;
    --charcoal: #1A1A1A;
    --text-light: #F5F5F5;
    --text-muted: #A0A0A0;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
    background-color: var(--dark-bg);
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .brand-font {
    font-family: 'Playfair Display', serif;
}

/* Base Styles */
a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.section-padding {
    padding: 100px 5%;
}

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

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    background: transparent;
}

header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    padding: 15px 5%;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    backdrop-filter: blur(10px);
}

.logo {
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--gold);
    text-transform: uppercase;
}

nav ul {
    display: flex;
    gap: 40px;
}

nav ul li a {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

nav ul li a:hover {
    color: var(--gold);
}

.btn-book {
    background: var(--gold);
    color: var(--dark-bg);
    padding: 12px 30px;
    border-radius: 0;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid var(--gold);
}

.btn-book:hover {
    background: transparent;
    color: var(--gold);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('assets/hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-content {
    max-width: 800px;
    padding: 0 5%;
}

.hero-content h1 {
    font-size: clamp(3rem, 10vw, 5.5rem);
    line-height: 1.1;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease forwards;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
    animation: fadeInUp 1s ease 0.2s forwards;
    opacity: 0;
}

.hero-actions {
    animation: fadeInUp 1s ease 0.4s forwards;
    opacity: 0;
}

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

.service-card {
    background: var(--charcoal);
    padding: 40px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
}

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

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

.service-price {
    font-weight: 700;
    font-size: 1.2rem;
    display: block;
    margin-top: 20px;
}

/* Features/About */
.about-split {
    display: flex;
    align-items: center;
    gap: 80px;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--gold);
    z-index: -1;
}

.about-text {
    flex: 1;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 30px;
    position: relative;
}

.section-title::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--gold);
}

/* Testimonials */
.testimonial-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-card i {
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: 20px;
}

.testimonial-card p {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-style: italic;
    margin-bottom: 30px;
}

/* Footer */
footer {
    background: #050505;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 80px 5% 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

.footer-col h4 {
    color: var(--gold);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-col p, .footer-col li {
    color: var(--text-muted);
    margin-bottom: 10px;
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--gold);
    color: var(--dark-bg);
}

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

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

@media (max-width: 968px) {
    .about-split {
        flex-direction: column-reverse;
    }
    nav ul {
        display: none;
    }
    .hero-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .logo { font-size: 1.3rem; letter-spacing: 1px; }
    .btn-book { padding: 10px 18px; font-size: 0.75rem; }
    .hero-content h1 { font-size: 2.2rem; line-height: 1.15; }
    .hero-content p { font-size: 0.95rem; }
    .section-title { font-size: 2rem; }
    .testimonial-card p { font-size: 1.3rem; }
    .section-padding { padding: 70px 5%; }
}
