/* =========================================
   1. RESET & BASIC STYLES
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

/* =========================================
   2. HEADER & NAVIGATION
   ========================================= */
header {
    background-color: #333; /* Dark Grey Background */
    width: 100%;
    position: relative;
    z-index: 1000; /* Ensures header stays on top of content */
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Logo Style */
.logo {
    color: white;
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
    letter-spacing: 1px;
}

/* Navigation List */
.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    position: relative; /* Anchor point for the dropdown */
    margin-left: 20px;
}

/* Links Style */
.nav-links a {
    text-decoration: none;
    color: white;
    padding: 10px 15px;
    display: block;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #f4a261; /* Orange/Gold accent */
}

/* =========================================
   3. SMOOTH DROPDOWN MENU
   ========================================= */

/* The invisible container for the menu */
.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    z-index: 9999;
    padding-top: 10px; /* Invisible bridge so mouse doesn't lose focus */
}

/* The actual colored box inside the container (Requires .inner-menu in HTML) */
.dropdown-content .inner-menu {
    background-color: #444;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
    border-radius: 4px;
    overflow: hidden;

    /* Animation States */
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px); /* Start slightly down */
    transition: all 0.3s ease;   /* Smooth fade/slide */
}

/* Dropdown Links */
.dropdown-content a {
    padding: 12px 16px;
    border-bottom: 1px solid #555;
    color: white;
    display: block;
    text-decoration: none;
}

.dropdown-content a:hover {
    background-color: #555;
    color: #f4a261;
}

/* The Trigger: Show menu on hover */
.dropdown:hover .dropdown-content .inner-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0); /* Slide up to position */
}

/* =========================================
   4. HERO SECTION (Placeholder)
   ========================================= */
.hero {
    text-align: center;
    padding: 100px 20px;
}

.hero h1 {
    font-size: 3rem;
    color: #333;
    margin-bottom: 10px;
}

/* =========================================
   5. FOOTER STYLES
   ========================================= */
.site-footer {
    background-color: #333;
    color: #ccc;
    padding: 50px 0 20px;
    margin-top: 50px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; /* Stacks columns on small screens */
    gap: 30px;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

.footer-col h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 18px;
    border-bottom: 2px solid #f4a261;
    display: inline-block;
    padding-bottom: 5px;
}

.footer-col p {
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #f4a261;
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #444;
    margin-top: 40px;
    padding-top: 20px;
    font-size: 14px;
}
