@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Courgette&family=Dancing+Script:wght@400;500;600&family=Josefin+Sans:ital@1&family=Permanent+Marker&family=Raleway:ital,wght@0,300;1,600&family=Roboto+Condensed:ital,wght@1,300&family=Tilt+Prism&display=swap');

     /*******************************variables********************************/
:root{
    /*******************************colors********************************/
    --MAIN-BG-COLOR: #0D4251;
    --MAIN-LOGO-COLOR: #2896A6;
    --DESCTOP-TEXT-FONT: 1.5rem;
}

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
html {

    scroll-behavior: smooth;
}

::selection {
  background-color: var(--MAIN-LOGO-COLOR); 
  color: #000; /* Text color */
}

body {
    font-family: 'Raleway', sans-serif;
    text-transform: capitalize;
    font-size: var(--DESCTOP-TEXT-FONT);
}


/*******************************header********************************/
.header {
    display: flex; 
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    background-color: var(--MAIN-BG-COLOR);
    height: 10vh;
    padding: 4.5rem 0;
}

.header__view-more {                    
    display: none;
}

/* .header__more {
    display: flex;
    flex-direction: column;
    margin: 0 20px;
}

.header__more button {
    width: 50px;
    margin: 5px;
} */

.header__logo {
    width: 350px;
}


.header__links a{
    color: white;
    text-decoration: none;
    padding: 0 1rem;
}
.footer {
    background-color: var(--MAIN-BG-COLOR);
    color: #fff;
    height: 15rem;
    margin-top: 8rem;
}


.footer_social-media__link:any-link {
    color: #fff;
    text-decoration: none;
}

.footer_social-media i {
    margin: 5px;
}

.footer__contact {
    text-align: center;
}

.footer__contact p {
    margin-bottom: 40px;
}

.footer__contact__link:any-link {
    color: #fff;
    text-decoration: none;
    border-bottom: 1px #fff solid;
    margin: 20px;
}


/*******************************scroll bar********************************/

::-webkit-scrollbar {
    width: 10px; 
    background-color: #000; 
  }
  
  ::-webkit-scrollbar-thumb {
    background-color: var(--MAIN-LOGO-COLOR); 
    border-radius: 5px; 
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background-color: var(--MAIN-BG-COLOR); 
  }

  @media screen and (max-width: 768px) {
    .header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem;
        position: relative;
        background-color: var(--MAIN-BG-COLOR);
        z-index: 10; /* Ensure header is above swiper */
    }

    .header__logo img {
        width: 150px; /* Smaller logo */
    }

    .header__view-more {
        display: block;
        background: none;
        color: white;
        font-size: 2.5rem;
        padding: 5px 10px;
        border: none;
    }

    .header__links {
        display: none; /* Initially hidden */
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--MAIN-BG-COLOR);
        text-align: center;
        padding: 1rem 0;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 20; /* Ensure menu is above slider */
    }

    .header__links a {
        display: block;
        padding: 1rem;
    }

    .header__links.show {
        display: block;
        opacity: 1;
        visibility: visible;
    }
  }