/* --- VARIABLES & RESET --- */
:root {
    --primary: #2c3e50;    /* Dark Navy */
    --accent: #c5a059;     /* Luxury Gold */
    --light: #f4f4f4;
    --dark: #1a1a1a;
    --white: #ffffff;
    --font-head: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-body);
    color: var(--dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
img { max-width: 100%; display: block; width: 100%; }

/* --- TYPOGRAPHY --- */
h1, h2, h3 { font-family: var(--font-head); color: var(--primary); }

/* --- HEADER & NAV --- */
header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary);
    border: 2px solid var(--accent);
    padding: 5px 15px;
}

.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links li { position: relative; }
.nav-links a { font-weight: 500; font-size: 0.9rem; text-transform: uppercase; }
.nav-links a:hover { color: var(--accent); }

/* DROPDOWN MENU */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--white);
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    top: 100%;
    left: 0;
    z-index: 1001;
    border-top: 3px solid var(--accent);
}

.dropdown-content li a {
    padding: 12px 16px;
    display: block;
    text-transform: capitalize;
    font-size: 0.85rem;
    border-bottom: 1px solid #eee;
}

.dropdown:hover .dropdown-content { display: block; }

/* MOBILE MENU */
.burger { display: none; cursor: pointer; }
.burger div { width: 25px; height: 3px; background: var(--primary); margin: 5px; transition: 0.3s; }

/* --- HERO SECTION --- */
.hero {
    height: 60vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 60px; /* Offset fixed header */
}
.hero-overlay { background: rgba(0,0,0,0.4); width: 100%; height: 100%; display: flex; flex-direction: column; justify-content: center; align-items: center; padding: 20px;}
.hero h1 { font-size: 3rem; color: var(--white); margin-bottom: 1rem; }

/* --- SECTIONS GENERAL --- */
.container { max-width: 1200px; margin: 0 auto; padding: 4rem 20px; }
.section-title { text-align: center; margin-bottom: 3rem; font-size: 2.5rem; position: relative; }
.section-title::after { content: ''; width: 60px; height: 3px; background: var(--accent); display: block; margin: 10px auto 0; }

/* --- GRID LAYOUTS (Collections & Gallery) --- */
.grid-system {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    background: var(--white);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: 0.3s;
    overflow: hidden;
}
.card:hover { transform: translateY(-5px); }
.card-img { height: 250px; overflow: hidden; }
.card-img img { height: 100%; object-fit: cover; transition: 0.5s; }
.card:hover .card-img img { transform: scale(1.1); }
.card-info { padding: 1.5rem; text-align: center; }
.card-info h3 { margin-bottom: 0.5rem; font-size: 1.2rem; }
.card-info p { font-size: 0.9rem; color: #666; }

/* --- ABOUT PAGE SPECIFIC --- */
.about-flex { display: flex; gap: 3rem; align-items: center; flex-wrap: wrap; }
.ceo-photo { width: 300px; height: 300px; border-radius: 50%; object-fit: cover; border: 5px solid var(--accent); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }

/* --- CONTACT FORM & MAP --- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.form-group { margin-bottom: 1rem; }
.form-group input, .form-group textarea { width: 100%; padding: 12px; border: 1px solid #ddd; font-family: var(--font-body); }
.btn { background: var(--primary); color: var(--white); padding: 12px 30px; border: none; cursor: pointer; text-transform: uppercase; font-weight: 600; letter-spacing: 1px; }
.btn:hover { background: var(--accent); }
iframe { width: 100%; height: 400px; border: 0; filter: grayscale(100%); }
iframe:hover { filter: grayscale(0%); }

/* --- FOOTER --- */
footer { background: var(--primary); color: var(--white); text-align: center; padding: 2rem; margin-top: 3rem; }

/* --- ANIMATIONS --- */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.fade-in.appear { opacity: 1; transform: translateY(0); }

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .nav-links {
        position: absolute; right: 0; height: 100vh; top: 60px;
        background: var(--white); display: flex; flex-direction: column;
        width: 60%; transform: translateX(100%); transition: 0.3s;
        align-items: flex-start; padding: 2rem; box-shadow: -5px 0 10px rgba(0,0,0,0.1);
    }
    .nav-links.active { transform: translateX(0%); }
    .burger { display: block; }
    .dropdown-content { position: relative; box-shadow: none; border-top: none; background: #f9f9f9; width: 100%; display: none; }
    .dropdown.active .dropdown-content { display: block; }
    .contact-grid, .about-flex { grid-template-columns: 1fr; flex-direction: column; }
    .hero h1 { font-size: 2rem; }
}