/* ========== GLOBAL SETTINGS ========== */

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background: #f4f6f9;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Container */
section {
    padding: clamp(60px, 8vw, 120px) 8%;
}

/* ========== NAVBAR ========== */

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 8%;
    background: white;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    nav {
    backdrop-filter: blur(10px);
}

.nav-list a {
    position: relative;
}

.nav-list a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: #e63946;
    transition: 0.3s;
}

.nav-list a:hover::after {
    width: 100%;
}

}

.logo {
    font-size: clamp(18px, 2vw, 24px);
    font-weight: bold;
    color: #e63946;
}

.nav-list {
    display: flex;
    gap: 25px;
    list-style: none;
}

.nav-list a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: 0.3s;
}

.nav-list a:hover {
    color: #e63946;
}

.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
}

/* ========== HERO SECTION ========== */

.hero {
    min-height: 100vh;
    background: url("images/hero.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    color: white;
}

.hero-content {
    background: rgba(0,0,0,0.6);
    padding: clamp(20px, 5vw, 50px);
    border-radius: 12px;
    max-width: 700px;
    width: 100%;
}

.hero h1 {
    font-size: clamp(24px, 5vw, 48px);
}

.hero p {
    margin-top: 15px;
    font-size: clamp(14px, 2.5vw, 20px);
}

.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    background: #e63946;
    color: white;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
}

.btn:hover {
    background: #c9184a;
}

/* ========== ABOUT SECTION ========== */

.about-container {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

.about-container img {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
}

/* ========== ORGAN GRID ========== */

.organ-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.organ-card {
    background: white;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.organ-card:hover {
    transform: translateY(-6px);
}

.organ-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

/* ========== STATS ========== */

.stats {
    background: #e63946;
    color: white;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    text-align: center;
}

.stat-box h2 {
    font-size: clamp(30px, 4vw, 50px);
}

/* ========== TESTIMONIALS ========== */

.testimonial-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
}

.testimonial {
    max-width: 300px;
    text-align: center;
}

.testimonial img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

/* ========== FORM ========== */
#register {
    background: #ffffff;
}

form {
    max-width: 500px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    
}

input, select, textarea {
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 14px;
    width: 100%;
}

button {
    padding: 12px;
    border: none;
    border-radius: 30px;
    background: #e63946;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background: #c9184a;
}

/* ========== FOOTER ========== */

footer {
    background: black;
    color: white;
    text-align: center;
    padding: 20px;
}
.footer-container {
    max-width: 1000px;
    margin: auto;
    line-height: 1.8;
}


/* ========== MOBILE RESPONSIVE ========== */

@media (max-width: 768px) {

    .nav-list {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        align-items: center;
        display: none;
        padding: 20px 0;
    }

    .nav-list.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .stats {
        flex-direction: column;
    }

    .about-container {
        flex-direction: column;
    }
}

/* Extra small devices */
@media (max-width: 480px) {

    .hero-content {
        padding: 20px;
    }

    section {
        padding: 60px 5%;
    }
}
#register h2{
    text-align: center;
}
.section-title{
    text-align: centerx;
}
.section-title{
    text-align: center;
}
