/* --- Basic Setup & Body Styling --- */
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #fdc533;
    font-family: 'Libre Baskerville';
    color: #000;
    
    flex-direction: column;
    min-height: 100vh;
}

.container {
    width: 95%;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
}

.container-fluid {
    padding-left: 0;
    padding-right: 0;
}

/* --- Header and Navigation --- */
.site-header {
    padding: 1rem 0rem;
}

.navbar-logo {
  max-height: 100px;
  width: auto;
}

nav {
    background-color: #fdc533;
    font-family: 'Exo';
    width: 95%;
    margin: 0 auto;
}

.nav-item {
    margin-left: 1.5rem;
}

.nav-link {
    color: black;
}

.nav-link.active {
    text-decoration: underline;
    text-underline-offset: 7px;
}

.btn-register {
    background: #fdc533;
    color: #fff;
    border: 2px solid white;
    border-radius: 0.5rem;
    font-weight: bold;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.10);
    transition:
        color 0.15s,
        background 0.15s,
        box-shadow 0.15s,
        transform 0.1s;
    font-size: 1.2rem;
    /* Increased font size */
    padding: 0.65rem 1.8rem;
    /* Increased padding */
}

.btn-register:hover,
.btn-register:focus {
    background: #fff;
    color: #fdc533;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    transform: translateY(-1px) scale(1.01);
    border-color: #fdc533;
}



/* --- Home Section --- */

.center-content {
    flex-grow: 1; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.main-logo {
    width: 250px; /* Adjust size as needed */
    height: auto;
    margin-bottom: 2rem;
}

.side-logo {
    width: 100%; /* Adjust size as needed */
    height: auto;
}

.main-title {
    font-size: 4rem; /* Large font size */
    font-weight: 400;
    margin: -1rem 0 0 0;
}

.subtitle {
    font-style: italic;
    font-size: 3rem;
    margin: 1rem 0 0 0;
}

.site-footer-bottom {
    padding: 1.5rem;
    text-align: center;
    color: white;
    font-size: 0.85rem;
    max-width: 800px;
    margin: 0 auto;
    font-style: italic;
    font-family: 'Exo';
}


/* --- Logistics Section --- */

.logistics-lead {
    padding-top: 4rem;
    padding-bottom: 0rem;
}

.logistics-details {
    padding: 4rem 0 2rem 0;
    margin-top: 1rem;
    position: relative;
}

.card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
}

.card-body {
    padding: 1.5rem;
}

.card-text {
    font-size: 0.95rem;
    color: #555;
    font-family: 'Exo';
}

.card-img-top {
    height: 300px;
    object-fit: cover;
    width: 100%;
}



/* --- Team Section --- */

.team-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.team-bio {
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: center;
}

.team-bio a {
    color: #000;
    text-decoration: underline;
}

.team-bio a:hover {
    color: #333;
}

.faq-list .mb-4 {
    border-bottom: 1px solid #ffe082;
    padding-bottom: 1.2rem;
    margin-bottom: 2rem;
}

.faq-list strong {
    font-size: 1.2rem;
    color: black;
    display: block;
    margin-bottom: 0.5rem;
}

.faq-list p {
    margin-bottom: 0;
}






.site-footer-social {
    padding-bottom: 2rem !important;
}

.site-footer-social a {
    text-decoration: none;
}

.site-footer-social i {
    font-size: 2rem;
    color: black;
}

.footer-contact {
    font-size: 0.95rem;
    color: black;
    font-family: 'Exo';
}

.footer-contact a {
    color: black;
    text-decoration: underline;
    display: block;
}

.footnote {
    font-size: 0.75rem;
    color: black;
    margin-top: 1rem;
    font-style: italic;
    font-family: 'Exo';
}


/* --- Contact section --- */
/* .contact-section {
    padding-bottom: 5rem;
}

.form-label {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.form-control {
    background-color: transparent;
    border: 1px solid #000;
    border-radius: 25px;
    padding: 0.75rem 1.25rem;
    color: #000;
}

.form-control:focus {
    background-color: transparent;
    border-color: #000;
    color: #000;
    box-shadow: none;
}

.form-check-input {
    border-color: #000;
}
.form-check-input:checked {
    background-color: #000;
    border-color: #000;
}
.form-check-input:focus {
    box-shadow: none;
}

.btn-submit {
    background-color: #000;
    color: #fdc533;
    border-radius: 50px;
    padding: 12px 40px;
    border: 2px solid #000;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #33280d;
    color: #fdc533;
} */