@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: #000;
    color: #fff;
}

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 50px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8) 0%, transparent 100%);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-weight: 200;
    letter-spacing: 8px;
    font-size: 24px;
}

.logo span {
    font-size: 10px;
    letter-spacing: 3px;
    display: block;
    text-align: center;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 300;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #c5a059; /* Luxury Gold accent */
}

.nav-icons a {
    color: #fff;
    margin-left: 15px;
    font-size: 14px;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding-left: 10%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

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

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

.hero-content h2 {
    font-size: 80px;
    font-weight: 300;
    letter-spacing: 15px;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 16px;
    font-weight: 200;
    font-style: italic;
    letter-spacing: 1px;
}

/* Controls */
.slider-arrows {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    z-index: 20;
}

.arrow {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
    cursor: pointer;
    transition: 0.3s;
}

.arrow:hover {
    background: #fff;
    color: #000;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 6px;
    height: 6px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
}

.dot.active {
    background: #fff;
    width: 12px;
    border-radius: 10px;
}
/* Dropdown Logic */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.9);
    list-style: none;
    min-width: 180px;
    padding: 15px 0;
    display: none; /* Hidden by default */
    border-top: 2px solid #c5a059;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.dropdown-menu li {
    margin: 0 !important;
    padding: 10px 20px;
}

.dropdown-menu a {
    font-size: 10px !important;
    display: block;
}

.dropdown:hover .dropdown-menu {
    display: block;
    animation: fadeInMenu 0.3s ease;
}

@keyframes fadeInMenu {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Ensure slide transitions are smooth */
.slide {
    transition: opacity 1.2s ease-in-out;
}
/* --- EXISTING CSS FROM PREVIOUS STEP STAYS ABOVE --- */

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

.mobile-socials { display: none; }

/* MEDIA QUERIES for Responsiveness */
@media (max-width: 1024px) {
    header { padding: 20px 30px; }
    .hero-content h2 { font-size: 60px; }
}

@media (max-width: 768px) {
    .menu-toggle { display: block; }

    .nav-links {
        position: fixed;
        right: -100%;
        top: 0;
        height: 100vh;
        width: 80%;
        background: rgba(15, 15, 15, 0.95);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.5s ease;
    }

    .nav-links.active { right: 0; }

    .nav-links li { margin: 20px 0; }

    .desktop-only { display: none; }
    
    .mobile-socials { 
        display: flex; 
        gap: 20px;
        margin-top: 20px;
    }

    .hero-content h2 { 
        font-size: 40px; 
        letter-spacing: 5px; 
    }

    .hero-content p { font-size: 14px; }
    
    .slider-arrows {
        right: 20px;
    }
}
.collection-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columns for desktop */
    min-height: 80vh;
    width: 100%;
    background-color: #000;
}

.category-card {
    position: relative;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    transition: 0.6s ease;
    cursor: pointer;
    filter: grayscale(80%); /* Matches the dark luxury vibe */
    border-right: 1px solid rgba(255,255,255,0.1);
}

.category-card:hover {
    filter: grayscale(0%);
    transform: scale(1.02);
    z-index: 5;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 10%, rgba(0,0,0,0.2) 100%);
    transition: 0.4s;
}

.card-content {
    position: absolute;
    bottom: 0;
    padding: 40px 25px;
    z-index: 10;
    color: #fff;
}

.card-number {
    display: block;
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 20px;
    opacity: 0.7;
}

.card-icon {
    display: block;
    margin-bottom: 15px;
    font-size: 18px;
}

.card-subtitle {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 5px;
}

.card-title {
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.card-text {
    font-size: 12px;
    line-height: 1.6;
    font-weight: 200;
    opacity: 0; /* Hidden initially */
    transform: translateY(20px);
    transition: 0.5s ease;
}

.category-card:hover .card-text {
    opacity: 1;
    transform: translateY(0);
}

.card-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 1024px) {
    .collection-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns for tablets */
    }
}

@media (max-width: 600px) {
    .collection-grid {
        grid-template-columns: 1fr; /* 1 column for phones */
    }
    .card-text {
        opacity: 0.8; /* Show text on mobile without hover */
        transform: translateY(0);
    }
}
/* Sub-page Specific Styles */
.inner-header {
    background: #000; /* Solid background for subpages */
    position: relative;
    padding: 15px 50px;
}

.page-banner {
    background: #1a1a1a;
    padding: 100px 0 50px 0;
    text-align: center;
    border-bottom: 1px solid #333;
}

.banner-content h1 {
    font-size: 36px;
    letter-spacing: 10px;
    font-weight: 200;
    color: #c5a059;
}

.banner-content p {
    font-size: 12px;
    letter-spacing: 2px;
    margin-top: 10px;
    color: #888;
}

/* Product Grid Layout */
.product-container {
    padding: 60px 5%;
    background-color: #000;
}

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

.product-card {
    background: #111;
    transition: 0.3s;
}

.product-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 0.4s;
}

.view-btn {
    border: 1px solid #fff;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 2px;
    transition: 0.3s;
}

.view-btn:hover {
    background: #fff;
    color: #000;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-card:hover img {
    transform: scale(1.1);
}

.product-info {
    padding: 20px;
    text-align: center;
}

.product-info h3 {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 2px;
}

.simple-footer {
    text-align: center;
    padding: 40px;
    background: #000;
    border-top: 1px solid #222;
    font-size: 11px;
    color: #555;
}
/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366; /* WhatsApp Green */
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0px 4px 15px rgba(37, 211, 102, 0.3);
    z-index: 3000; /* Ensures it stays above the zoom modal */
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128c7e; /* Darker green on hover */
    box-shadow: 0px 6px 20px rgba(37, 211, 102, 0.5);
}

/* For mobile devices, make it slightly smaller */
@media screen and (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }
}
/* --- ABOUT SECTION --- */
.about-section {
    padding: 100px 10%;
    background: #000;
}
.about-container {
    display: flex;
    align-items: center;
    gap: 50px;
}
.about-text { flex: 1; }
.about-text .subtitle { color: #c5a059; letter-spacing: 5px; font-size: 12px; }
.about-text h2 { font-size: 40px; letter-spacing: 8px; margin: 20px 0; font-weight: 300; }
.about-text p { color: #888; line-height: 1.8; margin-bottom: 20px; font-weight: 300; }
.btn-outline {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid #c5a059;
    color: #c5a059;
    text-decoration: none;
    letter-spacing: 2px;
    font-size: 11px;
    transition: 0.3s;
}
.btn-outline:hover { background: #c5a059; color: #000; }
.about-image { flex: 1; overflow: hidden; }
.about-image img { width: 100%; filter: contrast(1.1); }

/* --- PROJECTS SECTION --- */
.projects-featured { padding: 100px 0; background: #050505; }
.section-title { text-align: center; margin-bottom: 50px; }
.section-title h2 { letter-spacing: 10px; font-weight: 200; font-size: 28px; }
.section-title .line { width: 50px; height: 1px; background: #c5a059; margin: 15px auto; }

.project-strip {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 0 20px;
}
.project-strip::-webkit-scrollbar { display: none; } /* Hide scrollbar */

.project-item {
    min-width: 400px;
    position: relative;
    cursor: pointer;
}
.project-item img { width: 100%; height: 500px; object-fit: cover; filter: brightness(0.7); transition: 0.5s; }
.project-item:hover img { filter: brightness(1); }
.project-info {
    position: absolute;
    bottom: 30px;
    left: 30px;
}
.project-info span { color: #c5a059; font-size: 10px; letter-spacing: 3px; }
.project-info h4 { font-size: 18px; letter-spacing: 3px; font-weight: 300; margin-top: 5px; }

/* Mobile Response */
@media (max-width: 768px) {
    .about-container { flex-direction: column; text-align: center; }
    .project-item { min-width: 300px; }
    .project-item img { height: 350px; }
}
/* --- VIDEO ATMOSPHERE --- */
.video-atmosphere {
    position: relative;
    height: 60vh;
    overflow: hidden;
    margin-top: 50px;
}
.video-container {
    height: 100%;
    width: 100%;
}
.bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.gold-text { color: #c5a059; letter-spacing: 5px; font-size: 12px; display: block; margin-bottom: 15px; }
.btn-gold { 
    margin-top: 25px;
    padding: 15px 35px;
    border: 1px solid #c5a059;
    color: #fff;
    text-decoration: none;
    display: inline-block;
    letter-spacing: 3px;
    font-size: 12px;
    transition: 0.4s;
}
.btn-gold:hover { background: #c5a059; color: #000; }

/* --- NEWSLETTER --- */
.newsletter-section {
    padding: 100px 10%;
    background: #111;
    text-align: center;
}
.newsletter-content h3 { font-size: 24px; letter-spacing: 5px; margin-bottom: 10px; font-weight: 300; }
.newsletter-content p { color: #888; margin-bottom: 30px; font-weight: 200; }
.newsletter-form {
    display: flex;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
}
.newsletter-form input {
    flex: 1;
    padding: 15px;
    background: transparent;
    border: 1px solid #333;
    color: #fff;
    outline: none;
}
.newsletter-form button {
    padding: 15px 30px;
    background: #c5a059;
    border: none;
    color: #000;
    cursor: pointer;
    letter-spacing: 2px;
    font-weight: 600;
    transition: 0.3s;
}
.newsletter-form button:hover { background: #fff; }

/* --- FOOTER --- */
.main-footer {
    background: #000;
    padding: 80px 10% 20px 10%;
    border-top: 1px solid #222;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}
.footer-brand h2 { letter-spacing: 8px; font-weight: 300; margin-bottom: 10px; }
.footer-brand p { color: #555; font-size: 12px; margin-bottom: 20px; }
.footer-socials a { color: #fff; margin-right: 15px; font-size: 18px; transition: 0.3s; }
.footer-socials a:hover { color: #c5a059; }

.footer-links h4, .footer-contact h4 {
    font-size: 14px;
    letter-spacing: 3px;
    margin-bottom: 25px;
    color: #c5a059;
}
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { text-decoration: none; color: #888; font-size: 13px; transition: 0.3s; }
.footer-links a:hover { color: #fff; padding-left: 5px; }

.footer-contact p { color: #888; font-size: 13px; margin-bottom: 15px; }
.footer-contact i { margin-right: 10px; color: #c5a059; }

.footer-bottom {
    text-align: center;
    border-top: 1px solid #111;
    padding-top: 20px;
    color: #444;
    font-size: 11px;
    letter-spacing: 1px;
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .newsletter-form { flex-direction: column; gap: 10px; }
    .video-atmosphere { height: 40vh; }
    .video-content h2 { font-size: 24px; letter-spacing: 5px; }
}
/* Video Atmosphere Section */
.video-atmosphere {
    position: relative;
    width: 100%;
    height: 70vh; /* Adjust height as needed (e.g., 100vh for full screen) */
    overflow: hidden;
    background-color: #000; /* Fallback color */
}

.video-container {
    width: 100%;
    height: 100%;
}

.self-hosted-video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* This is the "magic" property that makes it fill the space */
    position: absolute;
    top: 0;
    left: 0;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Darkens the video to make text readable */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.video-content {
    text-align: center;
    padding: 20px;
}

.video-content h2 {
    font-size: clamp(24px, 5vw, 48px); /* Responsive font size */
    font-weight: 300;
    letter-spacing: 10px;
    margin: 20px 0;
    color: #fff;
    text-transform: uppercase;
}

.gold-text {
    color: #c5a059;
    letter-spacing: 5px;
    font-size: 14px;
}

.btn-gold {
    display: inline-block;
    padding: 15px 40px;
    border: 1px solid #c5a059;
    color: #fff;
    text-decoration: none;
    letter-spacing: 3px;
    font-size: 11px;
    transition: all 0.4s ease;
    margin-top: 20px;
}

.btn-gold:hover {
    background: #c5a059;
    color: #000;
}

/* Responsive Tablet/Mobile */
@media (max-width: 768px) {
    .video-atmosphere {
        height: 50vh; /* Slightly shorter on mobile */
    }
}
/* --- CONTACT PAGE STYLES --- */
.contact-wrapper {
    background-color: #000;
    padding-top: 100px;
}

.contact-info-section {
    display: flex;
    flex-wrap: wrap;
    padding: 80px 10%;
    gap: 50px;
}

.contact-details {
    flex: 1;
    min-width: 300px;
}

.contact-details h2 {
    font-size: 36px;
    letter-spacing: 5px;
    margin: 15px 0 30px 0;
    font-weight: 300;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.info-item i {
    color: #c5a059;
    font-size: 20px;
    margin-right: 20px;
    margin-top: 5px;
}

.info-item h4 {
    font-size: 12px;
    letter-spacing: 2px;
    color: #c5a059;
    margin-bottom: 5px;
}

.info-item p {
    color: #888;
    font-size: 14px;
}

/* Contact Form */
.contact-form-container {
    flex: 1;
    min-width: 300px;
    background: #0a0a0a;
    padding: 40px;
    border: 1px solid #1a1a1a;
}

.input-group {
    margin-bottom: 20px;
}

.input-group input, .input-group textarea {
    width: 100%;
    padding: 15px;
    background: transparent;
    border: none;
    border-bottom: 1px solid #333;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    outline: none;
    transition: 0.3s;
}

.input-group input:focus, .input-group textarea:focus {
    border-bottom: 1px solid #c5a059;
}

/* Map Section */
.map-section {
    line-height: 0; /* Removes gap under iframe */
}

/* Responsive */
@media (max-width: 768px) {
    .contact-info-section {
        padding: 40px 5%;
    }
}