/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Base */
body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: #fff3e6; /* light orange background */
    color: #3a3a3a;
}

/* NAVIGATION */
.navbar {
    position: sticky;
    top: 0;
    background: #ffffffcc;
    backdrop-filter: blur(8px);
    padding: 12px;
    text-align: center;
    border-bottom: 1px solid #f0d6c2;
}

.navbar a {
    margin: 0 15px;
    text-decoration: none;
    color: #c46a3a;
    font-weight: 500;
}

.navbar a:hover {
    color: #8b3f1f;
}

/* SECTIONS */
.section {
    padding: 60px 20px;
}

/* BOX STYLE */
.box {
    max-width: 900px;
    margin: 30px auto;
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

/* HERO */
.hero {
    text-align: center;
    padding: 100px 20px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 10px;
    color: #c46a3a;
}

.hero p {
    font-size: 18px;
    color: #555;
}

/* BUTTON */
.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 18px;
    background: #c46a3a;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: 0.3s;
}

.btn:hover {
    background: #8b3f1f;
}

/* HEADINGS */
h2 {
    color: #c46a3a;
    margin-bottom: 15px;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 30px;
    color: #777;
}

/* HERO LAYOUT */
.hero {
    padding: 100px 40px;
}

.hero-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.hero-text {
    flex: 1;
    text-align: left;
}

.hero-text h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: #c46a3a;
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 25px;
    color: #555;
}

.hero-image {
    flex: 1;
    text-align: right;
}

.hero-image img {
    width: 260px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

/* MOBILE RESPONSIVE */
@media (max-width: 900px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        text-align: center;
    }

    .hero-image {
        text-align: center;
    }
}
.university {
    display: block;
    margin-top: 6px;
    font-weight: 500;
}
