/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    border-bottom: 3px solid #e6c200;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    max-width: 1200px;
    margin: 0 auto;
    width: 90%;
}

.main-content {
    margin-top: 90px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 55px; /* Larger logo */
    margin-right: 15px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffffff; /* White for hero overlay */
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
}

.logo-subtitle {
    font-size: 0.9rem;
    color: #ffd700; /* Gold for hero overlay */
    font-weight: 600;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

/* Navigation - White text for hero overlay */
.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-menu li {
    margin-left: 35px;
}

.nav-link {
    text-decoration: none;
    color: #ffffff; /* White for hero overlay */
    font-weight: 600;
    transition: all 0.3s;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #ffd700; /* Gold on hover */
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 3px;
    background: #ffd700;
    transition: width 0.3s;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Buttons - Transparent outline for hero */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    border: 2px solid #ffffff;
    background: transparent;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.btn:hover {
    background: #ffffff;
    color: #1a365d;
    transform: translateY(-2px);
}

.btn-primary {
    background: #ffd700;
    color: #1a365d;
    border-color: #ffd700;
}

.btn-primary:hover {
    background: #ffed4e;
    border-color: #ffed4e;
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.btn-secondary:hover {
    background: #ffffff;
    color: #1a365d;
}

.btn-small {
    padding: 10px 22px;
    font-size: 0.95rem;
}

/* Main Content - REMOVED the top margin */
.main-content {
    margin-top: 0; /* Changed from 80px */
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), #1a365d;
    color: white;
    padding: 180px 0 100px; /* More top padding for header */
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #1a365d;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 50px;
    color: #666;
}

/* About Section */
.about-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    text-align: center;
}

.content-image {
    max-width: 100%;
    border-radius: 10px;
}

/* Footer */
.footer {
    background: #1a365d;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section:first-child {
    flex: none;
    width: auto;
    min-width: auto;
}

.footer-section h4 {
    margin-bottom: 15px;
    color: #d4af37;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: white;
    text-decoration: none;
}

.footer-links a:hover {
    color: #d4af37;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer .footer-section .footer-logo {
    height: 80px !important;
    width: auto !important;
    max-height: 80px !important;
    max-width: none !important;
    margin-bottom: 15px;
    display: block;
}

/* Mobile Styles - FIXED SIDE MENU */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        background: none;
        border: none;
        padding: 8px;
        z-index: 1002; /* ADDED */
    }
    
    .hamburger span {
        width: 28px;
        height: 3px;
        background: #000000; /* CHANGED to black for yellow header */
        margin: 4px 0;
        transition: 0.3s;
    }
    
    /* FIXED SIDE-SLIDING MENU */
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 280px;
        height: 100vh;
        background: #ffed4e; /* CHANGED to yellow */
        flex-direction: column;
        padding: 80px 20px 20px 20px;
        transform: translateX(-100%); /* CHANGED to side slide */
        transition: transform 0.4s ease;
        z-index: 1001;
        box-shadow: 5px 0 15px rgba(0,0,0,0.2);
        margin: 0;
        gap: 0;
    }
    
    .nav-menu.active {
        transform: translateX(0); /* CHANGED to side slide */
    }
    
    .nav-menu li {
        margin: 0;
        width: 100%;
        text-align: center;
    }
    
    .nav-link {
        display: block;
        padding: 15px;
        border-bottom: 1px solid rgba(0,0,0,0.1);
        font-size: 1.1rem;
        color: #000000 !important; /* CHANGED to black for readability */
    }
    
    .nav-link::after {
        display: none;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .logo-text {
        display: flex; /* Keep text visible on mobile */
    }
    
    .hero {
        padding: 150px 0 80px; /* Adjusted for mobile */
    }
}