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

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

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Poppins', sans-serif;

  background:
    linear-gradient(rgba(255,255,255,0.88), rgba(255,255,255,0.90)),
    url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?q=80&w=2000&auto=format&fit=crop');

  background-size:cover;
  background-position:center;
  background-attachment:fixed;

  color:#1d3557;
  line-height:1.7;
}

/* HEADER */

header{
  position:relative;

  min-height:100vh;

  display:flex;
  align-items:center;
  justify-content:center;

  text-align:center;

  overflow:hidden;

  background:
    url('https://images.unsplash.com/photo-1500375592092-40eb2168fd21?q=80&w=2000&auto=format&fit=crop');

  background-size:cover;
  background-position:center;
}

.overlay{
  position:absolute;
  inset:0;

  background:
    linear-gradient(
      rgba(0, 80, 120, 0.75),
      rgba(0, 160, 220, 0.55)
    );
}

.header-content{
  position:relative;
  z-index:2;

  max-width:950px;
  padding:30px;

  color:white;

  animation:fadeIn 1.2s ease;
}

/* LOGO */

.logo{
  margin-bottom:25px;
}

.logo img{
  width:170px;
  height:170px;

  object-fit:cover;

  border-radius:50%;

  border:6px solid rgba(255,255,255,0.95);

  box-shadow:
    0 10px 35px rgba(0,0,0,0.35),
    0 0 30px rgba(255,255,255,0.25);

  transition:0.4s;
}

.logo img:hover{
  transform:scale(1.05) rotate(2deg);
}

/* TITLES */

header h1{
  font-size:68px;
  font-weight:700;

  margin-bottom:20px;

  text-shadow:0 4px 15px rgba(0,0,0,0.35);
}

.welcome{
  font-size:22px;

  max-width:820px;

  margin:auto;
  margin-bottom:40px;

  text-shadow:0 2px 8px rgba(0,0,0,0.3);
}

/* BUTTONS */

.buttons{
  display:flex;
  justify-content:center;
  gap:18px;
  flex-wrap:wrap;
}

.btn{
  padding:16px 34px;

  border-radius:14px;

  text-decoration:none;

  color:white;

  font-weight:600;
  font-size:17px;

  transition:0.35s;

  box-shadow:0 10px 25px rgba(0,0,0,0.2);

  backdrop-filter:blur(6px);
}

.btn:hover{
  transform:translateY(-5px) scale(1.03);
}

.whatsapp{
  background:linear-gradient(135deg,#25D366,#1fa855);
}

.viber{
  background:linear-gradient(135deg,#7c4dff,#5f36d6);
}

/* GENERAL */

section{
  max-width:1250px;

  margin:auto;

  padding:90px 25px;
}

.section-title{
  text-align:center;

  font-size:48px;

  margin-bottom:55px;

  color:#0b4f75;

  position:relative;
}

.section-title::after{
  content:"";

  width:100px;
  height:5px;

  background:linear-gradient(to right,#00b4db,#0083b0);

  display:block;

  margin:18px auto 0;

  border-radius:20px;
}

/* FEATURES */

.features{
  display:grid;

  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));

  gap:30px;
}

.feature-box{
  background:rgba(255,255,255,0.92);

  border-radius:24px;

  padding:35px 28px;

  text-align:center;

  box-shadow:0 12px 30px rgba(0,0,0,0.08);

  transition:0.35s;

  backdrop-filter:blur(8px);
}

.feature-box:hover{
  transform:translateY(-10px);
}

.feature-box h3{
  font-size:24px;

  margin-bottom:15px;

  color:#0077b6;
}

/* GALLERY */

.gallery{
  display:grid;

  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

  gap:25px;
}

.gallery img{
  width:100%;
  height:300px;

  object-fit:cover;

  border-radius:24px;

  box-shadow:0 15px 35px rgba(0,0,0,0.18);

  transition:0.45s;
}

.gallery img:hover{
  transform:scale(1.04);
}

/* BEACHES & SIGHTS */

.places-grid{
  display:grid;

  grid-template-columns:repeat(auto-fit,minmax(340px,1fr));

  gap:30px;
}

.place-card{
  background:rgba(255,255,255,0.93);

  border-radius:28px;

  overflow:hidden;

  box-shadow:0 15px 35px rgba(0,0,0,0.12);

  transition:0.4s;

  backdrop-filter:blur(8px);
}

.place-card:hover{
  transform:translateY(-10px);
}

.place-card img{
  width:100%;
  height:260px;

  object-fit:cover;
}

.place-content{
  padding:28px;
}

.place-content h3{
  color:#0077b6;

  margin-bottom:14px;

  font-size:25px;
}

.place-content p{
  margin-bottom:24px;
}

/* LOCATION BUTTON */

.location-btn{
  display:inline-block;

  padding:14px 26px;

  border-radius:14px;

  text-decoration:none;

  color:white;

  font-weight:600;

  background:linear-gradient(135deg,#0096c7,#0077b6);

  transition:0.35s;

  box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

.location-btn:hover{
  transform:translateY(-4px);
}

/* LOCATION */

.location-box{
  background:rgba(255,255,255,0.94);

  border-radius:30px;

  padding:35px;

  box-shadow:0 15px 35px rgba(0,0,0,0.12);

  backdrop-filter:blur(8px);
}

.location-box p{
  font-size:18px;
}

iframe{
  width:100%;

  height:450px;

  border:none;

  border-radius:24px;

  margin-top:25px;

  box-shadow:0 12px 30px rgba(0,0,0,0.15);
}

/* FOOTER */

footer{
  background:
    linear-gradient(135deg,#023e8a,#0077b6);

  color:white;

  text-align:center;

  padding:55px 20px;

  margin-top:70px;
}

footer h3{
  font-size:30px;

  margin-bottom:18px;
}

footer p{
  font-size:18px;
}

.ama{
  margin-top:20px;

  opacity:0.92;
}

/* ANIMATION */

@keyframes fadeIn{
  from{
    opacity:0;
    transform:translateY(30px);
  }

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

/* MOBILE */

@media(max-width:768px){

  header h1{
    font-size:42px;
  }

  .welcome{
    font-size:18px;
  }

  .section-title{
    font-size:36px;
  }

  .logo img{
    width:130px;
    height:130px;
  }

  .gallery img{
    height:240px;
  }

  .place-card img{
    height:220px;
  }

}

/* FLOATING CONTACT BUTTONS */

.floating-buttons{
  position:fixed;

  right:20px;
  bottom:20px;

  z-index:9999;

  display:flex;
  flex-direction:column;

  gap:15px;
}

.floating-btn{
  display:flex;
  align-items:center;
  gap:12px;

  padding:14px 20px;

  border-radius:60px;

  text-decoration:none;

  color:white;

  font-weight:600;
  font-size:16px;

  box-shadow:
    0 10px 25px rgba(0,0,0,0.25);

  backdrop-filter:blur(10px);

  transition:0.35s;

  animation:floatPulse 2.5s infinite;
}

.floating-btn img{
  width:28px;
  height:28px;
}

.floating-btn:hover{
  transform:translateY(-5px) scale(1.05);
}

.whatsapp-float{
  background:
    linear-gradient(135deg,#25D366,#128C7E);
}

.viber-float{
  background:
    linear-gradient(135deg,#8f5cff,#6d28d9);
}

/* FLOATING ANIMATION */

@keyframes floatPulse{

  0%{
    transform:translateY(0);
    box-shadow:0 10px 25px rgba(0,0,0,0.22);
  }

  50%{
    transform:translateY(-4px);
    box-shadow:0 15px 35px rgba(0,0,0,0.28);
  }

  100%{
    transform:translateY(0);
    box-shadow:0 10px 25px rgba(0,0,0,0.22);
  }

}

/* MOBILE */

@media(max-width:768px){

  .floating-buttons{
    right:12px;
    bottom:12px;
  }

  .floating-btn{
    padding:12px 16px;
    font-size:14px;
  }

  .floating-btn img{
    width:24px;
    height:24px;
  }

}

/* LANGUAGE SWITCHER */

.language-switcher{
  display:flex;

  justify-content:center;
  align-items:center;

  gap:12px;

  margin-bottom:35px;

  flex-wrap:wrap;
}

.lang-btn{
  padding:12px 22px;

  border-radius:50px;

  text-decoration:none;

  color:white;

  font-weight:600;
  font-size:15px;

  background:rgba(255,255,255,0.18);

  border:1px solid rgba(255,255,255,0.25);

  backdrop-filter:blur(10px);

  transition:0.35s;

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

.lang-btn:hover{
  transform:translateY(-3px);

  background:rgba(255,255,255,0.28);
}

.lang-btn.active{
  background:white;

  color:#0077b6;

  font-weight:700;
}

/* MOBILE */

@media(max-width:768px){

  .language-switcher{
    gap:8px;
  }

  .lang-btn{
    padding:10px 16px;

    font-size:14px;
  }

}

/* BOOK NOW BUTTON */

.book-now-btn{
  position:fixed;

  right:25px;
  bottom:150px;

  z-index:9999;

  background:linear-gradient(135deg,#ffb703,#fb8500);

  color:white;

  text-decoration:none;

  padding:16px 24px;

  border-radius:60px;

  font-size:16px;
  font-weight:700;

  box-shadow:
    0 10px 30px rgba(0,0,0,0.25);

  transition:0.35s;

  animation:pulseBook 2s infinite;
}

.book-now-btn:hover{
  transform:translateY(-4px) scale(1.03);

  box-shadow:
    0 14px 35px rgba(0,0,0,0.35);
}

/* PULSE EFFECT */

@keyframes pulseBook{

  0%{
    transform:scale(1);
  }

  50%{
    transform:scale(1.05);
  }

  100%{
    transform:scale(1);
  }

}

/* MOBILE */

@media(max-width:768px){

  .book-now-btn{

    right:15px;
    bottom:135px;

    font-size:14px;

    padding:14px 18px;

    max-width:220px;

    text-align:center;
  }

}


/* BOOKING PAGE */

.booking-page{

  min-height:100vh;

  background:
    linear-gradient(rgba(0,0,0,0.45),
    rgba(0,0,0,0.45)),

    url('../images/summer-bg.jpg');

  background-size:cover;
  background-position:center;

  display:flex;
  justify-content:center;
  align-items:center;

  padding:40px 20px;
}

.booking-container{

  width:100%;
  max-width:650px;

  background:rgba(255,255,255,0.15);

  backdrop-filter:blur(15px);

  border:1px solid rgba(255,255,255,0.25);

  border-radius:30px;

  padding:40px;

  box-shadow:
    0 15px 40px rgba(0,0,0,0.25);

  color:white;
}

.booking-container h1{

  text-align:center;

  font-size:42px;

  margin-bottom:10px;
}

.booking-subtitle{

  text-align:center;

  margin-bottom:35px;

  opacity:0.9;
}

.form-group{

  margin-bottom:22px;
}

.form-group label{

  display:block;

  margin-bottom:8px;

  font-weight:600;
}

.form-group input,
.form-group textarea,
.form-group select{

  width:100%;

  padding:15px;

  border:none;

  border-radius:14px;

  font-size:16px;

  background:rgba(255,255,255,0.9);
}

.form-group textarea{

  min-height:120px;

  resize:vertical;
}

.booking-buttons{

  display:flex;

  gap:20px;

  margin-top:30px;
}

.send-btn{

  flex:1;

  border:none;

  padding:18px;

  border-radius:16px;

  font-size:16px;
  font-weight:700;

  cursor:pointer;

  transition:0.3s;
}

.send-btn:hover{

  transform:translateY(-3px);
}

.whatsapp-send{

  background:#25D366;

  color:white;
}

.viber-send{

  background:#7360F2;

  color:white;
}

/* MOBILE */

@media(max-width:768px){

  .booking-container{

    padding:25px;
  }

  .booking-container h1{

    font-size:30px;
  }

  .booking-buttons{

    flex-direction:column;
  }

}

/* BACK HOME BUTTON */

.back-home-btn{

  display:inline-block;

  margin-bottom:25px;

  padding:12px 20px;

  border-radius:50px;

  text-decoration:none;

  background:rgba(179, 121, 121, 0.18);

  color:white;

  font-weight:600;

  border:1px solid rgba(236, 167, 167, 0.25);

  backdrop-filter:blur(10px);

  transition:0.3s;

  box-shadow:
    0 8px 20px rgba(237, 165, 165, 0.15);
}

.back-home-btn:hover{

  transform:translateX(-4px);

  background:rgba(190, 253, 190, 0.28);
}