/* --- 1. General Styles --- */
body { 
    margin: 0; 
    font-family: 'Roboto', sans-serif; 
    line-height: 1.6; 
    color: #333; 
    background: #f4f4f4; 
    scroll-behavior: smooth;
}

h1, h2, .logo-text, .social-icon { 
    font-family: 'Oswald', sans-serif; 
    text-transform: uppercase; 
    letter-spacing: 1px;
}

/* --- 2. Navigation Bar --- */
/* --- 2. Navigation Bar (White Background & Larger Logo) --- */
nav { 
    background: #ffffff; 
    padding: 1rem 5%; /* Increased padding for a taller nav bar */
    position: sticky; 
    top: 0; 
    z-index: 1000; 
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-bottom: 1px solid #eee;
}

.nav-container {
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    max-width: 1400px;
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 20px;
}

.nav-logo img {
    height: 100px; /* Increased from 50px - change this number to go even bigger */
    width: auto;
    transition: transform 0.3s ease;
}

.nav-logo img:hover {
    transform: scale(1.05); /* Subtle pop when hovering over the logo */
}

.logo-text { 
    color: #1a1a1a;
    font-size: 1.5rem; /* Made text a bit larger to match the bigger logo */
    font-weight: 700;
}

nav ul { 
    display: flex; 
    list-style: none; 
    gap: 30px; 
    margin: 0;
    padding: 0;
}

nav ul li a { 
    color: #333; 
    text-decoration: none; 
    font-weight: bold; 
    font-size: 1rem;
    text-transform: uppercase;
    transition: 0.3s; 
}

/* Responsive adjustment for mobile */
@media (max-width: 768px) {
    .nav-logo img {
        height: 60px; /* Scales down on phones so it fits better */
    }
    .logo-text {
        font-size: 1.1rem;
    }
}

/* --- 3. Hero Section (using duc.jpeg) --- */
.hero { 
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.7)), url('duc.jpeg'); 
    background-size: cover; 
    background-position: center;
    background-attachment: fixed; /* Creates a parallax effect */
    height: 80vh; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-align: center; 
    color: white; 
}

.main-logo { 
    max-width: 280px; 
    filter: drop-shadow(0px 5px 15px rgba(0,0,0,0.5));
    margin-bottom: 10px;
}

.hero h1 {
    font-size: 3.5rem;
    margin: 0;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
}

/* --- 4. Content Sections --- */
.content-section, .events-section, .shop-section, .contact-section { 
    padding: 80px 10%; 
    text-align: center; 
}

.welcome-box { 
    max-width: 800px; 
    margin: 0 auto; 
    background: #fff; 
    padding: 40px; 
    border-left: 6px solid #E67E22; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* --- 5. Buttons --- */
.cta-button { 
    background: #E67E22; 
    color: white; 
    padding: 14px 35px; 
    text-decoration: none; 
    font-weight: bold; 
    border-radius: 5px; 
    border: none; 
    cursor: pointer; 
    display: inline-block;
    transition: 0.3s;
    text-transform: uppercase;
}

.cta-button:hover { 
    background: #d35400; 
    transform: translateY(-2px);
}

/* --- 6. Events Section --- */
.events-section { 
    background-color: #1a1a1a; 
    color: white; 
}

.event-list { 
    display: flex; 
    flex-direction: column; 
    gap: 15px; 
    margin-top: 30px; 
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.event-card { 
    background: #2a2a2a; 
    color: white; 
    padding: 20px; 
    border-radius: 8px; 
    display: flex; 
    text-align: left; 
    border-left: 4px solid #E67E22; 
}

.event-card.highlight { 
    background: #E67E22; 
    color: #1a1a1a; 
}

.event-date { min-width: 140px; font-weight: bold; font-family: 'Oswald'; }

/* --- 7. Shop Section --- */
.product-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 30px; 
}

.product-card { 
    background: white; 
    padding: 25px; 
    border-radius: 10px; 
    position: relative; 
    opacity: 0.85; 
    transition: 0.3s; 
}

.product-card:hover { 
    opacity: 1; 
    transform: scale(1.02); 
}

.badge { 
    position: absolute; 
    top: 10px; 
    right: 10px; 
    background: #1a1a1a; 
    color: #fff; 
    padding: 4px 10px; 
    font-size: 0.7rem; 
    border-radius: 10px; 
}

.product-image-placeholder { 
    background: #eee; 
    height: 180px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    margin-bottom: 15px;
    font-weight: bold;
    color: #999;
}

/* --- 8. Forms --- */
.contact-form { 
    max-width: 500px; 
    margin: 40px auto; 
    display: flex; 
    flex-direction: column; 
    gap: 15px; 
}

.contact-form input, .contact-form textarea, .form-select { 
    padding: 12px; 
    border: 1px solid #ddd; 
    border-radius: 5px; 
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
}

/* --- 9. Footer --- */
footer { 
    background: #111; 
    color: white; 
    padding: 50px 20px; 
    text-align: center; 
}

.social-links { 
    margin-bottom: 25px; 
    display: flex; 
    justify-content: center; 
    gap: 30px; 
}

.social-icon { 
    color: #E67E22; 
    text-decoration: none; 
    font-size: 1.1rem; 
    transition: 0.3s;
}

.social-icon:hover { color: #fff; }

.admin-link { 
    display: block; 
    margin-top: 25px; 
    font-size: 0.75rem; 
    color: #444; 
    text-decoration: none; 
    opacity: 0.5; 
}

.admin-link:hover { opacity: 1; color: #E67E22; }

/* --- 10. Mobile Responsiveness --- */
@media (max-width: 768px) {
    .nav-container { flex-direction: column; gap: 10px; }
    .hero h1 { font-size: 2.2rem; }
    .event-card { flex-direction: column; }
    .event-date { margin-bottom: 5px; }
    .logo-text { font-size: 1rem; }
}