/* pjesa e ndertimit te home fillimi  */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial;
}

body{
    background-color: white;
}

/* pjesa e ndertimit te headerit */
header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 40px;
    position: relative;
}

.logo{
    text-decoration: none;
    color: black;
    font-size: 30px;
    font-weight: 600;
}

ul{
    display: flex;
    list-style: none;
    gap: 40px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

ul li a{
    text-decoration: none;
    color: #7a7a7a;
    font-size: 18px;
    transition: 0.3s;
}

.active {
    color: black;
    font-weight: 600;
}

ul li a:hover{
    color: black;
} 

ul li a[href="login.html"] {
    padding: 4px 20px;
    border-radius: 20px;
    background: #2563eb;
    color: white;
    font-weight: 500;
    transition: 0.3s;
}
/* pjesa e ndertimit te headerit */

/* pjesa e ndertimit te heroit */
.hero{
    width: 95%;
    height: 100vh;
    margin: 20px auto;
    border-radius: 30px;
    background-image: url("../../images/cinema.png");
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    padding: 60px;
}

.hero-content{
    color: white;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: end;
    color: white;
}

.hero-content h1{
   font-size: 50px;
    max-width: 700px;
    line-height: 1.2;
}

.hero-content p{
    font-size: 25px;
    max-width: 500px;
    margin-bottom: 30px;
    line-height: 1.5;
} 

.hero-content button{
    padding: 20px 30px;
    border: none;
    border-radius: 15px;
    background: white;
    color: black;
    font-size: 18px;
    transition: 0.3s;
}
 
.hero-content button:hover{
    color: #6d6c6c;
}

.right-side{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 420px;
    margin-bottom: 20px;
}
/* pjesa e ndertimit te heroit */

/* pjesa e ndertimit te pjeses poshte heroit */
.title-content{
    width: 95%;
    margin: 70px auto 50px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.left-title{
    margin-left: 20px;
}

.left-title h1{
    font-size: 40px;
    width: 600px;
    font-weight: 400;
}

.right-title{
    margin: 35px 20px;
}

.right-title p{
    max-width: 370px;
    font-size: 28px;
    line-height: 1.5;
    color: #6d6c6c;
}

.features{
    width: 90%;
    margin: 40px auto;
    display: flex;
    justify-content: space-between;
    gap: 35px;
    margin-left: 50px;
    flex-wrap: wrap;
}

.feature{
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items:flex-start;
}

.feature img{
    margin-bottom: 20px;
    justify-content: center;
}

.feature h3{
    font-size: 24px;
    margin-bottom: 10px;
}

.feature p{
    color: #6d6c6c;
    line-height: 1.5;
}
/* pjesa e ndertimit te pjeses poshte heroit */

/* pjesa e ndertimit te pjeses qe tregon per koncertin */

.destinations {
    width: 100%;
    background: #e7e5e5;
    padding: 40px 0;
    
}

.destinations-content{
    width: 93%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 30px;
}

.destinations-text{
    max-width: 320px;
}

.destinations-text h2{
    font-size:40px;
    font-weight: 400;
    line-height: 1.3;
}

.destinations-text p{
    color: #6d6c6c;
    line-height: 1.5;
    font-size: 20px;
    margin-top: 20px;
}

.main-image img{
    width: 450px;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

.destinations-card{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.card-text{
    background-color: white;
    padding: 25px;
    border-radius: 20px;
    width: 320px;
}

.card-text h3{
    font-size: 24px;
    margin-bottom: 15px;
}

.card-text p{
    color: #6d6c6c;
    line-height: 1.5;
}

.small-image{
    width: 320px;
    height: 250px;
    border-radius: 20px;
    overflow: hidden;
}

.small-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.view-details{
    text-decoration: none;
    color: black;
    font-size: 18px;
    margin-top: 5px;
}

.view-details:hover{
    color: #6d6c6c;
}
/* pjesa e ndertimit te pjeses qe tregon per koncertin */

/* pjesa e ndertimit te gridit */

.events-heading{
    width: 93%;
    margin: 70px auto 50px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.events-heading-left h1{
    width: 600px;
    font-size: 40px;
    font-weight: 400;
    line-height: 1.2;
}

.events-heading-right{
    margin-top: 20px;
}

.events-heading-right p{
    max-width: 370px;
    font-size: 28px;
    line-height: 1.5;
    color: #6d6c6c;
}

.photo-grid{
    width: 95%;
    margin: 50px auto;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: 320px 320px;
    gap: 20px;
}

.photo-grid-1{
    grid-column: 1 / 5;
    grid-row: 1;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.photo-grid-2{
    grid-column: 5 / 9;
    grid-row: 1;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.photo-grid-3{
    grid-column: 1 / 5;
    grid-row: 2;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.photo-grid-4{
    grid-column: 5 / 7;
    grid-row: 2;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.photo-grid-5{
    grid-column: 7 / 9;
    grid-row:2;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.photo-grid img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.photo-content{
    position: absolute;
    left: 20px;
    bottom: 20px;
}

.photo-content h3{
    color: white;
    font-size: 30px;
    margin-bottom: 2px;
}

.photo-content p{
    color: white;
    font-size: 16px;
    line-height: 1.5;
    max-width: 380px;
}

/* pjesa e ndertimit te gridit */

.moments{
    width: 95%;
    margin: 70px auto;
    text-align: center;
}

.moments h1{
    font-size: 35px;
    font-weight: 500;
    margin-bottom: 20px;
}

.moments p{
    max-width: 600px;
    margin: auto;
    font-size: 20px;
    line-height: 1.5;
    color: #6d6c6c;
}

/* pjesa e ndertimit te videos */
.event-video{
    width: 95%;
    margin: 15px auto;
    border-radius: 20px;
    overflow: hidden;
}

.event-video video{
    width: 100%;
    height: 550px;
    object-fit: cover;
    display: block;
}
/* pjesa e ndertimit te videos */

/* pjesa e ndertimit te dy fotografive */
.features-event{
    width: 93%;
    margin: 70px auto 50px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.feature-left h1{
    width: 600px;
    font-size: 40px;
    font-weight: 400;
    line-height: 1.2;
}

.feature-right{
    margin-top: 20px;
}

.feature-right p{
    max-width: 370px;
    font-size: 28px;
    line-height: 1.5;
    color: #6d6c6c;
}

.event-cards{
    width: 95%;
    margin: 0 auto 70px;
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.card{
    flex: 1;
    height: 520px;
    position: relative;
    overflow: hidden;
    border-radius: 25px;
}

.card img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card-tag{
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: white;
    color: black;
    padding: 12px 18px;
    border-radius: 25px;
    font-size: 14px;
}

.card-content{
    width: 90%;
    position: absolute;
    left: 25px;
    bottom: 25px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.card-info h2{
    color: white;
    font-size: 40px;
    font-weight: 400;
    line-height: 1.2;
    max-width: 330px;
    margin-bottom: 15px;
}

.card-info p{
    color: white;
    font-size: 16px;
    line-height: 1.5;
    max-width: 330px;
}

.card-number{
    text-align: right;
}

.card-number p{
    color: white;
    font-size: 16px;
    font-weight: 400;
}

.card-number span{
    color: white;
    font-size: 50px;
    font-weight: bold;
}

/* pjesa e ndertimit te rezervimit */

.rezervations {
    width: 100%;
    padding: 40px 0;
    
}

.rezervation-content{
    width: 93%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.rezervation-text{
    max-width: 310px;
}

.rezervation-text h2{
    font-size:40px;
    font-weight: 400;
    line-height: 1.3;
}

.rezervation-text p{
    color: #6d6c6c;
    line-height: 1.5;
    font-size: 20px;
    margin-top: 20px;
}

.rezervation-cards{
    flex: 1;
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.rezervation-card{
    flex: 1;
    height: 520px;
    position: relative;
    overflow: hidden;
    border-radius: 25px;
}

.rezervation-card img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.rezervation-tag{
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: white;
    color: black;
    padding: 12px 18px;
    border-radius: 25px;
    font-size: 14px;
}

.rezervation-info{
    width: 88%;
    position: absolute;
    left: 25px;
    bottom: 25px;
}

.rezervation-info h3{
    color: white;
    font-size: 36px;
    font-weight: 400;
    line-height: 1.2;
    max-width: 320px;
    margin-bottom: 15px;
}

.rezervation-bottom{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rezervation-bottom p{
    color: white;
    font-size: 15px;
}

.rezervation-bottom a{
    color: white;
    text-decoration: none;
    font-size: 15px;
}

.rezervation-bottom a:hover{
    color: #6d6c6c;
}

.rezervations-cinema-events{
    width: 100%;
    padding: 40px 0;
}

.rezervation-cinema-event-content{
    width: 95%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.rezervation-cinema-event-cards{
    flex: 1;
    display: flex;
    gap: 25px;
}

.rezervation-cinema-event-card{
    flex: 1;
    height: 520px;
    position: relative;
    overflow: hidden;
    border-radius: 25px;
}

.rezervation-cinema-event-card img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.rezervation-cinema-event-tag{
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: white;
    color: black;
    padding: 12px 18px;
    border-radius: 25px;
    font-size: 14px;
}

.rezervation-info-c-event{
    width: 88%;
    position: absolute;
    left: 25px;
    bottom: 25px;
}

.rezervation-info-c-event h3{
    color: white;
    font-size: 34px;
    font-weight: 400;
    line-height: 1.2;
    max-width: 300px;
    margin-bottom: 15px;
}

.rezervation-bottom-c-event{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rezervation-bottom-c-event p{
    color: white;
    font-size: 15px;
}

.rezervation-bottom-c-event a{
    color: white;
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s;
}

.rezervation-bottom-c-event a:hover{
    color: #6d6c6c;
}

.rezervation-text-c-event{
    max-width: 350px;
}

.rezervation-text-c-event h2{
    font-size: 40px;
    font-weight: 400;
    line-height: 1.3;
}

.rezervation-text-c-event p{
    color: #6d6c6c;
    line-height: 1.5;
    font-size: 20px;
    margin-top: 20px;
}
/* pjesa e ndertimit te rezervimit */

/* pjesa e ndertimit te footerit */
.footer{
    width: 100%;
    background-color: #e7e5e5;
    padding: 90px 0 40px;
    margin-top: 80px;
}

.footer-hero{
    width: 90%;
    margin: auto;
    text-align: center;
    margin-bottom: 80px;
}

 .footer-hero h1{
    color: black;
    font-size: 40px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 25px;
}

.footer-hero p{
    color: black;
    font-size: 22px;
    margin-bottom: 35px;
} 

.footer-hero button{
    padding: 18px 35px;
    border: none;
    border-radius: 12px;
    background-color: rgb(209, 204, 204);
    color: black;
    font-size: 16px;
}

.footer-hero button:hover{
    color: #6d6c6c;
}


.footer-content{
    width: 93%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-about{
    width: 320px;
}

.footer-about h2{
    color: black;
    font-size: 32px;
    margin-bottom: 20px;
}

.footer-about p{
    color: #6d6c6c;
    line-height: 1.5;
    margin-bottom: 35px;
} 

.footer-contact{
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item{
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-item span{
    color: black;
    font-size: 15px;
} 

.footer-links{ 
    display: flex;
    flex-direction: column;
}

.footer-links h3{
    color: black;
    font-size: 24px;
    margin-bottom: 25px;
} 

.footer-links a{
    text-decoration: none;
    color: #6d6c6c;
    margin-bottom: 18px;
}

.footer-social h3{
    color: black;
     margin-bottom: 25px;
    font-size: 24px;
   
}

.social-icons{
    display: flex;
    gap: 15px;
}

.social-icons a{
    width: 50px;
    height: 50px;
    gap: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-newsletter{
    width: 320px;
} 

 .footer-newsletter h3{
    color: black;
    margin-bottom: 15px;
    font-size: 24px;
}

.footer-newsletter p{
    color: #6d6c6c;
    margin-bottom: 25px;
    line-height: 1.5;
}

.newsletter-box{
    width: 100%;
    background-color: rgb(209, 204, 204);
    border-radius: 12px;
    padding: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.newsletter-box input{
    border: none;
    padding-left: 10px;
    outline: none;
    background: transparent;
    font-size: 15px;
} 

.newsletter-box button{
    border: none;
    background-color: white;
    border-radius: 15px;
    font-weight: 600;
    padding: 10px 18px;
}

.newsletter-box button:hover{
    color: #6d6c6c;
}

/* pjesa e ndertimit te home mbarimi */

/* pjesa e ndertimit te about fillimi */
/*pjesa e ndertimit te pjeses poshte headerit */
.features-section{
    width: 93%;
    margin: 70px auto 50px;
    display: flex;
    justify-content: space-between;
    /* align-items: flex-start; */
    flex-wrap: wrap;
    gap: 30px;
}

.feature-text-left h1{
    width: 300px;
    font-size: 40px;
    font-weight: 400;
    line-height: 1.2;
}

.feature-text-right{
    margin-top: 20px;
}

.feature-text-right p{
    max-width: 600px;
    font-size: 28px;
    line-height: 1.5;
    color: #6d6c6c;
}

.about-gallery {
    width: 95%;
    margin: 60px auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 20px;
}

.about-gallery-1{
    grid-column: 1 / 2;
}

.about-gallery-2{
    grid-column: 2 / 3;
}

.about-gallery-3{
    grid-column: 3 / 4;
}

.about-gallery img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

/* pjesa e ndertimit te tekstit poshte fotove edhe pjesa me statistika */
.about-intro{
    width: 93%;
    margin: 70px auto 50px;
    display: flex;
    justify-content: space-between;
    /* align-items: flex-start; */
    flex-wrap: wrap;
    gap: 30px;
}

.about-intro-left h1{
    width: 500px;
    font-size: 40px;
    font-weight: 400;
    line-height: 1.2;
    margin-top: 20px;
}

.about-intro-right{
    margin-top: 20px;
}

.about-intro-right p{
    max-width: 600px;
    font-size: 28px;
    line-height: 1.5;
    color: #6d6c6c;
}

.about-statistics{
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid #d8d8d8;
    display: flex;
    justify-content: space-between;
    /* align-items: center; */
    flex-wrap: wrap;
    gap: 25px;
}

.statistics-box h2{
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 10px;
}

.statistics-box span{
    font-size: 20px;
    color: #6d6c6c;
}

/* pjesa e ndertimit te pse te zgjidhni Eventora */
.choose{
    width: 100%;
    margin: 70px auto;
    text-align: center;
    height: 750px;
    background: #e7e5e5;
    padding-top: 70px;
}

.choose h1{
    font-size: 35px;
    font-weight: 500;
    margin-bottom: 20px;
}

.choose p{
    max-width: 600px;
    margin: auto;
    color: #6d6c6c;
    font-size: 20px;
    line-height: 1.5;
    color: #6d6c6c;
}

.choose-cards{
    width: 95%;
    margin: 60px auto 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 0 20px;
}

.choose-card{
    background: #f3f3f3;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    text-align: left;
}

.choose-card img{
    width: 30px;
    height: 30px;
    margin-top: 10px;
}

.choose-card p{
    margin: 0;
    font-size: 22px;
    line-height: 1.5;
    color: #222;
    max-width: 400px;
}

/* pjesa e ndertimit te fotos mbi footer */
.text-descriptions{
    width: 95%;
    height: 600px;
    margin: auto;
    border-radius: 20px;
    background-image: url("../../images/fotoja.png");
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.text-description{
    color: white;
    max-width: 800px;
    padding: 20px;
}

.text-description h1{
    font-size: 40px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 25px;
}

.text-description p{
    font-size: 22px;
    line-height: 1.5;
    margin-bottom: 35px;
    color: white;
}

.text-description button{
    padding: 15px 35px;
    border: none;
    border-radius: 10px;
    background: white;
    color: black;
    font-size: 18px;
    font-weight: 500;
}

.text-description button:hover{
    color: #6d6c6c;
}

/* pjesa e ndertimit te about fundit */

/* pjesa e ndertimit te booking fillimi */
.booking-section{
    width: 93%;
    margin: 70px auto 50px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
}

.booking-text-left h1{
    width: 300px;
    font-size: 40px;
    font-weight: 400;
    line-height: 1.2;
}

.booking-text-right{
    margin-top: 20px;
}

.booking-text-right p{
    max-width: 600px;
    font-size: 28px;
    line-height: 1.5;
    color: #6d6c6c;
}

.booking-image{
    width: 95%;
    margin: 0 auto;
}

.booking-image img{
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

/* pjesa e ndertimit te gridit */

.grid-section{
    width: 93%;
    margin: 70px auto 50px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
}

.grid-text-left h1{
    width: 500px;
    font-size: 40px;
    line-height: 1.2;
    font-weight: 400;
}

.grid-text-right{
    margin-top: 20px;
}

.grid-text-right p{
    max-width: 600px;
    font-size: 28px;
    line-height: 1.5;
    color: #6d6c6c;
}

.photo-rezervation-grid{
    width: 95%;
    margin: 50px auto;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: 320px 320px;
    gap: 20px;
}

.photo-rezerve-grid-1{
    grid-column: 1 / 5;
    grid-row: 1;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.photo-rezerve-grid-2{
    grid-column: 5 / 9;
    grid-row: 1;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.photo-rezerve-grid-3{
    grid-column: 1 / 5;
    grid-row: 2;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.photo-rezerve-grid-4{
    grid-column: 5 / 7;
    grid-row: 2;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.photo-rezerve-grid-5{
    grid-column: 7 / 9;
    grid-row:2;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.photo-rezervation-grid img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.photo-grid-content{
    position: absolute;
    left: 20px;
    bottom: 20px;
    right: 20px;
}

.photo-grid-content h3{
    color: white;
    margin-bottom: 2px;
    font-size: 30px;
}

.photo-grid-content p{
    color: white;
    font-size: 16px;
    line-height: 1.5;
    max-width: 380px;
}

/* pjesa e ndertmit te pjeses poshte gridit ku jane figurat me pershkrime */
.activity-section{
    width: 93%;
    margin: 95px auto 50px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
}

.activity-text-left h1{
    width: 500px;
    font-size: 40px;
    line-height: 1.2;
    font-weight: 400;
    
}

.activity-text-right{
    margin-top: 20px;
}

.activity-text-right p{
    max-width: 600px;
    font-size: 28px;
    line-height: 1.5;
    color: #6d6c6c;
}

.activities-grid{
    width: 95%;
    margin: 70px auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.activity-card{
    height: 250px;
    border-radius: 20px;
    overflow: hidden;
}

.text-card{
    background: #f5f5f5;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.text-card h3{
    margin-bottom: 20px;
    font-size: 26px;
    
}

.text-card p{
    color: #6d6c6c;
    line-height: 1.5;
}

.image-card img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* pjesa e ndertimit te fotos landscape */

.landscape-section{
    width: 93%;
    margin: 95px auto 50px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
}

.landscape-text-left h1{
    width: 500px;
    font-size: 40px;
    font-weight: 400;
    line-height: 1.2;
}

.landscape-text-right{
    margin-top: 20px;
}

.landscape-text-right p{
    max-width: 600px;
    font-size: 28px;
    line-height: 1.5;
    color: #6d6c6c;
} 

.landscape-event{
    width: 95%;
    height: 570px;
    margin: 0 auto 100px;
    background-image: url("../../images/landevent.png");
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.landscape-badge{
    background: white;
    padding: 12px 18px;
    color: black;
    position: absolute;
    top: 20px;
    left: 20px;
    border-radius: 25px;
    font-size: 14px;
}

.landscape-content{
    position: absolute;
    left: 40px;
    bottom: 40px;
    color: white;
}

.landscape-content h1{
    width: 500px;
    margin-bottom: 15px;
    font-size: 46px;
    font-weight: 500;
    line-height: 1.5;
}

.landscape-category{
    font-size: 20px;
    margin-bottom: 15px;
}

.landscape-description{
    width: 500px;
    font-size: 18px;
    margin-bottom: 25px;
    line-height: 1.5;
    
}

/*pjesa e ndertimit te eventeve me dizajne */
.rezerve{
    width: 95%;
    margin: 50px auto;
    text-align: center;
}

.rezerve h1{
    font-size: 35px;
    margin-bottom: 20px;
    font-weight: 500;
    
}

.rezerve p{
    max-width: 600px;
    margin: auto;
    font-size: 20px;
    line-height: 1.5;
    color: #6d6c6c;
} 

.rezerv-content{
    width: 95%;
    margin: 0 auto;
} 

.rezerv-cards{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.rezerv-card{
    height: 520px;
    position: relative;
    overflow: hidden;
    border-radius: 25px;
}

.rezerv-card img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.rezerv-tag{
    background-color: white;
    color: black;
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 12px 18px;
    border-radius: 25px;
    font-size: 14px;
}

.rezerv-info{
    width: 88%;
    position: absolute;
    left: 25px;
    bottom: 25px;
}

.rezerv-info h3{
    font-weight: 400;
    line-height: 1.2;
    color: white;
    font-size: 36px; 
    margin-bottom: 15px;
} 

.rezerv-bottom{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rezerv-bottom p{
    color: white;
    font-size: 15px;
}

.rezerv-bottom a{
    text-decoration: none;
    font-size: 15px;
    color: white;
}

.rezerv-bottom a:hover{
    color: #6d6c6c;
}

/* pjesa e ndertimit te booking mbarimi */

/* pjesa e ndertimit te kontaktit fillimi */
.contact-section{
    width: 93%;
    margin: 100px auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;flex-wrap: wrap;
    gap: 40px;
}

.contact-info{
    margin-top: 80px; 
}

.contact-info h1{
    font-size: 40px;
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 30px;
}

.contact-info p{
    max-width: 500px;
    font-size: 24px;
    line-height: 1.5;
    color: #6d6c6c;
    margin-bottom: 60px;
}

.contact-details{
    display: flex;
    gap: 80px;
    flex-wrap: wrap;
}

.contact-box h3{
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 15px;
}

.contact-box span{
    color: #6d6c6c;
    font-size: 18px;
}


.contact-form{
    width: 600px;
    border: 1px solid #d9d9d9;
    border-radius: 20px;
    padding: 30px;
    background-color: white;
}

.contact-form h2{
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 35px;
}

.contact-form form{
    display: flex;
    flex-direction: column;
}

.contact-form label{
    margin-bottom: 10px;
    margin-top: 18px;
    font-size: 16px;
    font-weight: 500;
}

.contact-form input{
    width: 100%;
    padding: 8px;
    border: 1px solid #d9d9d9;
    border-radius: 10px;
    font-size: 16px;
}
.contact-form select{
    width: 100%;
    border: 1px solid #d9d9d9;
    border-radius: 10px;
    padding: 8px;
    font-size: 16px;
}

.contact-form textarea{
    width: 100%;
    padding: 8px;
    border: 1px solid #d9d9d9;
    border-radius: 10px;
    font-size: 16px;
}

.contact-form textarea{
    height: 70px;
}


.contact-form button{
    border: none; 
    margin-top: 30px;
    padding: 10px;
    border-radius: 10px;
    background-color: black;
    color: white;
    font-size: 16px;
}

.contact-form button:hover{
    background-color: #6d6c6c;
}

/* pjesa e ndertimit te kontaktit mbarimi */

/*pjesa e ndertimit te modaleve */
.modal{
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.6);
    overflow-y: auto;
}

.modal-content{
    width: 500px;
    background: white;
    margin: 5% auto;
    padding: 25px;
    border-radius: 20px;
}

.modal-content h2{
    margin-bottom: 10px;
}

.modal-content form{
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.modal-content input{
     padding: 8px;
    border: 1px solid #ccc;
    border-radius: 8px;
    outline: none;
}

.modal-content select{
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 8px;
    outline: none;
}

.btn{
    padding: 12px;
    color: white;
    border-radius: 8px;
    border: none;
    background: black;
    margin-top: 10px;
}

.close{
    font-size: 28px;
    float: right;
}

.modal.active{
    display: block;
}

/* pjesa e ndertimit te media query */
@media (max-width: 768px){
    
    .hero-content{
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 30px;
    }

    .title-content,
    .events-heading,
    .features-event,
    .destinations-content,
    .rezervation-content,
    .booking-section,
    .grid-section,
    .activity-section,
    .landscape-section,
    .rezervation-cinema-event-content{
        flex-direction: column;
    }

    .left-title h1,
    .events-heading-left h1,
    .feature-left h1{
        width: 100%;
        font-size: 30px;
    }

    .hero-content h1{
        font-size: 35px;
    }

    .photo-grid,
    .photo-rezervation-grid{
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .photo-grid-1,
    .photo-grid-2,
    .photo-grid-3,
    .photo-grid-4,
    .photo-grid-5,
    .photo-rezerve-grid-1,
    .photo-rezerve-grid-2,
    .photo-rezerve-grid-3,
    .photo-rezerve-grid-4,
    .photo-rezerve-grid-5{
        grid-column: auto;
        grid-row: auto;
        height: 300px;
    }

    .choose-cards{
        grid-template-columns: 1fr;
    }

    .activities-grid{
        grid-template-columns: 1fr;
    }

    .about-gallery{
        grid-template-columns: 1fr;
    }

    .rezerv-cards{
        grid-template-columns: 1fr;
    }

    header{
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    ul{
        position: static;
        transform: none;
        flex-direction: column;
        gap: 15px;
        width: 100%;
        padding: 0;
        margin-top: 10px;
    }

    ul li a{
        font-size: 16px;
    }
}