
body { font-family: 'Montserrat', sans-serif; margin: 0; line-height: 1.6; color: #52565a; } /* Main Text Color */

.navbar { 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    padding: 10px 5%; 
    background: linear-gradient(to right, #ffffff 0%, #168e6a 50%); 
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); 
    position: sticky; top: 0; z-index: 1000; 
}

.nav-links {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
}

.nav-links a { 
    margin: 0 15px; 
    text-decoration: none; 
    color: white; 
    font-weight: bold; 
    white-space: nowrap;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #f2d82e; 
}

.container { max-width: 1000px; margin: 40px auto; padding: 0 20px; }

.hero { 
    background: url('./aala2026-banner.png') no-repeat;
    /* Focus on the bottom 80% of the image to hide the top yellow sky */
    background-position: center 60%; 
    background-size: cover;
    
    height: 400px; /* Reduced height as requested */
    width: 100%; 
    display: flex; 
    align-items: center;      
    justify-content: center;   
    position: relative;
    overflow: hidden;
}

/* The clear box container */
.hero-content-box {
    background: rgba(255, 255, 255, 0.22); /* Translucent highlight */
    padding: 30px 50px; /* Balanced padding for 400px height */
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px); 
    max-width: 85%;
}

.hero-content-box h1 { 
    color: #ffffff !important;
    font-size: 2.8rem; /* Scaled for the 400px area */
    margin: 0 0 10px 0;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
}

.hero-theme { 
    color: #ffffff !important;
    font-size: 1.3rem; /* Scaled down slightly */
    line-height: 1.4;
    margin-bottom: 15px;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.4);
}

.hero-info { 
    color: #ffffff !important;
    font-size: 1rem;
    font-weight: bold;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.4);
}

.content-block h2 { 
    color: #168e6a; 
    border-bottom: 3px solid #168e6a; 
    display: inline-block; 
    margin-bottom: 20px; 
}

.highlight-red { 
    color: #fa0404; 
    font-weight: bold; 
}

.parallel-container { display: flex; gap: 20px; margin-top: 20px; }

.category-card { 
    flex: 1; 
    background: #f9f9f9; 
    padding: 20px; 
    border-radius: 8px; 
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); 
}

.video-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 30px; }
.media-box { text-align: center; }
.transport-table { width: 100%; border-collapse: collapse; margin-top: 20px; }
.transport-table th, .transport-table td { border: 1px solid #ddd; padding: 12px; text-align: left; }

.transport-table th { background-color: #168e6a; color: white; }

.footer { 
    text-align: center; 
    padding: 30px; 
    background: #168e6a; 
    color: white; 
    margin-top: 50px; 
}
