@import url('https://fonts.googleapis.com/css2?family=Zain:wght@300;700&display=swap');

:root{
    --color-sky: #7DB3E8;
    --color-dark-text: #1D2817;
    --color-subtitle: #31668E;
    --color-yellow: #FCD80B;
    --color-white: #FFFFFF;
    --color-body-text: #333333;
    --hover-light-on-dark: #B9D7ED;
    --hover-on-light: #373D20;
}

*{
    box-sizing: border-box;
    transition: 300ms;
}

html{
    scroll-behavior: smooth;
    font-family: "Zain", system-ui, sans-serif;
}

body{
    min-height: 100vh;
    color: var(--color-body-text);
    background-color: var(--color-white);
}

a{
    text-decoration: none;
}

img{
    max-width: 100%;
    display: block;
}

.bg-clouds{
    position: fixed;
    inset: 0;
    background: url("../img/cloud.jpg") center top / cover no-repeat;
    z-index: -2;
    pointer-events: none;
}

/* NAVIGATION */

.main-nav{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 16px 32px;
    z-index: 10;
}

.nav-inner{
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo{
    color: var(--color-white);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 4px;
}

.nav-menu{
    display: flex;
    gap: 24px;
}

.nav-link{
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: lowercase;
    font-weight: 700;
}

.link-light{
    color: var(--color-white);
}

.link-dark{
    color: var(--color-dark-text);
}

.link-light:hover{
    color: var(--hover-on-light);
}

.link-dark:hover{
    color: var(--hover-light-on-dark);
}

/* Nav background when scrolled */
.main-nav.scrolled{
    background-color: rgba(255,255,255,0.95);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    backdrop-filter: blur(6px);
}
.main-nav.scrolled .nav-logo,
.main-nav.scrolled .nav-link,
.main-nav.scrolled .link-light{
    color: var(--color-dark-text);
}
.main-nav.scrolled .btn-primary{
    background-color: var(--color-dark-text);
    color: var(--color-white);
}
.main-nav.scrolled .link-dark{
    color: var(--color-dark-text);
}
.main-nav.scrolled .link-light:hover{
    color: var(--hover-on-light);
}

/* BASE SECTIONS */

section{
    padding: 140px 20px 80px;
    scroll-margin-top: 80px;
}

.zawartosc{
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

/* HERO */

#hero{
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
}

.hero-inner{
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.hero-titles{
    text-align: center;
    margin-top: 80px;
}

.hero-subtitle{
    font-size: 130px;
    font-weight: 300;
    color: var(--color-subtitle);
    line-height: 0.8;
    color: white;
}

.hero-title{
    font-size: 200px;
    font-weight: 700;
    color: var(--color-dark-text);
    line-height: 0.9;
}

.hero-card{
    background-color: var(--color-white);
    border-radius: 36px;
    padding: 40px 60px;
    display: flex;
    align-items: center;
    gap: 40px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.25);
}

.hero-card-text h2{
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--color-dark-text);
}

.hero-card-text p{
    font-size: 14px;
    line-height: 1.7;
}

.hero-card-image{
    flex-shrink: 0;
    width: 280px;
    aspect-ratio: 1 / 1;
}

.hero-card-image img{
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

/* GROUND OVER HERO */

.ground-over-hero img{
    width: 110%;
    max-width: none;
    margin-left: -5%;
}

.ground-bottom img{
    width: 110%;
    max-width: none;
    margin-left: -5%;
    display: block;
}

/* HIGHLIGHTS CIRCLES */

#highlights{
    padding-top: 40px;
    padding-bottom: 80px;
}
#highlights h2{
    text-align: center;
    color: var(--color-white);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
}


.circles-row{
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.circles-row article{
    position: relative;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

.highlight-default,
.highlight-hover{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.highlight-hover{
    opacity: 0;
}

.circles-row article:hover .highlight-default{
    opacity: 0;
}

.circles-row article:hover .highlight-hover{
    opacity: 1;
}

/* BOOK YOUR STAY */

#stay{
   
    padding-top: 80px;
    padding-bottom: 120px;
}
#stay h2{
    text-align: center;
    color: var(--color-white);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
}


.section-title.center{
    text-align: center;
    margin-bottom: 40px;
}

.stay-grid{
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.stay-grid article{
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    width: 300px;
    height: 300px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.35);
    background-color: var(--color-white);
}

.stay-grid img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stay-tag{
    position: absolute;
    left: 50%;
    bottom: 16px;
    transform: translateX(-50%);
    border: none;
    padding: 6px 16px;
    border-radius: 20px;
    background-color: rgba(0,0,0,0.7);
    color: var(--color-white);
    font-size: 11px;
    letter-spacing: 1px;
}
/* MUST VISIT */

#mustvisit{
    padding-top: 100px;
    padding-bottom: 140px;
}
#mustvisit .section-title{
    margin-top: 30px;
    font-size: 30px;
}

.mustvisit-wrapper{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: white;
    max-width: 600px;
    border-radius: 80px;
}
/* .mustvisit-card{
    background-color: var(--color-white);
    border-radius: 48px;
    padding: 40px 60px;
    max-width: 620px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.3);
} */
#mustvisit article{
    /* background-color: green; */
    display: flex;
    align-items: center;
    gap: 40px;
    
    width: 100%;
}
#mustvisit article .mv-photo{
    flex: 0 0 auto;      
}
#mustvisit article .mv-item{
    flex: 3 3 300px;
}
.mv-photo{
  width: 300px;
  aspect-ratio: 1 / 1;
  height: auto;           /* важно: убираем фикс высоту */
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.lewy{
    transform: translateX(-25%);
}
.prawy{
    flex-direction: row-reverse;
    transform: translateX(15%);
    text-align: right;
}
/* 
.mustvisit-card .section-title{
    color: var(--color-dark-text);
    margin-bottom: 32px;
} */
.mv-item{
    margin-bottom: 28px;
    /* background-color: red; */
}
.mv-item:last-child{
    margin-bottom: 0;
}

.mv-place{
    font-size: 24px;
    font-weight: 300;
}

.mv-yellow{
    color: var(--color-yellow);
}

.mv-subtitle{
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 6px 0 10px;
    color: #666;
}

.mv-text{
    font-size: 13px;
    line-height: 1.7;
    color: #555;
}
 
.mv-photo{
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.45);
}

.mv-photo img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.mv-photo{
  flex-shrink: 0;      
  aspect-ratio: 1 / 1;   
  border-radius: 50%;
}
#mustvisit article{
  align-items: center;
}

.mv-photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* 
.mv-photo-top-left{
    left: 12%;
    top: 20%;
    transform: translate(-50%, -40%);
}

.mv-photo-middle-right{
    right: 12%;
    top: 50%;
    transform: translate(50%, -40%);
}

.mv-photo-bottom-left{
    left: 15%;
    bottom: -5%;
    transform: translate(-50%, 0);
} */


/* BUY NOW */

#buy{
    
    padding-top: 100px;
    padding-bottom: 120px;
}

.buy-wrapper{
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.buy-images{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.buy-images article{
    width: 300px;
    height: 300px;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
    background-color: var(--color-white);
}

.buy-images img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.buy-text{
    max-width: 450px;
    color: var(--color-dark-text);
}

.buy-title{
    color: var(--color-dark-text);
    margin-bottom: 10px;
}

.buy-text p{
    font-size: 14px;
    margin-bottom: 18px;
}

.btn-primary{
    display: inline-block;
    padding: 8px 22px;
    border-radius: 18px;
    border: 1px solid var(--color-dark-text);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    background-color: var(--color-dark-text);
    color: var(--color-white);
}

.btn-primary:hover{
    background-color: var(--color-yellow);
    color: var(--color-dark-text);
    border-color: var(--color-yellow);
}

.stay-tag{
    position: absolute;
    left: 50%;
    bottom: 16px;
    transform: translateX(-50%);
    font-size: 10px;
    text-align: center;
    white-space: nowrap;
    padding: 6px 26px;
}
.newsletter {
    padding: 80px 0;
    
}

.newsletter-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 70px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;
    align-items: center;
}

.newsletter-form {
    border: 1.5px solid #ffffff;
    border-radius: 24px;
    padding-bottom: 20px;
    padding-top: 30px;
    padding-left: 30px;
    padding-right: 30px;
    backdrop-filter: blur(10px);
}

.newsletter-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.newsletter-form label {
    font-size: 14px;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsletter-form input {
    height: 44px;
    border-radius: 22px;
    border: none;
    background: #eee;
    padding: 0 20px;
    font-size: 14px;
}

.newsletter-form button {
    
    padding: 8px 16px;
    border: 1px solid #ffffff;
    text-decoration: none; 
    color: #ffffff;           
    margin: 0 8px;       
    margin-top: 14px;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease; 
    align-self: center;
    margin-top: 10px;
    border-radius: 20px;
    font-size: 14px;
}

.newsletter-form button:hover {
    background-color: #ffffff;
    color: #000000;
    transform: translateY(-2px);
}

.newsletter h3 {
    margin-top: 5px;
    margin-bottom: 5px;
    text-align: center;
    
    color: white;
}

.newsletter-text .small {
    font-size: 12px;
    
    color: white;
    max-width: 420px;
    text-align: center;
    margin: 0 auto;;
}

.newsletter .logo-sekcji {
    width: 400px;
    height: auto;
    display: block;
    margin: 0 auto;
}


/* FOOTER */

#footer{
   min-height: 50vh;
    padding-top: 120px;
    padding-bottom: 0;
    background: url(../img/grass.png) no-repeat center bottom ;
    background-size: cover;
}

.footer-content{
    display: flex;
    flex-wrap: wrap;
    gap: 36px;
    align-items: flex-start;
    margin-bottom: 40px;
    color: var(--color-white);
}

.footer-column{
    flex: 1 1 200px;
}

.footer-logo{
    font-size: 32px;
    letter-spacing: 6px;
    margin-bottom: 10px;
   
}

.footer-column h3{
    font-size: 16px;
    margin-bottom: 10px;
}

.footer-column p{
    font-size: 13px;
    margin-bottom: 6px;
}

.footer-brand p{
    max-width: 260px;
}

.footer-link{
    cursor: pointer;
}

.footer-link:hover{
    color: var(--color-dark-text);
}

.footer-social-icons{
    display: flex;
    gap: 12px;
   /* margin-top: 16px; */
}



.social-icon{
    position: relative;
    width: 40px;
    height: 40px;
    display: inline-block;
}
.social-icon img {
    
    width: 40px;
    height: 40px;
  
}

.icon-default,
.icon-hover{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.icon-hover{
    opacity: 0;
}

.social-icon:hover .icon-default{
    opacity: 0;
}

.social-icon:hover .icon-hover{
    opacity: 1;
}

.footer-map img{
    width: 100%;
    max-width: 400px; 
    height: auto;
    border-radius: 24px;
    background-color: var(--color-white);
    padding: 6px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

.ground-bottom img{
    width: 100%;
    display: block;

}

/* RESPONSIVE */

@media (max-width: 1200px){
    .hero-subtitle{
        font-size: 90px;
    }
    .hero-title{
        font-size: 130px;
    }
}
/* MUST VISIT responsive fix */
@media (max-width: 900px){
  #mustvisit article{
    width: 100%;              
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .lewy,
  .prawy{
    transform: none;          
    text-align: center;      
  }

  .prawy{
    flex-direction: column;  
  }

  .mustvisit-wrapper{
    max-width: 100%;
    padding: 50px 20px;      
    border-radius: 40px;
  }

  #mustvisit article .mv-item{
    min-width: 0;           
  }

  .mv-photo{
    width: 220px;
    height: 220px;
  }
}

@media (max-width: 900px){
    .hero-card{
        flex-direction: column;
        text-align: center;
    }
    #mustvisit article{
        flex-direction: column;
    }
    .mv-photo{
        display: block;
    }
    .mustvisit-card{
        padding: 32px 24px;
    }
    .hero-subtitle{
        font-size: 70px;
    }
    .hero-title{
        font-size: 110px;
    }
}

@media (max-width: 600px){
    .main-nav{
        padding-inline: 16px;
    }
    .nav-menu{
        gap: 12px;
    }
    .nav-link{
        font-size: 9px;
    }
    .hero-subtitle{
        font-size: 46px;
    }
    .hero-title{
        font-size: 70px;
    }
    .stay-grid article{
        width: 180px;
        height: 180px;
    }
    @media (max-width: 900px){
  .mv-photo{
    width: 220px;
    height: 220px;
    flex-shrink: 0;
  }
}
}
