/* --- VARIABLES & RESET --- */
:root {
    --primary-color: #1a1a1a;   /* Jet Black */
    --accent-color: #c0a062;    /* Muted Gold */
    --bg-color: #ffffff;
    --light-gray: #f9f9f9;
    --text-color: #444444;
    --font-head: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-color);
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; display: block; object-fit: cover; }

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--primary-color); margin-bottom: 1rem; }
h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; text-align: center; }
p { margin-bottom: 1rem; }

/* --- HEADER & NAVIGATION --- */
header {
    background: var(--bg-color);
    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-color);
    border: 2px solid var(--primary-color);
    padding: 5px 15px;
    text-transform: uppercase;
}

.nav-links { display: flex; gap: 2rem; }
.nav-links li { position: relative; }
.nav-links a { font-weight: 500; font-size: 0.9rem; text-transform: uppercase; color: var(--primary-color); }
.nav-links a:hover { color: var(--accent-color); }

/* DROPDOWN */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    width: 200px;
    display: none;
    flex-direction: column;
}
.dropdown-menu li a { padding: 10px 15px; display: block; border-bottom: 1px solid #eee; }
.dropdown:hover .dropdown-menu { display: flex; }

/* HAMBURGER MENU */
.burger { display: none; cursor: pointer; }
.burger div { width: 25px; height: 3px; background-color: var(--primary-color); margin: 5px; transition: var(--transition); }

/* --- HERO SECTION --- */
.hero {
    height: 90vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    margin-top: 60px;
}
.hero::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.3); }
.hero-content { position: relative; z-index: 2; color: #fff; max-width: 800px; padding: 20px; }
.hero-content h1 { color: #fff; }
.btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--accent-color);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 20px;
    border: 1px solid var(--accent-color);
}
.btn:hover { background: transparent; color: #fff; }

/* --- SECTIONS --- */
.section { padding: 5rem 10%; }
.bg-light { background-color: var(--light-gray); }

/* --- GRID LAYOUTS --- */
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.card {
    background: #fff;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.card:hover { transform: translateY(-5px); }
.card-img { height: 300px; overflow: hidden; }
.card-img img { width: 100%; height: 100%; transition: var(--transition); }
.card:hover .card-img img { transform: scale(1.05); }
.card-text { padding: 1.5rem; text-align: center; }
.card-text h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }

/* --- ABOUT PAGE SPECIFIC --- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.ceo-image { width: 300px; height: 300px; border-radius: 50%; object-fit: cover; border: 5px solid var(--accent-color); margin: 0 auto; }

/* --- CONTACT PAGE SPECIFIC --- */
.contact-container { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.form-group { margin-bottom: 1.5rem; }
.form-group input, .form-group textarea { width: 100%; padding: 12px; border: 1px solid #ddd; font-family: var(--font-body); }
.form-group button { cursor: pointer; border: none; }
iframe { width: 100%; height: 400px; border: 0; filter: grayscale(100%); }

/* --- FOOTER --- */
footer { background: var(--primary-color); color: #fff; padding: 3rem 5%; text-align: center; }
footer a { color: var(--accent-color); }

/* --- RESPONSIVE MEDIA QUERIES --- */
@media screen and (max-width: 768px) {
    .nav-links {
        position: fixed; right: 0; height: 100vh; top: 60px;
        background-color: var(--bg-color); display: flex; flex-direction: column;
        align-items: center; width: 60%; transform: translateX(100%);
        transition: transform 0.3s ease-in; padding-top: 2rem; border-left: 1px solid #eee;
    }
    .nav-links li { width: 100%; text-align: center; padding: 15px 0; }
    .nav-active { transform: translateX(0%); }
    .burger { display: block; }
    .about-grid, .contact-container { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2rem; }
    
    /* Mobile Dropdown Fix */
    .dropdown-menu { position: relative; width: 100%; box-shadow: none; text-align: center; background: #f4f4f4; display: none; }
    .dropdown.active .dropdown-menu { display: flex; }
}

/* --- 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); }