@font-face {
    font-family: 'SpaceGrotesk';
    src: url('../fonts/SpaceGrotesk.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
html {
    scroll-behavior: smooth;
}

@media only screen and (max-width: 600px)  {

}

#booking-container {
    max-width: 99%;
    padding: 25px 0 30px;
}

/* ============================ Header ============================ */
.site-header {
    background-color: #222;
    padding: 15px 20px;
}
.header-title{
    font-family: 'SpaceGrotesk', sans-serif;
    font-size: 2rem;
    color: #ffffff;
}

.nav-bar {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;     
    gap: 30px;               
}

.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: #ffffff;
    font-size: 1.4rem;
    transition: opacity 0.2s ease-in-out;
}

.nav-links a:hover {
    opacity: 0.7;
}

/* ============================ Body ============================ */

/* ============================ Logo ============================ */
.logo {
    text-align: center;        
    margin: 20px 0; 
    overflow: hidden;           
}

.logo img {
    width: 400px;            
    height: auto;               
    border-radius: 10px;        
}


/* ============================ Qualifications/About ============================ */

/* ============================ Qualifications ============================ */
.qualifications {
    background-color: #2C89A0;    
    padding: 40px 20px;           
    text-align: center;    
}

.qual-title {
    font-family: 'SpaceGrotesk', sans-serif;
    font-size: 2rem;
    color: #ffffff;
}

.qual-container {
    display: flex;
    justify-content: center;      
    gap: 40px;                    
    flex-wrap: wrap; 
    
                 
}

.qual-text {
    padding: 20px;
    border-radius: 10px;
    min-width: 150px;             
    flex: 1;                      
    max-width: 250px;             
    color: #ffffff;
    font-size: 1.4rem;
}


/* ============================ White Line ============================ */
.section-divider {
    background-color: #2C89A0;   
    padding: 20px 0;             
    text-align: center;
}

.divider-line {
    width: 80%;                  
    height: 2px;                 
    background-color: #2C89A0;   
    margin: 0 auto;              
}


/* ============================ About ============================ */
.about {
    background-color: #2C89A0;    
    padding: 40px 20px;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

.about-container {
    display: flex;
    justify-content: flex-start;  
    align-items: center;      
    flex-wrap: nowrap;
    width: 100%;
}

.about-image {
    flex-shrink: 0;   
}

.about-image img {
    max-width: 300px;
    width: 50%;
    height: auto;
    border-radius: 10px;
    margin-left: 20px;
    flex-shrink: 0;
}

.about-text-container {
    color: #ffffff;
    text-align: left;
    margin-left: 6.25vw;          
    flex-grow: 1;                  
    min-width: 300px;              
    display: flex;
    flex-direction: column;
    justify-content: center;       
}

.about-items {
    display: flex;                 
    gap: 20px;
    flex-wrap: nowrap;
}

.about-item {
    background-color: #2C89A0;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(164, 179, 228, 0.1);
    flex: 1;                       
    min-width: 150px;
}

.about-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.about-sub-title {
    font-size: 1.1rem;
    margin: 5px 0;
}

.about-text {
    font-size: 1rem;
    margin: 0 0 10px 0;
    color: #ffffff;
}


/* ============================ White Line ============================ */

/* ============================ Booking ============================ */
.booking {
    background-color: #2C89A0;    
    padding: 40px 20px;           
    text-align: center; 
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;           
}

.book-title {
    font-family: 'SpaceGrotesk', sans-serif;
    font-size: 2rem;
    margin-bottom: 30px;
    color: #ffffff;
}

.book-container {
    display: flex;
    justify-content: center;                    
    flex-wrap: wrap;            
    background-color: #2C89A0;  
                
    border-radius: 10px;        
}


.book-text {
    padding: 20px;
    border-radius: 10px;
    min-width: 150px;             
    flex: 1;                      
    max-width: 250px;             
    color: #ffffff;
    font-size: 1.4rem;
}
