/* Import Rockwell Font (if needed) */
@font-face {
    font-family: 'Rockwell';
    src: url('assets/Rockwell.ttf'); /* Ensure the font file is in the project */
}

body {
    font-family: 'Rockwell', serif;
    background: url('background-placeholder.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #555555;
    margin: 0;
    padding: 0;
    text-align: center;
}

/* Main Container */
.container {
    max-width: 1000px;
    margin: 0 auto;
    background-color: #8ca1a7;
    padding: 20px;
    border-radius: 10px;
}

/* Header */
header {
    background-color: #0f233b;
    color: #eef1f6;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

nav {
    display: flex;
    gap: 15px;
}

.btn-top {
    background-color: #b0d8e3;
    color: #0f233b;
    padding: 8px 15px;
    text-decoration: none;
    border-radius: 5px;
}

/* Banner */
.banner img {
    width: 100%;
    max-height: 250px;
    object-fit: cover;
}

/* Main Content */
h1 {
    font-size: 24px;
    margin-bottom: 20px;
}

.content-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background-color: #bcc7cc;
    margin: 0 auto;
    width: 90%;
    border-radius: 8px;
}

.text-box {
    width: 60%;
}

.side-image img {
    width: 200px;
    border-radius: 8px;
}

/* Icons Section */
.icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.icon {
    text-align: center;
}

.icon img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

/* Register Button */
.register-container {
    margin: 20px 0;
}

.btn-register {
    background-color: #e7d49a;
    color: #0f233b;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
}

/* Footer */
footer {
    background-color: #0f233b;
    color: #eef1f6;
    padding: 10px;
    margin-top: 20px;
}

.footer-links {
    margin: 10px 0;
}

.footer-links a {
    color: #eef1f6;
    text-decoration: none;
    margin: 0 10px;
}

.social-media img {
    width: 50px;
    margin: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-box {
        flex-direction: column;
        width: 90%;
    }

    .text-box, .side-image {
        width: 100%;
    }

    .icons {
        flex-wrap: wrap;
    }

    .icon img {
        width: 60px;
        height: 60px;
    }
}
