/* Premium Luxury Dark Theme */
:root {
    --primary-gold: #D4AF37;
    --dark-bg: #0A0A0A;
    --text-white: #FFFFFF;
    --text-muted: #9A9A9A;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-white);
    font-family: var(--font-body);
    line-height: 1.8;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 800; /* ExtraBold */
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 2px;
}

p {
    color: var(--text-muted);
    font-size: 1.1rem;
    font-weight: 300;
}

a {
    color: var(--text-white);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

a:hover {
    color: var(--primary-gold);
}

.text-gold {
    color: var(--primary-gold) !important;
}

/* Premium Buttons */
.btn-gold {
    background-color: var(--primary-gold);
    color: var(--dark-bg);
    font-family: var(--font-heading);
    font-weight: 800;
    padding: 20px 45px;
    border-radius: 0;
    border: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 14px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: #fff;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: -1;
}

.btn-gold:hover::before {
    width: 100%;
}

.btn-gold:hover {
    color: var(--dark-bg);
}

.btn-outline-white {
    background-color: transparent;
    color: var(--text-white);
    font-family: var(--font-heading);
    font-weight: 800;
    padding: 18px 45px;
    border-radius: 0;
    border: 2px solid var(--text-white);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 14px;
}

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

/* Minimal Navbar */
.navbar {
    background: transparent;
    transition: all 0.5s ease;
    padding: 30px 0;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.navbar-brand {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 28px;
    letter-spacing: 4px;
    color: var(--text-white) !important;
}

.nav-link {
    color: var(--text-white) !important;
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
    margin: 0 15px;
    opacity: 0.7;
}

.nav-link:hover {
    opacity: 1;
}

/* Sections & Spacing */
section {
    padding: 150px 0;
    position: relative;
}

.section-title {
    font-size: 3.5rem;
    margin-bottom: 40px;
    line-height: 1.1;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.8) 100%);
    z-index: 1;
}

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

.hero h1 {
    font-size: 6rem;
    letter-spacing: 10px;
    margin-bottom: 10px;
}

.hero .subtitle {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 5px;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.hero .meta {
    font-size: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* About Section */
.about-image {
    width: 100%;
    height: 700px;
    object-fit: cover;
    filter: grayscale(20%) contrast(120%);
}

.about-text {
    font-size: 1.5rem;
    line-height: 1.8;
    color: var(--text-muted);
    font-weight: 300;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/5;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    filter: brightness(0.8) contrast(1.1);
}

.gallery-item:hover img {
    transform: scale(1.05);
    filter: brightness(1);
}

/* Services Section */
.service-block {
    position: relative;
    height: 500px;
    margin-bottom: 50px;
    display: flex;
    align-items: flex-end;
    padding: 60px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.service-block::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to top, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.2) 100%);
    transition: background 0.5s ease;
}

.service-block:hover::before {
    background: linear-gradient(to top, rgba(10,10,10,0.8) 0%, rgba(10,10,10,0.1) 100%);
}

.service-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.service-content h3 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.service-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.8);
}

/* Booking CTA Section */
.booking-cta {
    background-color: #050505;
    text-align: center;
    padding: 200px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.booking-cta h2 {
    font-size: 4.5rem;
    max-width: 1000px;
    margin: 0 auto 60px;
    line-height: 1.1;
}

.contact-meta {
    margin-top: 60px;
    font-family: var(--font-heading);
    letter-spacing: 2px;
}

.contact-meta a {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* Forms */
.form-control, .form-select {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    color: var(--text-white);
    padding: 15px 0;
    border-radius: 0;
    font-size: 1.1rem;
    font-weight: 300;
}

.form-control:focus, .form-select:focus {
    background-color: transparent;
    border-color: var(--primary-gold);
    color: var(--text-white);
    box-shadow: none;
}

.form-control::placeholder {
    color: rgba(255,255,255,0.3);
}

.form-label {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-gold);
    margin-bottom: 0;
}

/* Minimal Footer */
footer {
    padding: 60px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    background: var(--dark-bg);
}

.footer-logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 24px;
    letter-spacing: 4px;
    color: var(--text-white);
}

.footer-links a {
    font-size: 0.9rem;
    margin-left: 30px;
    color: var(--text-muted);
}

.footer-links a:hover {
    color: var(--text-white);
}

@media (max-width: 768px) {
    .hero h1 { font-size: 3.5rem; }
    .hero .subtitle { font-size: 1rem; }
    .section-title { font-size: 2.5rem; }
    .service-content h3 { font-size: 2rem; }
    .booking-cta h2 { font-size: 2.5rem; }
    .service-block { padding: 30px; height: 400px; }
    section { padding: 80px 0; }
}
