

/*Main Styles*/

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #eee;
}

header img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

nav {
    background-color: #333;
    display: flex;
    justify-content: center;
}

nav a {
    color: white;
    padding: 14px 20px;
    text-decoration: none;
    text-align: center;
    }

nav a:hover {
    background-color: #575757;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.divider {
    border: none;
    border-top: 2px solid #ccc;
    margin: 20px auto;
    width: 60%;
}

.standard-header {
    text-align: center;
    margin: 40px 0 40px;
}


/*Index*/
.video-section {
    text-align: center;
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

iframe {
    width: 100%;
    max-width: 800px;
    height: 450px;
    border: none;
}


/*About Us*/
.person_pants {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
    background-color: #FFDE91;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.person_lambo {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
    background-color: #ED843E;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.person_punk {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
    background-color: #8E3BB3;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.person_slotad {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
    background-color: #91CCF5;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
 }

.person_daad {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}  

.person-text {
    flex: 1 1 60%;
    padding-right: 20px;
}   

.person-img {
    flex: 1 1 35%;
    text-align: right;
}

.person-img img {
    width: 100%; /* or larger if you like */
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .person {
        flex-direction: column-reverse;
        text-align: center;
    }

    .person-text, .person-img {
        flex: 1 1 100%;
        padding: 0;
    }

    .person-img {
        margin-bottom: 10px;
    }
}


/*Socials*/
h1 {
    margin-bottom: 30px;
}

.social-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

    .social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: black;
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    width: 120px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: transform 0.2s;
    }

    .social-link:hover {
    transform: scale(1.05);
    }

    .social-link img {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
    }

    .social-link span {
    font-weight: bold;
    }

    @media (max-width: 600px) {
      .social-link {
        width: 100px;
        padding: 15px;
      }

      .social-link img {
        width: 50px;
        height: 50px;
      }
    }