:root {
    --primary-color: #1D6AB9;
    --font-main: "Nunito", sans-serif;
    --font-alt: "Sofia Sans", sans-serif;
    --bg-image: url('/assets/img/saysen-bg.jpg');
    
    --font-xl: 2.5rem;
    --font-lg: 2rem;
    --font-md: 1.8rem;
    --font-sm: 1.5rem;
    --font-xs: 1.125rem;
    --font-xxs: 0.875rem;

    --container-width: 1200px;
    --gap: 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-main);
}

body {
    background-image: var(--bg-image);
    background-repeat: no-repeat;
    background-size: cover;

}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 20px;
}

.header h1 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 50px;
    font-size: var(--font-xl);
    font-weight: bold;
}

.content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: var(--gap);
}

.left-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.logo-container {
   width: 60px;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;

}

.logo {
    width: 100%;
    height: auto;
}

.location {
    font-weight: bold;
    font-size: var(--font-md);
    color: var(--primary-color);
    margin-bottom: 10px;
}

.contact-info {
    font-size: var(--font-xxs);
    line-height: 1.5;
    font-family: var(--font-alt);
}

.contact-info p {
    margin-bottom: 5px;
    color: var(--primary-color);
}

.contact-info p a {
    text-decoration: none;
    color: var(--primary-color);
}

.right-section{
    flex: 2;
}

.video-section {
    
    min-width: 300px;
    aspect-ratio: 16/9;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: var(--font-sm);
}

.footer {
    text-align: center;
    margin-top: 30px;
    color: var(--primary-color);
    font-weight: bold;
    font-size: var(--font-lg);
}

.social-media {
    display: flex;
    justify-content: center;
    font-family: var(--font-alt);
     color: var(--primary-color);
}

.social-icon {
    font-size: var(--font-sm);
    color: var(--primary-color);
    margin: 0 10px;
}

.address-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-top: 20px;
    width: 100%;
}

.box-2 {
    margin-top: 30px;
}

.box-3 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}
.box-3 a{
    text-decoration: none;
    display: flex;
    align-items: center;
}

/* Responsive */
@media (max-width: 768px) {
    body{
        height: auto;
        background-position-x: 9%;
    }
    .content {
        flex-direction: column-reverse;
    }
      .header h1 {
        font-size: var(--font-md);
        margin-bottom: 10px;
    }

    .video-section {
        width: 100%;
    }
        .mobile-logo-container{
        display: flex;
        max-width: 100%;
        flex-direction: row;
        margin: 10px 30px;
        align-items: center;
        justify-content: center;
        gap: 20px;
    }
     .logo-container{
        display: none;
    }
    .first-logo{
       width: 50px;
       height: 100%;
    }
    .second-logo{
        width: 50px;
        
    }
    .location{
        font-size: var(--font-sm);
    }
    .header{
        padding: 30px 50px;
    }
 
}
@media (min-width: 769px) {
    .mobile-logo-container{
        display: none;
    }
    .logo-container{
        display: flex;
        
    }
}

@media (max-width: 480px) {
    .container {
        padding: 10px;
    }

    .footer {
        font-size: var(--font-sm);
    }

}

@media (min-width:1400px) {
    body{
        height: 100dvh;
    }
    .container {
    max-width: calc(100vw - 200px);
    height: 100%;
    align-content: center;
}
.logo-container{
    width: 120px;
}
}