
@import url('https://fonts.googleapis.com/css2?family=Kaushan+Script&family=Alex+Brush&display=swap');


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

    }
    

html {
  scroll-behavior: smooth;
  
}

body.fade-out {
    opacity: 1;
}

body.loaded {
    opacity: 1;
}


:root {
    --button: #20D4F5;
    --button-accent: #189FB8;
    --light: #BAF2FC;
    --white: #FFFFFF;
    --grau: #484747;
    --black: #000000;

    --tr: 0.3s;
    --tr: all 0.3s ease;
    
    --modal: rgba(242, 245, 246, 0.811); 
}


body {
    padding: 0;
    margin: 0;  
    font-family: "Lato", sans-serif;
    font-size: 16px; 
    line-height: 1.8;    
    color: var(--grau);
    opacity: 0;
    transition: opacity 0.5s ease; 
    
    
}

a {
    text-decoration: none;
    transition: var(--tr);
    cursor: pointer; 
    
}

a:hover {
    color: var(--button);
}

.container {
    max-width: 1200px;
    padding-left: 25px;
    padding-right: 25px;
    margin: 0 auto;
   
}



.title-h1 {
    font-size: 36px;
    font-family: "Raleway", serif;
    line-height: normal;    
    color: var(--grau);
    
}

.title-h2 {
    font-size: 28px;
    font-family: "Lato", serif;
    font-weight: 400;    
    color: var(--grau);
    line-height: 1.6;
}

.title-h3 {
    font-size: 24px;
    font-family: "Raleway", serif;
    font-weight: 600;    
    color: var(--button);
  
}

h5 {
   text-transform: uppercase;
   font-size: 0.8rem;
   color: #535252;
   margin-bottom: 10px;
   margin-top: 20px;
}



.info-text {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.9;    
    color: var(--grau);
}

.text-accent {
    font-family: "Kaushan Script", cursive;  
    font-size: 33px;
    color: var(--button);
    text-transform: uppercase;
}

.text-accent-small {
    font-family: "Alex Brush", cursive;
    font-size: 30px;
    font-weight: bolder;
    color: var(--button);
    text-transform: capitalize;
    margin-right: 7px; 
}



.btn {
    border: 1.6px solid; 
    border-color: var(--button); 
    background-color: transparent; 
    color: var(--black); 
    padding: 5px 10px;  
    border-radius: 20px;
    transition: var(--tr); 
    cursor: pointer; 
    
}

.btn:hover {
    background-color: var(--button);
    color: var(--white);
    box-shadow: 0 4px 8px rgba(0, 123, 255, 0.5);
    transition: var(--tr);
}


.header {
    padding: 20px 0;
    
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}



.logo {
    width: 100%;
    height: auto;
    max-width: 150px;
   
    transition: var(--tr);  
    
}
.logo:hover {
    transform: scale(1.2); 
    opacity: 0.8; 
}


.nav {
    display: flex;
    gap: 30px;
}

.nav__link {
    text-decoration: none;
    transition: color 0.3s ease;
    color: var(--black);
}

.nav__link:hover {
    color: var(--button);
}


.social-icons {
    width: 70px;
     
    height: auto; 
    display: block; 
    margin: 0; 
    transition: var(--tr); 
}

.social-icons:hover {
    transform: scale(1.5);
    opacity: 0.8; 
}


.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 100;
}

.hamburger-line {
    width: 20px;
    height: 3px;
    background-color: var(--button);
    margin: 3px 0;
    transition: 0.4s;
}




@media screen and (max-width: 760px) {

    .logo {
        width: 100%;
    }

    .nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 50%; 
        background-color: var(--white);
        
        
        flex-direction: column;
        justify-content: center; 
        align-items: center;
        transition: 0.3s;
        z-index: 50;
        padding: 0;
        gap: 10px;
    }
    

    .nav.active {
        left: 0;
    }

    .hamburger {
        display: flex;
        position: absolute;
        right: 50px;
        top: 50%;
        transform: translateY(-50%);
    }

    .hamburger.active .hamburger-line:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .hamburger-line:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .nav__link {
        margin: 15px 0;
       
        
    }
}





.home {
    display: flex;
    flex-direction: column;
}


.cover {
    position: relative;
    width: 100%;
    height: 50%;
    overflow: hidden;
}

.cover img {
    width: 100%;
    height: 50%;
    object-fit: cover;
    display: block;
}


.title {
    padding: 2rem 1rem;
    margin: 0 auto;
    text-align: center;
}

.title-h1 {
     margin-bottom: 1rem;
    
}



@media (max-width: 1100px) {
    body {font-size: 14px;}

}
@media (max-width: 900px) {
    
    .title-h1 {font-size: 28px;}
    .title-h2 {font-size: 20px;}
    .title-h3 {font-size: 18px;}
}




.btn-group { 
    margin-top: 40px;      
    margin-bottom: 60px;
    display: flex;
    justify-content: center;
    
    gap: 24px;    
}

@media screen and (max-width: 1024px) {
    .btn-group {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px; 
        justify-content: center;
        align-items: center;
    }

    .btn {
        width: 100%; 
        text-align: center;
    }
}


@media screen and (max-width: 480px) {
    .btn-group {
        grid-template-columns: 1fr; 
    }
}

.hidden-gallery { 
    display: none; }

    
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: var(--modal);
    align-items: center;
    justify-content: center;
    touch-action: none;
}

.modal-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    transition: all 0.3s ease;
    pointer-events: none;
    user-select: none;
    -webkit-user-select: none;
}


.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100px;
    height: 100px;
    cursor: pointer;
    user-select: none;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.prev {
    left: 30px;
}

.next {
    right: 30px;
}


@media screen and (max-width: 1200px) {
    .prev {
    left: 10px;
}

.next {
    right: 10px;
}

}
@media screen and (max-width: 900px) {
    .prev, .next {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .modal-content {
        max-width: 95%;
        max-height: 95%;
    }
}



.mal-gallery {
    overflow: hidden;
    position: relative;
}

.gallery-1, .gallery-2, .gallery-3 {
    display: flex; 
    justify-content: center; 
    align-items: flex-start;
    gap: 20px; 
    margin-bottom: 10px;
}



.mal-gallery .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.mal-gallery .vertical {
    width: 250px; 
    height: 330px; 
    object-fit: cover; 
    box-shadow: 0 4px 12px rgba(3, 57, 70, 0.2);
    transition: transform 0.3s ease;
    border-radius: 8px;
}

.mal-gallery .horizontal {
    width: 330px; 
    height: 250px; 
    object-fit: cover; 
    box-shadow: 0 4px 12px rgba(3, 57, 70, 0.2);
    transition: transform 0.3s ease;
    border-radius: 8px;
}


.mal-gallery .gallery-item:hover img {
    transform: scale(1.1);
}


.modal-gallery {
    display: none;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--modal);
    justify-content: center;
    align-items: center;
}

.modal-content {
    position: relative;
    width: 90%;
    height: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
}




@media (max-width: 768px) {
    .modal-content {
        width: 100%;
        height: 100%;
    }
    .mal-gallery .vertical,
    .mal-gallery .horizontal {
        width: 100%;
        aspect-ratio: 1/1;
    }
}

@media (max-width: 1050px) {
    .gallery-1, .gallery-2, .gallery-3 {
        flex-wrap: wrap;
        justify-content: center;
    }

    .mal-gallery .vertical,
    .mal-gallery .horizontal {
        width: 100%; 
        max-width: 300px; 
        height: auto;
        margin-bottom: 20px; 
        aspect-ratio: 3/4; 
       
    }

    
}




    
    .content {
        padding: 50px 0;
        
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 40px; 

        flex-wrap: wrap;
        align-items: stretch; 

    }
    
    .content .photo {
        flex: 0 0 auto; 
        width: 30%; 
        max-width: 500px; 
    }
    
    .content .photo img {
        width: 100%; 
        height: auto;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(49, 52, 52, 0.655);
        object-fit: cover; 
    }
    
    .content .title {
        flex: 1; 
        min-width: 0;      
    
        padding: 0;
    text-align: left;  
    align-self: flex-start; 
}
    
    .content .title .info-text {
        margin-bottom: 60px;
                
    }

    @media screen and (max-width: 1000px) {
         .content .title .info-text {
        margin-bottom: 20px;
                
    }

    }


@media screen and (max-width: 768px) {
    .content {
        flex-direction: column; 
        align-items: center; 
        gap: 20px; 
    }
    
    .content .photo {
        width: 100%; 
        max-width: 400px; 
    }
    
    .content .title {
        width: 100%;
        text-align: center; 
    }
    
    .content .title .info-text {
        margin-bottom: 20px;
        text-align: center; 
    }
}



       
.footer::before {
    content: '';
    display: block;
    width: 100%; 
    height: 1px; 
    background-color: var(--button);    
    margin: 0 auto 20px auto; 
}

.footer__content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr; 
       
}

.footer__nav {
    display: flex;
    flex-direction: column; 
    align-items: center;
    gap: 14px; 
    transition: var(--tr);    
}

.footer__media {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    
}

.footer__media .logo{
    
    text-align: center;
}

.footer__info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;

}


.footer__info p, .footer__info a {
    margin: 0; 
    padding: 0; 
    
}

.footer__info  a {
    text-decoration: none;  
    color: var(--button-accent);         
    transition: transform 0.3s ease, color 0.3s ease;
}

.footer__info  a:hover {
    transform: scale(1.1);  
    color: var(--button);      
}


.save {
    display: flex; 
    justify-content: center; 
    align-items: center; 
    text-align: center;
    padding: 20px;
    
}

@media (max-width: 800px) {
  .footer__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start; 
    gap: 20px; 
  }

  .footer__nav{display: none;}

  
  
  .footer__media,
  .footer__info {
    width: 100%; 
  }
}
