/* Reset and Base Styles */
html, body, h1, h2, p, img, input, textarea, button, div {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-image: url('../img/pic1.jpg');
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  color: #f5f5f5;
  line-height: 1.6;
}

.fade-in {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 15px 20px;
  background: rgba(26, 26, 26, 0.95);
  box-shadow: 0 0 10px rgba(0,0,0,0.7);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  flex-wrap: wrap;
}

.logo {
  flex-shrink: 0;
}

.logo img {
  height: 50px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #ccc;
  font-size: 14px;
  line-height: 1.4;
  margin-left: 20px;
  flex-grow: 1;
}

.contact-info-1,
.contact-info-2 {
  margin-bottom: 5px;
}

.language-switch {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

.language-switch a {
  color: #f5f5f5;
  margin-left: 10px;
  text-decoration: none;
  font-size: 20px;
}

.hero {
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
}

.overlay-text {
  background: rgba(0, 0, 0, 0.65);
  padding: 40px;
  border-radius: 12px;
  max-width: 800px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
}

.overlay-text h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.overlay-text p {
  font-size: 1.1rem;
  color: #ccc;
}

.island {
  margin: 100px auto;
  width: 90%;
  background-color: rgba(18,18,18,0.88);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 0 20px rgba(0,0,0,0.7);
  backdrop-filter: blur(10px);
}

.island-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.image-left {
  flex-direction: row;
}

.image-right {
  flex-direction: row-reverse;
}

.island-content img {
  width: 100%;
  max-width: 480px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  object-fit: cover;
  height: auto;
}

.island-content div {
  flex: 1;
}

.island h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.island p {
  font-size: 1rem;
  color: #ddd;
}

.map-container {
  width: 90%;
  max-width: 800px;
  margin: 0 auto 80px auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0,0,0,0.6);
}

.map-container iframe {
  width: 100%;
  height: 320px;
  border: 0;
}

.contact {
  padding: 50px;
  background: rgba(28,28,28,0.9);
  text-align: center;
  border-radius: 20px;
  width: 90%;
  margin: 100px auto;
  box-shadow: 0 0 20px rgba(0,0,0,0.6);
}

.contact form {
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact input,
.contact textarea {
  padding: 12px;
  border-radius: 8px;
  border: none;
  font-size: 1rem;
  background: rgba(255,255,255,0.1);
  color: #fff;
}

.contact input::placeholder,
.contact textarea::placeholder {
  color: #ccc;
  opacity: 0.7;
}

.contact textarea {
  min-height: 120px;
}

.contact button {
  background: #444;
  color: #fff;
  padding: 12px 20px;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  width: fit-content;
  max-width: 200px;
  margin: auto;
  display: block;
}

.contact button:hover {
  background: #666;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
}

.whatsapp-float img {
  width: 60px;
}

#back-to-top {
  position: fixed;
  bottom: 20px;
  left: 20px;
  color: #ddd;
  text-decoration: underline;
  cursor: pointer;
  z-index: 1000;
  font-size: 14px;
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  text-align: center;
  padding: 12px;
  font-size: 14px;
  z-index: 999;
}

.cookie-consent p {
  margin: 0;
  padding: 0 10px;
}

.cookie-consent a {
  color: #4af;
  text-decoration: underline;
}

.cookie-consent button {
  margin-left: 10px;
  padding: 6px 12px;
  font-size: 13px;
  border: none;
  background: #4af;
  color: #000;
  border-radius: 4px;
  cursor: pointer;
}

footer {
  text-align: center;
  padding: 15px;
  background: rgba(26, 26, 26, 0.9);
  color: #777;
  font-size: 14px;
}

footer a {
  color: #999;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .header-info {
    text-align: center;
    font-size: 13px;
    margin-top: 10px;
  }

  .island, .contact {
    width: 95%;
    padding: 30px;
  }

  .overlay-text h1, .island h2 {
    font-size: 1.5rem;
  }

  .overlay-text p, .island p, .contact input, .contact textarea, .contact button {
    font-size: 0.9rem;
  }

  .language-switch {
    justify-content: center;
  }

  .language-switch a {
    font-size: 18px;
  }

  .whatsapp-float img {
    width: 50px;
  }

  #back-to-top {
    font-size: 13px;
  }
}
