/* GENERAL RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f8f8f8;
    color: #222;
}

/* ANNOUNCEMENT BAR */
.announcement-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #f78a17;
    color: white;
    text-align: center;
    padding: 8px 10px;
    font-size: 14px;
    z-index: 1100;
}

/* NAVBAR */
header {
    position: fixed;
    top: 40px;
    width: 100%;
    background-color: transparent;
    box-shadow: none;
    z-index: 1000;
}

nav {
    max-width: 1200px;
    margin: auto;
    padding: 14px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;

    background-color: transparent;   /* fully see-through */
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
}


.logo-container {
    display: flex;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
}

.logo-container img {
    height: 60px;
    width: auto;
    border-radius: 8px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: #fff;  /* menu text is now white */
    font-weight: bold;
    padding: 8px 5px;
    transition: 0.2s;
    text-shadow: 0 1px 3px rgba(0,0,0,0.7);  /* makes it readable on the photo */
}


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

/* DROPDOWN MENU */
.dropdown .dropbtn {
    cursor: pointer;
}

.dropdown-content {
    position: absolute;
    top: 35px;
    left: 0;
    background-color: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    border-radius: 8px;
    display: none;
    flex-direction: column;
    min-width: 180px;
    z-index: 10000;
}

.dropdown-content li {
    width: 100%;
}

.dropdown-content a {
    padding: 12px 15px;
    color: #333;
    font-weight: 500;
    display: block;
    white-space: nowrap;
}

.dropdown-content a:hover {
    background-color: #f7f7f7;
    color: #f78a17;
}

.dropdown:hover .dropdown-content {
    display: flex;
}

/* MOBILE RESPONSIVE */
@media (max-width: 750px) {
    nav {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        flex-direction: column;
        margin-top: 10px;
        gap: 15px;
    }

    .dropdown-content {
        position: relative;
        top: 0;
        box-shadow: none;
    }
}

/* ADD TOP PADDING SO CONTENT DOESN'T GET HIDDEN BEHIND FIXED HEADER */
main, .hero, .section {
    padding-top: 110px; /* adjust depending on header height */
}

/* HERO SECTION */
.hero {
    height: 650px;
    background: url("images/HADS.png") center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.05) 0%,
        rgba(0,0,0,0.55) 70%
    );
}

.hero-content {
    position: relative;
    color: white;
    max-width: 700px;
}

.hero h1 {
    font-size: 55px;
    margin-bottom: 15px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 25px;
}

.hero button {
    padding: 15px 35px;
    border: none;
    background-color: #f78a17;
    color: white;
    font-size: 18px;
    border-radius: 7px;
    cursor: pointer;
    transition: 0.3s;
}

.hero button:hover {
    background-color: #f78a17;
}

/* HERO STATS (HOME PAGE) */
.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    text-align: center;
}

.hero-title {
    font-size: 70px;
    letter-spacing: 4px;
    margin-bottom: 5px;
    color: #ffffff;
    text-shadow: 0 3px 6px rgba(0,0,0,0.7);
}

.hero-subtitle {
    font-size: 22px;
    margin-bottom: 10px;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.7);
}

.hero-tagline {
    font-size: 18px;
    margin-bottom: 30px;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.7);
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.hero-stat {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 14px 20px;
    border-radius: 12px;
    min-width: 130px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}

.hero-stat .number {
    font-size: 24px;
    font-weight: bold;
    color: #f78a17;
    display: block;
}

.hero-stat .label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* HERO CTA */
.hero-cta {
    display: inline-block;
    margin-top: 10px;
    padding: 14px 32px;
    background-color: #f78a17;
    color: #fff;
    border-radius: 999px;
    font-size: 18px;
    text-decoration: none;
    transition: 0.25s;
    font-weight: 600;
}

.hero-cta:hover {
    background-color: #e17910;
}

/* MESSAGE SECTION (HOME PAGE) */
.message-section {
    margin-top: 40px;
}

.message-layout {
    display: grid;
    grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
    gap: 40px;
    align-items: center;
}

.message-photo-wrapper {
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    padding: 24px;
}

.message-photo-wrapper img {
    width: 100%;
    border-radius: 16px;
    display: block;
}

.message-text h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.message-text p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 14px;
}

.message-signature {
    margin-top: 10px;
    font-style: italic;
    color: #555;
}

/* Responsive layout for message section and hero stats */
@media (max-width: 900px) {
    .message-layout {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-stats {
        gap: 10px;
    }

    .hero-stat {
        min-width: 45%;
    }
}

/* SECTIONS */
.section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

/* ABOUT */
.aboutus {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.aboutus img {
    width: 450px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.aboutus-text {
    flex: 1;
}

.aboutus-text h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.aboutus-text p {
    font-size: 18px;
    line-height: 1.6;
}

/* SERVICES */
.services-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.service-box {
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.service-box h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

/* PARTNERS */
.partners-item {
    background-color: white;
    padding: 60px 20px;
    border-radius: 10px;
    margin-top: 50px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.partners-item p {
    font-size: 18px;
    line-height: 1.6;
    font-style: italic;
}

.partners-item h4 {
    margin-top: 10px;
    color: #f78a17;
}

/* CONTACT */
.contact-form {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    font-size: 16px;
    border-radius: 6px;
    border: 1px solid #ccc;
    width: 100%;
}

.contact-form button {
    padding: 15px;
    background-color: #f78a17;
    border: none;
    color: white;
    font-size: 18px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover {
    background-color: #f78a17;
}

/* FOOTER */
footer {
    background-color: #222;
    color: white;
    padding: 35px;
    text-align: center;
    margin-top: 80px;
}

footer p {
    margin-bottom: 5px;
}

footer a {
    color: #f78a17;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Push normal pages below fixed header and announcement */
main {
    padding-top: 130px;
}

/* GALLERY PAGE */
.gallery-header {
    max-width: 1200px;
    margin: 0 auto 20px;
    padding: 0 20px;
    text-align: center;
}

.gallery-header h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.gallery-header p {
    font-size: 18px;
    color: #555;
}

.gallery-section {
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 20px;
}

.gallery-event-title {
    font-size: 26px;
    margin-bottom: 6px;
}

.gallery-event-subtitle {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gallery-item {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.gallery-item img {
    width: 100%;
    aspect-ratio: 4 / 3;
    height: auto;
    object-fit: cover;
    display: block;
}

.gallery-item .caption {
    padding: 12px 15px;
    font-size: 15px;
    color: #444;
}
