* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Kurale", serif;
    margin: 0;
}

h1 {
    font-size: 3.5em;
}

h2 {
    font-size: 2.7em;
}

h3 {
    font-size: 2em;
}

p {
    font-size: 1.10em;
}

ul {
    list-style: none;
}

li {
    font-size: 1.45em;
}

.color-soy {
    color: rgba(60, 146, 211, 0.6);
}

button {
    color: antiquewhite;
    background-color: rgb(46, 144, 176);
    font-size: 1.4em;
    font-weight: bold;
    padding: 8px 20px;
    border-radius: 10px;
    border: 1px solid rgba(60, 146, 211, 0.6);
    box-shadow: 2px 2px 10px rgba(60, 146, 211, 0.6);
}

button:hover {
    color: antiquewhite;
    background-color: rgb(18, 83, 105);
}

.container {
    max-width: 1400px;
    margin: auto;
}

.header {
    background-color: rgb(28, 26, 26);
    padding: 15px 0;
    border-bottom: 2px rgb(180, 220, 255) solid;
}

.header__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 65px;
}

.header__nav {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    text-align: center;
    padding-bottom: 15px;
    align-items: center;
}

.header__nav-link {
    height: 50px;
    padding: 12px 14px;
    text-decoration: none;
    color: rgb(180, 220, 255);
    font-size: 0.80em;
    background-color: rgb(28, 26, 26);
    font-weight: bold;
    border-radius: 8px;
    border-bottom: 1px rgb(180, 220, 255) solid;
    border-left: 1px rgb(180, 220, 255) solid;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
    display: inline-block;
}

.header__nav-link:hover {
    background: linear-gradient(45deg, #363434, #393838);
    color: rgb(120, 179, 231);
    transform: scale(1.08);
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
    font-weight: bold;
}

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 90vh;
    color: antiquewhite;
    background-image: linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.5),
        rgba(0, 0, 0, 0.5)
    ), url("media/vg.jpeg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.hero__title {
    font-size: 2.9em;
}

.hero2 {
    background-color: rgb(207, 232, 244);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 1000px;
    color: black;
    font-family: "Kurale", serif;
    font-size: 1.2em;
    font-weight: bold;

}

.hero2__info {
    padding: 0 15px;
}

.hero2__info a{
    text-decoration: none;
    color:black
}

.hero2__info a:hover{
    text-decoration: none;
    color:black;
}

.hero2__info-link {
    text-decoration: none;
    color: inherit;
    font-weight: bold;
}


.footer {
    background-color: rgb(28, 26, 26);
    padding: 20px 0;
}
.footer__container {
    height: 150px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.footer__info-text {
    margin: 0;
    color: rgb(180, 220, 255);
    font-weight: bold;
    text-align: left;
}
.footer__social-media {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.footer__social-media-title {
    font-size: 18px;
    color: rgb(180, 220, 255);
    margin-bottom: 10px;
    font-weight: bold;
}
.footer__social-media-logos {
    display: flex;
    gap: 15px;
}
.footer__social-media-link {
    color: rgb(180, 220, 255);
    font-size: 30px;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}
.footer__social-media-link:hover {
    color: #0073e6;
}


@media (max-width: 800px) {
    .header__container {
        flex-direction: column;
        align-items: center;
    }
    
    .header__nav {
        flex-direction: column;
        align-items: center;
        padding-bottom: 0;
    }
    
    .header__nav-link {
        font-size: 1.5em;
        box-shadow: none;
        border-radius: 0;
        border: none;
        font-weight: lighter;
      
    }
    
    .header__nav-link:hover {
        color: rgba(60, 146, 211, 0.8);
        transform: none;
        border: none;
    }
    
    .hero__title{
        padding: 0 35px;
    }

    .hero2 {
        height: 1500px;
    }
    .hero2__info {
        padding: 0 35px;
    }
    
    .footer__container {
        flex-direction: column;
        align-items: center;
    }
    
    .footer__info-text {
        text-align: center;
        margin-bottom: 15px;
        font-size: 0.9em;
    }
    
    .footer__social-media-logos {
        flex-direction: row;
        gap: 15px;
    }
    
    .footer__social-media {
        flex-direction: column;
        align-items: center;
    }
}
