@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

* {
    box-sizing: border-box;
}

html{
    font-family: Lato, serif;
    font-size: 62.5%
}

body{
    margin: 0;
    padding: 0;
    font-size: 1.6rem;
    /*background: url("texture/grain.png") rgb(255, 255, 255);*/
    background: white;
    background-blend-mode: overlay;
}

@media screen and (max-width: 830px){
    ::-webkit-scrollbar {
        -webkit-appearance: none;
    }
}

.wrapper{
    padding: 10vh 10vw 0;
    position: relative;
}

@media screen and (min-width: 1600px) {
    .wrapper{
        padding: 10vh 15vw 0;
    }
}


@media screen and (max-width: 800px){
    .wrapper{
        background: none;
    }
}

.separator{
    height: 5vh;
}

/*************************/
/* Styling Header        */
/*************************/

.top-header{
    position: fixed;
    top: 0;
    display: flex;
    justify-content: space-between;
    gap: 10vw;
    width: 100%;
    background-color: rgba(255, 120, 1, 0.70);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    /*border-bottom: 1px solid rgba(0, 4, 42, 0.5);*/
    z-index: 55;
    box-shadow: 0 1px 50px 0 rgba(255, 120, 1, 0.5);
}

.logo a{
    display: block;
}

.logo img{
    display: block;
    max-width: 8vw;
    min-width: 80px;
    padding: 1vh 2vw;
}

/***************************/
/* Styling Navigation Bar  */
/***************************/

.nav-bar{
    padding-right: 15vw;
}

.nav-bar ul{
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-end;
    gap: 2vw;
    list-style-type: none;
    margin: 0;
    padding: 0;
    height: 100%;
}

.nav-bar a{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    color: #FFF;
    padding: 0 1vw;
    transition: background-color 0.3s ease-out, color 0.1s ease-out;
}

.nav-bar a:hover{
    color: #fd7800;
}

.nav-bar li:hover{
    background: rgba(255, 255, 255, 0.9);
    border-left: 0;
    text-decoration: 0;
    box-shadow: 0 1px 50px 0 rgba(255, 120, 1, 0.5);
}

.donate-button{
    background-color: #FFFFFF;
    margin: 0.7vw;
    border-radius: 5px;
}

.donate-button:hover{
    color: white;
    margin: 0;
    font-size: 3rem;
    transition: margin 2s, font-size 2s;
}

.donate-button a{
    color: #fd7800;
}

@media screen and (max-width: 850px){
    .nav-bar-main{
        display: none;
    }
    .nav-bar ul{
        gap: 3vh;
    }
    .nav-bar li{
        width: 100%;
    }
    .nav-bar li a{
        justify-content: left;
    }
}

/*****************************/
/* Styling Mobile Hamburger  */
/*****************************/

.hamburger-menu{
    width: 7vw;
    min-width: 30px;
    margin-right: 3vw;
}

#menu__toggle {
    display: none;
}
#menu__toggle:checked + .menu__btn > span {
    transform: rotate(45deg);
}
#menu__toggle:checked + .menu__btn > span::before {
    top: 0;
    transform: rotate(0deg);
}
#menu__toggle:checked + .menu__btn > span::after {
    top: 0;
    transform: rotate(90deg);
}
#menu__toggle:checked ~ .menu__box {
    display: block;
    left: 50vw !important;
}
.menu__btn {
    display: inline-block;
    width: 100%;
    position: relative;
    top: 15%;
    cursor: pointer;
    z-index: 1;
}
.menu__btn > span,
.menu__btn > span::before,
.menu__btn > span::after {
    position: absolute;
    width: 100%;
    height: 5px;
    background-color: #ffffff;
    transition-duration: .25s;
}
.menu__btn > span::before {
    content: '';
    top: -10px;
}
.menu__btn > span::after {
    content: '';
    top: 10px;
}
.menu__box {
    display: block;
    position: fixed;
    top: 0;
    left: 100vw;
    width: 50vw;
    margin: 0;
    padding-top: 6vh;
    padding-bottom: 1vh;
    padding-left: 1vw;
    list-style: none;
    background-color: rgb(0, 0, 0);
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
    transition-duration: .25s;
}


@media screen and (min-width: 830px){
    .hamburger-menu{
        display: none;
    }
}

/*************************/
/* Styling Mobile Header */
/*************************/

@media screen and (max-width: 830px){
    .top-header{
        justify-content: space-between;
    }
}

/*****************************/
/* Styling Header Image Menu */
/*****************************/
.hp-image-menu{
    display: block;
    height: 100vh;
    width: 100%;
}

.bg-image{
    background-image: linear-gradient(rgba(253, 120, 0, 0.05), rgba(0, 0, 0, 0.2)), url("img/turkie.jpg");
    /*background-image: url("img/turkie.jpg");*/
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 100px 1px rgba(0, 0, 0, 0.5)
}


.hp-image-texts{
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    height: 90%;
    position: relative;
    padding-top: 10vh;
    max-width: 85vw;
    padding-left: 8vw;
    color: #ffffff;
    overflow-block: hidden;
    font-weight: 750;
}

.hp-image-texts h1{
    font-size: 8rem;
    min-font-size: 30px;
    margin: 0;
}

.hp-image-subsection{
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    gap: 2rem;
}

.hp-image-button{
    background: rgb(253, 120, 0);
    padding: unset;
    width: auto;
    height: 50%;
    margin: auto 0;
}

.hp-image-button:hover{
    margin: auto 0;
}

.hp-image-button a{
    text-decoration: none;
    color: #ffffff;
    font-size: 2rem;
}

.hp-image-button a:hover{
    color: #ffffff;
}

.hp-image-subtext{
    font-size: 2.7rem;
    background: rgba(85, 85, 85, 0.6);
    border-radius: 3rem;
    width: 60%;
}

.hp-image-subtext p{
    margin: 0;
    padding: 2rem;
}

@media screen and (min-width: 800px) {
    .hp-image-texts h1{
        line-height: 15rem;
        letter-spacing: 0.2rem;
        text-transform: uppercase;
    }
}


@media screen and (max-width: 800px) {
    .hp-image-texts{
        max-width: 90vw;
        padding-left: 5vw;
        justify-content: end;
        height: 80%;
    }

    .hp-image-texts h1{
        font-size: 6rem;
    }

    .hp-image-subsection{
        display: none;
    }
}

@media screen and (max-width: 380px) {
    .hp-image-texts h1{
        font-size: 4rem;
    }
}


/*****************************/
/* Styling Bandeau */
/*****************************/

.bandeau-text h1 {
    font-size: 7rem;
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 0.2rem;
    margin: 0;
    padding: 5vh 0;
    color: #fd7800;
}

.bandeau-text p{
    font-size: 2.5rem;
}

@media screen and (max-width: 800px) {
    .bandeau-text h1 {
        font-size: 4rem;
    }
}

@media screen and (max-width: 380px) {
    .bandeau-text h1 {
        font-size: 4rem;
    }
}

/*****************************/
/* Styling Text sections */
/*****************************/


.HP-presentation-text {
    margin: 0 auto;
    display: flex;
    flex-flow: wrap;
    justify-content: space-evenly;
    padding: 5vh 0;
    width: 80vw;
    gap: 3vh 0;
    min-width: 350px;
}

.text-container {
    flex-flow: column wrap;
    gap: 1rem;
    height: 100%;
}

.card-white {
    background-color: rgba(255, 255, 255, 0.95); /* Slightly transparent white background */
    border-radius: 1rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    padding: 2.5rem;
    text-align: center;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    display: flex; /* Use flexbox for vertical alignment */
    align-items: center; /* Vertically center content */
    justify-content: center; /* Horizontally center content */
    /*height: 100%;*/
}

.card-white:hover {
    transform: translateY(-8px); /* Lift the card slightly on hover */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15); /* Enhance shadow on hover for a more prominent effect */
}

.clickable-card {
    display: block;
    text-decoration: none;
    color: inherit;
    /*flex: 1 1 calc(50% - 3rem);*/
    width: 40%;
    /*min-width: 350px;*/
}

.text-container h2 {
    font-size: 4rem;
    text-align: center;
}

.text-container p {
    font-size: 2rem;
    margin: 0;
    line-height: 1.5;
    flex-grow: 1;
}

.text-container p .orange {
    color: #fd7800;
}

.icon-title-container{
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    gap: 5%;
    width: 100%;
}

.icon-title-container h2{
    position: relative;
    flex: 4;
    text-align: left;
}

.icon-title-container h2::after {
    content: "";
    position: absolute;
    background-color: #fd7800;
    width: 70%;
    height: 10px;
    bottom: -15px; /* Adjust the distance from the text as needed */
    left: 25%; /* Adjust the shift to the right as needed */
}

.icon-title-container svg{
    height: 100%;
    width: 15%;
}

@media screen and (max-width: 850px) {

    .text-container p{
        font-size: 2rem;
    }

    .clickable-card{
        width: 100%;
    }
}

@media screen and (max-width: 1200px) {
    .icon-title-container h2{
        font-size: 2.7rem;
    }
}

/*****************************/
/* Styling Footer sections   */
/*****************************/

.footer {
    background: #0a0601; /* Dark background */
    color: #ffffff;
    padding: 4rem 2rem 2rem; /* Top padding, side padding, bottom padding */
    font-size: 1.6rem;
    line-height: 1.6;
    text-align: center; /* Default for mobile */
}

.footer-content {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    justify-content: space-around;
    gap: 10rem; /* Space between columns */
    margin: 0 10vw; /* Center the content */
    padding-bottom: 2rem;
}

.footer-section {
    flex: 1 1 300px; /* Allow sections to grow/shrink, min-width 300px */
    margin-bottom: 2rem; /* Space between sections on wrapped layout */
}

.footer-section h3 {
    color: #fd7800; /* Orange color for headings */
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    position: relative; /* For the underline effect */
    display: inline-block; /* To make the underline fit the text */
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 50%; /* Center the pseudo-element */
    transform: translateX(-50%); /* Adjust for perfect centering */
    bottom: -0.5rem; /* Distance from text */
    width: 60%; /* Width of the underline */
    height: 3px;
    background-color: #fd7800;
    border-radius: 2px;
}

.footer-section p {
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
    font-size: 1.8rem;
}

.footer-section a:hover {
    color: #fd7800; /* Orange hover effect */
}

.social-links {
    display: flex;
    justify-content: center; /* Center icons on mobile */
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.social-links img {
    width: 32px; /* Adjust size as needed */
    height: 32px;
    border-radius: 50%;
    transition: transform 0.3s ease-in-out;
}

.social-links img:hover {
    transform: translateY(-3px); /* Subtle lift on hover */
}


.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1); /* Subtle separator */
    padding-top: 2rem;
    margin-top: 2rem;
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive adjustments for desktop */
@media screen and (min-width: 768px) {
    .footer-section {
        text-align: left;
        margin-bottom: 0;
    }

    .footer-section h3::after {
        left: 0; /* Align underline to left for desktop */
        transform: translateX(0);
    }

    .social-links {
        justify-content: flex-start; /* Align icons to left for desktop */
    }
}

/* Responsive adjustments for smaller mobile screens */
@media screen and (max-width: 480px) {
    .footer {
        padding: 3rem 1.5rem 1.5rem;
    }

    .footer-content {
        gap: 2rem;
    }

    .footer-section h3 {
        font-size: 2rem;
    }

    .footer-section p,
    .footer-section a {
        font-size: 1.6rem;
    }

    .social-links img {
        width: 28px;
        height: 28px;
    }
}
