*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior: smooth;
}

body{
    background:white;
    color:#222;
    line-height:1.6;
    font-family: 'Inter', sans-serif;

    a {
        color: #ff4d8d;
        text-decoration: none;
    }
}

h1,h2,h3{
    font-family: 'Playfair Display', serif;
}

#hamburger{
    display:none;
    flex-direction:column;
    cursor:pointer;
    gap:5px;
}

#hamburger span{
    width:25px;
    height:3px;
    background:#333;
    display:block;
}

#hamburger {
    display:none;
    flex-direction:column;
    gap:6px;
    cursor:pointer;
    width:30px;
}

#hamburger:hover span {
    background:#ff4d8d;
}

#hamburger span{
    height:3px;
    width:100%;
    background:#333;
    transition:all .3s ease;
    display:block;
}


#hamburger.active span:nth-child(1){
    transform:rotate(45deg) translate(6px,6px);
}

#hamburger.active span:nth-child(2){
    opacity:0;
}

#hamburger.active span:nth-child(3){
    transform:rotate(-45deg) translate(6px,-6px);
}

header {
    position:sticky;
    top:0;
    background:rgba(255,255,255, 1);
    backdrop-filter:blur(10px);
    z-index:1000;
}

#navbar{
    position:sticky;
    top:0;
    background:rgba(255,255,255,0.9);
    backdrop-filter:blur(10px);
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 40px;
    border-bottom:1px solid #eee;
    z-index:1000;
    margin: auto;
    max-width: 1600px;
}

#navbar a{
    margin-left:20px;
    text-decoration:none;
    color:#333;
    font-weight:500;
}

.logo{
    font-size:rem(22px);
    font-weight:bold;
    max-height: 80px;

    img {
        max-height: 80px;
        width: auto;
    }
}

.hero-slider{
    position:relative;
    height:80vh;
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:center;
}

.slide{
    position:absolute;
    width:100%;
    height:100%;
    opacity:0;
    transition:opacity 1s ease;
}

.slide.active{
    opacity:1;
}

.slide img{
    width:100%;
    height:100%;
    object-fit:cover;
    animation:zoom 10s ease infinite;
}

@keyframes zoom{
    0%{
        transform:scale(1);
    }

    100%{
        transform:scale(1.1);
    }
}

.hero-overlay{
    position:relative;
    z-index:5;
    color:white;
    text-align:center;
    background:rgba(0,0,0,0.5);
    padding:50px;
    border-radius:10px;
}

.prev,
.next{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    background:rgba(0,0,0,0.5);
    color:white;
    border:none;
    font-size:24px;
    font-weight: 300;
    padding:10px 20px;
    cursor:pointer;
    z-index:3;
}

.prev{left:20px;}
.next{right:20px;}

.dots{
    position:absolute;
    bottom:20px;
    left:50%;
    transform:translateX(-50%);
    display:flex;
    gap:10px;
    z-index:3;
}

.dot{
    width:12px;
    height:12px;
    border-radius:50%;
    background:white;
    opacity:0.5;
    cursor:pointer;
}

.dot.active{
    opacity:1;
}


.hero{
    height:80vh;
    background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)), url("img/hero.jpg");
    background-size:cover;
    background-position:center;
    background-attachment:fixed;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
}

.hero-overlay{
    color:white;
    max-width:800px;
    padding:rem(40px);
}

.hero h1{
    font-size:rem(72px);
    font-weight:700;
    letter-spacing:-2px;
    margin-bottom:rem(15px);

}

.hero p{
    font-size:rem(22px);
    margin-bottom:rem(30px);
    opacity:0.9;
}

.hero-overlay{

    animation:fadeUp 1.2s ease;

}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(40px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}

.hero-buttons{
    display:flex;
    gap:15px;
    justify-content:center;
    margin-top: 15px;
}

.btn{
    background:#ff4d8d;
    padding:14px 28px;
    border-radius:8px;
    text-decoration:none;
    color:white;
}

.btn:hover {
    background: #e63e7b;
}

.btn-secondary{
    background:white;
    padding:14px 28px;
    border-radius:8px;
    text-decoration:none;
    color:black;
}



.about{
    padding:80px 20px;
    text-align:center;
    max-width:800px;
    margin:auto;
}

.coffee-info {
    padding-bottom: 20px;
    display: flex;
    flex-direction: row;
}

.coffee-info img{
    max-width:160px;
    width:100%;
    height:auto;
    display:block;
    margin:15px auto;
}


.iceCream-info {
    /*padding-top: 20px;*/
    padding-bottom: 20px;
}

.iceCream-brandPhotos {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.iceCream-brandPhotos {
    img:first-child {
        margin-right: 25px;
    }

    img:last-child {
        margin-left: 25px;
    }
}

.iceCream-catalog {
    height: 500px;
    width: 25%;
    margin-top: 25px;
    margin-bottom: 25px;
}

.menu{
    padding: 120px 20px 20px 20px;
    text-align:center;
    background:#f5f5f5;
}

.menu-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:30px;
    max-width:900px;
    margin:40px auto;
}

.menu-item{
    background:white;
    padding:30px;
    border-radius:10px;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
    transition:transform .2s;
}

.menu-item:hover{
    transform:translateY(-5px);
}



.gallery{
    padding: 120px 20px 20px 20px;
    text-align:center;
}

.gallery-grid{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
    margin-top:40px;
}

.gallery img{
    width:250px;
    border-radius:10px;
    transition:transform .3s;
    /*transform: rotate(90deg);*/
    cursor:pointer;
}

.gallery img:hover{
    /*transform: rotate(90deg) scale(1.05);*/
    transform: scale(1.05);
}

.gallery-wrapper{
    overflow:hidden;
    max-width:1600px;
    margin:auto;
    margin-top:25px;
    position:relative;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
}

.gallery-track{
    display:flex;
    gap:20px;
    transition:transform .6s ease;
    will-change:transform;
}

.gallery-track img{
    flex:0 0 calc((100% - 40px) / 3);
    border-radius:10px;
    cursor:pointer;
    aspect-ratio:3/4;
    object-fit:cover;
    scroll-snap-align:start;
}


.reviews{
    padding: 120px 20px 20px 20px;
    text-align:center;
}

.reviews-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
    max-width:900px;
    margin:auto;
    padding-top: 20px;
}

.review{
    background:#f5f5f5;
    padding:25px;
    border-radius:10px;
    display:flex;
    flex-direction:column;
}

.review span{
    margin-top:auto;
    font-weight:500;
}

.btn-google{
    display:block;
    width:fit-content;
    margin:40px auto;
    background:#ff4d8d;
    color:white;
    padding:14px 28px;
    border-radius:8px;
    text-decoration:none;
    font-weight:500;
    transition:all .2s ease;
}

.btn-google:hover{
    background:#e63e7b;
    transform:translateY(-2px);
}

.welcome {
    text-align: center;
    padding: 120px 20px 20px 20px;
    background:#f5f5f5;
}

.welcomePhoto {
    width: 100%;
    max-width: 1200px;
    height: auto;
    padding-top: 25px;
}

.location{
    padding: 120px 20px 20px 20px;
    text-align:center;
    background: #FFFFFF;

    a {
        text-decoration: none;
        color: #222222;
    }
}

.locationPhoto {
    width: 100%;
    height: auto;
    padding: 15px 0;

    img {
        max-width: 100%;
    }
}

.map{
    margin-top:40px;
    display:flex;
    justify-content:center;
}

.map iframe{
    width:80%;
    height:400px;
    border:0;
    border-radius:10px;
}


.map-info {
    font-size: 14px;
    color: #555;
    margin-top: 10px;
    max-width: 500px;
}

.map-wrapper {
    position: relative;
    margin-top: 30px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    min-height: 450px;
}

.map-wrapper iframe {
    width: 100%;
    height: 450px;
    border: 0;
}

.map-consent {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.map-consent__inner {
    max-width: 420px;
}

.map-consent__icon {
    font-size: 42px;
    display: block;
    margin-bottom: 10px;
}

.map-consent__inner h3 {
    margin-bottom: 10px;
    font-size: 22px;
}

.map-consent__inner p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.map-consent__inner a {
    text-decoration: underline;
}

.map-consent__actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.map-consent__accept {
    padding: 12px 18px;
    background: #ff4d8d;
    color: #fff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s ease;
}

.map-consent__accept:hover {
    background:#e63e7b;
    transform: translateY(-1px);
}

.map-consent__external {
    font-size: 14px;
    color: #333;
    text-decoration: none;
}

.map-consent__external:hover {
    text-decoration: underline;
}

.map-wrapper iframe {
    opacity: 0;
    transition: opacity 0.4s ease;
}

.map-wrapper iframe.active {
    opacity: 1;
}


footer{
    padding:30px;
    text-align:center;
    background:#222;
    color:white;
}

.fade{
    opacity:0;
    transform:translateY(40px);
    transition:all .8s ease;
}

.show{
    opacity:1;
    transform:translateY(0);
}


/* Lightbox */

.lightbox{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.9);
    display:none;
    align-items:center;
    justify-content:center;
    z-index:9999;
}

.lightbox.active{
    display:flex;
}

.lightbox-img{
    max-width: 80%;
    max-height: 80%;
    border-radius: 10px;
    /*rotate: 90deg;*/
}

.lightbox-close{
    position:absolute;
    top:30px;
    right:40px;
    color:white;
    font-size:40px;
    cursor:pointer;
}

.mobile-bar{
    position:fixed;
    bottom:0;
    left:0;

    width:100%;

    background:white;

    display:flex;
    justify-content:space-around;

    padding:12px 0;

    box-shadow:0 -5px 20px rgba(0,0,0,0.15);

    z-index:999;

}

.mobile-bar a{

    display:flex;
    flex-direction:column;
    align-items:center;

    text-decoration:none;
    color:#333;

    font-size:14px;

}

.mobile-bar span{
    font-size:12px;
    margin-top:4px;
}

@media (min-width:768px){
    .-mobileVisible {
        display: none;
    }

    .locationPhoto {
        max-width: 1200px;
        margin: auto;
    }
}



.privacy-policy {
    max-width: 800px;
    margin: 60px auto;
    padding: 20px;
    line-height: 1.7;
    color: #333;
    font-family: system-ui, -apple-system, sans-serif;
}

.privacy-policy h1 {
    font-size: 32px;
    margin-bottom: 20px;
    text-align: center;
}

.privacy-policy h2 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 10px;
    color: #ff4d8d;
}

.privacy-policy p {
    margin-bottom: 15px;
    font-size: 15px;
}

.privacy-policy ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.privacy-policy li {
    margin-bottom: 8px;
}

.privacy-policy a {
    color: #ff4d8d;
    text-decoration: none;
    font-weight: 500;
}

.privacy-policy a:hover {
    text-decoration: underline;
}

.privacy-policy h2::after {
    content: "";
    display: block;
    width: 40px;
    height: 3px;
    background: #ff4d8d;
    margin-top: 5px;
    border-radius: 2px;
}

.privacy-policy {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}



@media (max-width:768px) {
    .-mobileVisible {
        display: flex;
    }

    .iceCream-catalog {
        display: none;
    }

    .logo {
        max-height: 60px;
    }

    #nav-menu{
        position:absolute;
        top: 100px;
        left:0;
        width:100%;
        background:white;
        flex-direction:column;
        align-items:center;
        padding:20px 0;
        display:none;
    }

    #nav-menu a {
        padding: 10px;
    }


    #nav-menu a:hover {
        color: #ff4d8d;
    }

    #nav-menu.active{
        display:flex;
    }

    #hamburger{
        display:flex;
    }

    .hero-overlay {
        padding: 20px 10px;
    }

    .prev, .next, .dots {
        display: none;
    }

    .gallery-track img {
        /*transform: rotate(0deg);*/
    }

    .coffee-info {
        flex-direction: column
    }

    .iceCream-info {
        padding-top: 20px;
    }

    .iceCream-brandMobile {
        direction: flex;
        flex-direction: column;
        padding-top: 20px;
        padding-bottom: 20px;

        a {
            text-decoration:none;
            color:#333;

            &:hover {
                cursor: pointer;
            }
        }
    }
}