@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Ubuntu:wght@400;500;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', Arial, sans-serif;
}

body {
    height: 100vh;
    font-family: 'Poppins', Arial, sans-serif;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}
/* header */
header {
    background-color: #4b5151;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    position: relative;
    width: 100%;
    top: 0;
    z-index: 100;
}

.logo img {
    max-width: 80px; 
    border-radius: 50%; 
}

nav ul {
    list-style: none;
}

nav ul li {
    width: 100%;
    height: 60px;
    display: inline;
    margin: 0 auto;
    margin-right: 20px;
}

nav .toggle_btn{
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
}

nav a {
    text-decoration: none;
    color: rgb(252, 252, 252);
    font-weight: bold;
    font-size: 18px;
}

nav a:hover{
    text-transform: uppercase;
    color: rgb(200, 177, 177);
    scale: 2.5;
}

.dropdown_menu{
    display: none;
    position: absolute;
    right: 2rem;
    top: 60px;
    width: 300px;
    height: 0px;
    background-color: rgba(47, 28, 28, 0.5);
    backdrop-filter: blur(20px);
    border-radius: 10px;
    overflow: hidden;
    transition: height .2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dropdown_menu.open{
    height: fit-content;
}

.dropdown_menu li{
    padding: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*Body*/

/* HERO */
.hero {
    height: fit-content;
    width: fill;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #060505;
    color: #fff;
    container:inherit;
}

.hero-content {
    max-width: auto;
    margin: 0 0;
}

.hero-content h1 {
    margin-top: 1rem;
    font-size: 3rem;
    margin-bottom: 1rem;
    padding-top: 10%;
}

.hero-content h2 {
    margin-top: 1rem;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #F31559;
}

.hero-content p {
    font-size: 1.2em;
    text-align: justify;
    padding-bottom: 10%;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content:unset;
    text-align: left;
}

.text {
    max-width: 80%;
    line-height: 1;
    align-items: center;
    padding: auto;
    max-width: 700px; 
    margin: 0 0;   
    line-height: 1.5; 
    text-align: left;
    text-wrap: stable;
}

.content {
    padding: 20px;
    flex: 1;
}

.image {
    margin-left: 40px; 
    border-radius: 10px;
    overflow: hidden; 
    display: flex;
    justify-content:flex-end; 
    align-items:safe;
    position: relative;
    border-radius: 50%;
}

.image img {
    max-width: 100%; 
    height: auto;
    border-radius: 10px;
    padding: 0 auto;
    width: 500px;

}

/* SCROLL */

.scroll-section {
    background-color: #f0f0f0;
    padding: 40px;
    text-align: center;
    margin-bottom: 40px;
}

.scroll-section h2 {
    margin-bottom: 20px;
    font-size: 35px;
}

/* BLOG*/

.blog-container {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 20px;
}

.blog-content {
    width: calc(48% - 10px);
    box-sizing: border-box;
}

.blog-content h3 {
    color: #333;
}

.blog-content p {
    text-align: justify;
    margin: 10px 0; 
}

.blog-content a {
    color: #007BFF;
    text-decoration: none;
    font-weight: bold;
}

.blog-content a:hover {
    text-decoration: underline;
}

/*video container*/

.video-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}

.video-container iframe {
    width: 48%; 
    max-width: 560px;
    height: 315px; 
}

.video-description {
    width: 48%; 
}

.video-content {
    padding: 100px 30px;
}

.video-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.video-container iframe {
    width: 48%;
    max-width: 560px; 
    box-sizing: border-box;
}

.video-description {
    width: 48%;
    box-sizing: border-box;
    padding: 20px;
    background-color: #f0f0f0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.video-description h3 {
    color: #010101;
}

.video-description p {
    text-align: justify;
    margin: 10px 0; 
    flex-grow: 1; 
}

.left {
    flex-direction: row;
}

.right {
    flex-direction: row-reverse;
}
.center{
    align-items: center;
    justify-content: center;
}

/* SUBSCRIBE-FOLLOW*/

.subscribe-follow {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 40px 20px;
    background-color: #f0f0f0;
}

.subscribe,
.follow {
    text-align: center;
    max-width: 300px;
}

.subscribe h2,
.follow h2 {
    color: #333;
}

.subscribe p,
.follow p {
    margin-bottom: 20px;
}

.button {
    display: inline-block;
    padding: 10px 10px;
    background-color: #ffffff;;
    color: #000000;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.1s;
}

.button:hover {
    background-color: #000000;
    color: #ffffff;
    text-transform: capitalize;
}


/* footer */

footer {
    background-color: #141010;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}


/*@media*/
/* Responsive */

@media (max-width: 576px) {
    header {
        padding: 1rem; 
    }

    nav ul {
        display: none;
        flex-direction: column;
        align-items: center;
        margin-top: 10px;
    }

    nav ul li {
        width: 100%;
        margin: 10px 0;
        text-align: center;
    }

    nav .toggle_btn {
        display: block;
    }
    .hero-content h1 {
        font-size: 1.8rem; 
        margin-bottom: 0.5rem;
        margin-top: 20px;
        text-align: center;
    }
    .hero-content h2 {
        font-size: 1.8rem; 
        margin-bottom: 0.5rem;
        margin-top: 20px;
        text-align: center;
    }
    .hero-content p {
        font-size: 1em; 
        line-height: 1.4; 
        text-align: justify;
    }
    
    .video-container iframe {
        width: 100%;
        height: 200px;
        margin-bottom: 20px;
        align-content: center;

    }

    .video-description {
        width: fit-content;
    }

    .blog-content {
        width: 100%;
        margin-bottom: 20px;
    }

    .blog-content h3 {
        font-size: 1.2rem;
    }

    .blog-content p {
        font-size: 0.9em;
        text-align: justify;
    }

    .subscribe-follow {
        flex-direction: column;
        align-items: center;
    }

    .subscribe,
    .follow {
        width: 100%;
        margin-bottom: 20px;
    }
    .dropdown_menu{
        left: 2rem;
        width: unset;
        display: block;
    }
}

@media (max-width: 768px) {
    .blog-container {
        flex-direction: column;
    }

    .blog-content {
        width: 100%;
    }
    .video-container iframe,
    .video-description {
        width: 100%;

    }
    .subscribe-follow {
        flex-direction: column;
        align-items: center;
    }

    .subscribe, .follow {
        margin-bottom: 20px;
    }

    .text {
        flex-direction: column;
        text-align: center;
    }

    .image {
        margin: 20px 0; 
    }
}


@media (max-width: 992px) {
    nav ul{
        display: none;
    }
    nav a{
        color: #ffffff;
    }
    nav .toggle_btn{
        display: block;
    }
    .dropdown_menu{
        display: block;
    }
    .hero {
        background-size: cover; 
    }
    .hero-content {
        padding: 0 20px; 
        text-align: center; 
    }

    .text-container {
        max-width: 800px;
        margin: 0 auto;
        text-align: justify; 
    }

    .hero-content h1 {
        font-size: 2rem; 
        margin-top: 30px; 
    }

    .hero-content h2 {
        font-size: 2rem; 
        margin-top: 30px; 
    }

    .hero-content p {
        font-size: 1em; 
        line-height: 1.5;
    }
    
    .video-container iframe,
    .video-description {
        width: 100%;

    }
    
}

@media (max-width: 576px) {
    .hero {
        background-size: cover; 
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
        margin-top: 20px;
    }

    .hero-content h2 {
        font-size: 1.8rem;
        margin-top: 20px;
    }

    .hero-content p {
        font-size: 0.9em; 
    }   
}

