@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Saira:ital,wght@0,100..900;1,100..900&display=swap');

* {
    box-sizing: border-box;
}

body {
    background-color: #3FA2D7;
    margin: 0;
    font-family: "Playfair Display", serif;
    width: 1920px;
    line-height: 1.5;
}


.topnav {
    width: 1920px;
    background-color: #1b5e83;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 20px 100px;
    align-items: center;
}

.main-nav {
    display: flex;
    list-style: none;
}

.main-nav a {
    color: #000000;
    text-decoration: none;
    padding: 10px 20px;
    font-weight: bold;
}

.main-nav a:hover {
    color: #d69e0f;
    text-decoration: none;
}


.header {
    width: 1920px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 80px 150px;
    align-items: center;
}

.header-content {
    width: 40%;
}

.header-content h1 {
    font-size: 55px;
    color: black;
    text-transform: uppercase;
}

.header-image-box {
    width: 55%;
    position: relative;
}

.rounded-img {
    width: 100%;
    border-radius: 60px; 
}

.white-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    width: 100%;
}

.white-text-overlay h2 {
    font-size: 40px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
}

.date-container {
    display: flex;
    justify-content: center;
    margin-top: -30px;
}

.date-box {
    background: white;
    padding: 15px 30px;
    margin: 0 10px;
    border: 1px solid black;
    font-weight: bold;
    font-size: 22px;
}


.scholarships {
    width: 1920px;
    margin: 0 auto;
    background-color: #D17F29; 
    padding: 80px 300px;
    text-align: center;
}

.s-links a {
    display: block;
    color: black;
    margin: 10px 0;
    font-weight: bold;
    text-decoration: underline;
    justify-content: space-around;
}

.apply-btn {
    background-color: black;
    color: white;
    padding: 10px 40px;
    border-radius: 20px;
    margin-top: 20px;
    border: none;
    
}

.history {
    width: 1920px;
    margin: 0 auto;
    padding: 100px 0;
    text-align: center;
}

.history-container {
    display: flex;
    justify-content: center;
   
}

.history-item {
    width: 450px;
}

.history-poster {
    width: 100%;
    border: 3px solid black;
    margin-bottom: 20px;
}


.headliners {
    width: 1920px;
    margin: 0 auto;
    background-color: #61C9A8;
    padding: 100px 0;
    text-align: center;
}

.headliner-card1 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px auto;
    width: 1200px;
}

.headliner-card2.reverse {
    flex-direction: row-reverse;
}

.headliner-card3 img {
    width: 350px;
    border-radius: 40px;
}

.headliner-text {
    background-color: #3FA2D7;
    padding: 40px;
    border-radius: 30px;
    width: 450px;
    margin: 0 40px;
    text-align: left;
}


.signup-area {
    width: 1920px;
    margin: 0 auto;
    padding: 100px 0;
}

.signup-flex {
    width: 1400px;
    margin: 0 auto;
    display: flex;
    background-color: #1b5e83;
}


.signup-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}








.main-footer {
    width: 1920px;
    margin: 0 auto;
    background-color: #D17F29;
    padding: 80px 0;
    text-align: center;
}

.footer-icons {
    margin-bottom: 40px;
}

.footer-icons img {
    width: 40px;
    margin: 0 15px;
}

.footer-contact {
    display: flex;
    justify-content: space-around;
    border-top: 2px solid black;
   
    padding: 40px 0;
    width: 80%;
    margin: 0 auto;
}

.copyright {
    margin-top: 40px;
    font-weight: bold;
}