:root {
    --bg-dark: #0A0A0B;
    --bg-card: #141417;
    --primary-raw: 212, 175, 55;
    --primary: rgb(var(--primary-raw));
    --primary-light: #f2d17c;
    --text-main: #fcfcfc;
    --text-muted: #a1a1aa;
    --border-color: #27272a;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, .logo {
    font-family: var(--font-heading);
    font-weight: 600;
}

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

ul {
    list-style: none;
}

::selection {
    background-color: var(--primary);
    color: #000;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background-color: var(--primary);
    color: var(--bg-dark);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    border: 1px solid var(--primary);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary);
    box-shadow: 0 0 15px rgba(var(--primary-raw), 0.3);
}

.btn-outline {
    display: inline-block;
    background-color: transparent;
    color: var(--text-main);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

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

.logo {
    font-size: 1.8rem;
    letter-spacing: 1px;
}

.logo span {
    color: var(--primary);
    font-style: italic;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 300;
    opacity: 0.8;
    transition: var(--transition);
}

.nav-links a:hover {
    opacity: 1;
    color: var(--primary);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.mobile-menu-btn span {
    width: 30px;
    height: 2px;
    background-color: var(--text-main);
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 5%;
}

.hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    border-radius: 15px;
}

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

.hero-content {
    max-width: 800px;
    z-index: 1;
}

.eyebrow {
    margin-bottom: 1rem;
    display: inline-block;
}

.eyebrow .location-link {
    color: var(--primary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: rgba(var(--primary-raw), 0.1);
    border: 1px solid rgba(var(--primary-raw), 0.3);
    border-radius: 50px;
    transition: var(--transition);
}

.eyebrow .location-link:hover {
    background: rgba(var(--primary-raw), 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(var(--primary-raw), 0.2);
}

.click-hint {
    font-size: 0.75rem;
    color: var(--primary-light);
    opacity: 0.8;
    text-transform: none;
    letter-spacing: 0.5px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 0.5; }
    50% { opacity: 1; }
    100% { opacity: 0.5; }
}

.hero h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.home-service-text {
    margin-top: 2rem !important;
    font-size: 0.95rem !important;
    color: var(--primary-light) !important;
    opacity: 0.9;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

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

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Sections */
.section {
    padding: 4rem 5%;
}

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

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-muted);
    font-weight: 300;
}

.services-header {
    position: relative;
    padding: 6rem 2rem;
    border-radius: 16px;
    overflow: hidden;
}

.services-header h2,
.services-header p {
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

.section-featured-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.35;
}

.service-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-card);
    padding: 3rem 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(var(--primary-raw), 0.5);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

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

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 300;
}

/* Carousel */
.gallery-section {
    background: #0f0f13; /* slightly different dark */
}

.carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-track img,
.carousel-track video {
    min-width: 100%;
    height: 600px;
    object-fit: cover;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(10,10,11,0.5);
    backdrop-filter: blur(5px);
    color: white;
    border: 1px solid rgba(255,255,255,0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.carousel-btn:hover {
    background: var(--primary);
    color: #000;
}

.prev { left: 20px; }
.next { right: 20px; }

/* Benefits */
.benefits-section {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #151412 100%);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

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

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

.benefits-content > p {
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefits-list li {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.check {
    width: 35px;
    height: 35px;
    background: rgba(var(--primary-raw), 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.benefits-list strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
}

.benefits-list span {
    color: var(--text-muted);
    font-weight: 300;
}

/* Contact & Map */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-info p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.info-item {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.home-alert {
    display: inline-block;
    background: rgba(var(--primary-raw), 0.1);
    color: var(--primary-light);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    margin: 1.5rem 0 2.5rem 0;
    font-size: 0.9rem;
    border: 1px solid rgba(var(--primary-raw), 0.2);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.social-btn {
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    border: 1px solid var(--border-color);
    font-size: 0.9rem;
    transition: var(--transition);
}

.social-btn:hover {
    background: var(--bg-card);
    border-color: var(--primary);
}

.embedded-socials {
    display: flex;
    gap: 1rem;
}

.social-iframe {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    border-radius: 12px;
    flex: 1;
    text-align: center;
}

.social-iframe h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.embed-placeholder {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.map-container {
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border-color);
    /* Adding a subtle filter to the map so it fits dark mode better */
    filter: invert(90%) hue-rotate(180deg) brightness(80%) contrast(150%);
}

/* Footer */
footer {
    padding: 4rem 5% 2rem;
    text-align: center;
    border-top: 1px solid var(--border-color);
    background: var(--bg-dark);
}

footer .logo {
    margin-bottom: 1rem;
}

footer p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .nav-links, .nav-btn {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
}

@media (max-width: 600px) {
    .hero-buttons {
        flex-direction: column;
    }
    
    .embedded-socials {
        flex-direction: column;
    }
}

/* Modal Styles */
.modal {
    display: none; 
    position: fixed; 
    z-index: 2000; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: hidden; 
    background-color: rgba(10, 10, 11, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--bg-card);
    margin: 5% auto;
    padding: 20px;
    border: 1px solid var(--border-color);
    width: 90%;
    max-width: 900px;
    height: 80vh;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 0px;
    color: var(--text-muted);
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
}

.close-modal:hover {
    color: var(--primary);
}
