/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

@font-face {
    font-family: 'MyFont';
    src: url('../assets/fonts/Montserrat-Bold.ttf') format('truetype'),
         url('../assets/fonts/Montserrat-Regular.ttf') format('truetype'),
         url('../assets/fonts/ShackletonTest-Regular-BF65c2f01d0f921.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

body {
    background-color: #f8f9fa;
    color: #333;
    text-align: center;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: 'MyFont', sans-serif;
}

header {
    display: flex;
    align-items: center;
    background-color: #001F3F;
    padding: 24px;
    gap: 10px;
}

.header-logo {
    width: 64px;     /* Adjust the size to fit the header */
    height: auto;     /* Maintain aspect ratio */
}

header h1 {
    font-size: 24px;
    margin-left: 20px;
    color: white;
    font-family: 'MyFont', sans-serif;
}

nav ul {
    list-style: none;
    display: flex;
    margin-right: 20px;
}

nav ul li {
    margin: 0 15px;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-size: 18px;
    padding: 8px 15px;
    border-radius: 5px;
    transition: 0.3s;
}

.nav-link:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

/* Hero Section */
.hero {
    /* background: linear-gradient(90deg, #FFD700, #001F3F); */
    color: white;
    padding: 60px 20px;
}

.hero-text h2 {
    font-size: 48px;
    margin-bottom: 10px;
    color: black;
    font-family: 'MyFont', sans-serif;
}

.hero-text p {
    font-size: 20px;
    color: black;
}

.fcublue {
    width: 80%;   /* Set the width */
    height: auto;    /* Maintain aspect ratio */
}

.fcugold {
    width: 32%;   /* Set the width */
    height: auto;    /* Maintain aspect ratio */
}


/* Access Section */
.access-section {
    display: flex;
    justify-content: center;
    gap: 20px;
    /* padding: 56px 32px; */
    max-width: 1200px;
    margin: auto;
}

.access-card {
    flex: 1;
    padding: 30px;
    background: white;
    border: 2px solid #001F3F;
    border-radius: 10px;
    text-align: center;
    padding-top: 56px;
    padding-bottom: 56px;
}

.access-card-infos {
    flex: 1;
    padding: 30px;
    background: rgb(22, 53, 100);
    border: 2px solid #001F3F;
    border-radius: 10px;
    text-align: center;
    padding-top: 56px;
    padding-bottom: 56px;
}

.access-card-infos h3 {
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 10px;
}

.access-card-infos p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #ffffff;
}

.access-card h3 {
    font-size: 24px;
    color: #001F3F;
    margin-bottom: 10px;
}

.access-card p {
    font-size: 16px;
    margin-bottom: 20px;
}

.btn {
    padding: 12px;
    font-size: 16px;
    background: #001F3F;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
}

.btn:hover {
    background: #FFD700;
    color: #001F3F;
}

.learn-more-section {
    text-align: center;
    margin-top: 20px;
}

.learn-more-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #facb2f;
    color: #0c1a2b;
    text-decoration: none;
    border-radius: 24px;
    transition: background-color 0.3s ease;
    margin-top: 56px;
}

.learn-more-btn:hover {
    background-color: #77ace6;
}

/* Footer */
footer {
    background-color: #001F3F;
    color: white;
    padding: 15px;
    margin-top: 56px;
}

.footer-link {
    color: #FFD700;
    text-decoration: none;
}

.footer-link:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
    }

    nav ul {
        flex-direction: column;
        margin: 0;
        padding: 0;
    }

    nav ul li {
        margin: 5px 0;
    }

    .access-section {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .access-card {
        width: 90%;
    }
}
