/* Import Adobe Font Baga */
@import url("https://use.typekit.net/nwl4hkg.css");

/* Color Palette - 60/30/10 Rule */
:root {
  --color-primary: #4BB653;      /* 60% - Green (dominant) */
  --color-secondary: #704CD3;    /* 30% - Purple (secondary) */
  --color-accent: #F68952;       /* 10% - Orange (accent) */
  --color-white: #FFFFFF;
  --color-black: #1A1A1A;
  --color-light-gray: #F5F5F5;
}

/* Reset and Base Styles */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  scroll-behavior: smooth;
}

body {
  font-family: 'baga', sans-serif;
  background-color: var(--color-white);
  color: var(--color-black);
  line-height: 1.6;
  min-height: 100vh;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'baga', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

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

/* Hero Section */
section {
  width: 100%;
  padding: 4rem 2rem;
}

.hero {
  min-height: 70vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  background: var(--color-accent);
  padding: 6rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero-logo-container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo {
  width: 100%;
  max-width: 500px;
  height: auto;
  position: relative;
  z-index: 2;
}

.hero-logo .cls-1,
.hero-logo .cls-2 {
  fill: var(--color-white);
}

.hero-content {
  text-align: left;
  position: relative;
  z-index: 2;
}

.hero-tagline {
  color: var(--color-white);
  margin-bottom: 2rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: clamp(2rem, 6vw, 5rem);
  line-height: 1.2;
}

.tagline-static {
  display: inline-block;
}

.tagline-rotating {
  display: inline-block;
  min-width: 200px;
  text-align: left;
  position: relative;
  color: var(--color-white);
}

.tagline-rotating.fade-out {
  animation: fadeOut 0.5s ease;
}

.tagline-rotating.fade-in {
  animation: fadeIn 0.5s ease;
}

@keyframes fadeOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-10px);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Button Styles */
.button {
  display: inline-block;
  padding: 1.2rem 3rem;
  font-size: 1.1rem;
  font-weight: 700;
  text-align: center;
  color: var(--color-white);
  background: var(--color-secondary);
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'baga', sans-serif;
}

.button:hover {
  background: var(--color-accent);
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0);
}

/* Photos Section */
.photos {
  background: var(--color-white);
  padding: 6rem 2rem;
}

.photos h1 {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--color-black);
  position: relative;
  display: inline-block;
  width: 100%;
}

.photos h1::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: var(--color-primary);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-grid a {
  display: block;
  aspect-ratio: 16/9;
  overflow: hidden;
  border: 4px solid var(--color-primary);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.gallery-grid a:hover {
  border-color: var(--color-secondary);
  transform: translateY(-5px);
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-grid a:hover img {
  transform: scale(1.1);
}

/* Checklist Section */
.checklist {
  background: var(--color-light-gray);
  padding: 6rem 2rem;
}

.checklist h1 {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--color-black);
  position: relative;
  display: inline-block;
  width: 100%;
}

.checklist h1::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: var(--color-secondary);
}

.checklist-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
}

.checklist-item {
  background: var(--color-white);
  border: 3px solid var(--color-primary);
  overflow: hidden;
  transition: all 0.3s ease;
}

.checklist-item:hover {
  border-color: var(--color-secondary);
}

.checklist-item summary {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: var(--color-secondary);
  color: var(--color-white);
  font-weight: 700;
}

.checklist-item summary h3 {
  margin: 0;
  font-size: 1.2rem;
}

.checklist-item .icon {
  width: 24px;
  height: 24px;
  position: relative;
  flex-shrink: 0;
}

.checklist-item .icon::before,
.checklist-item .icon::after {
  content: '';
  position: absolute;
  background-color: var(--color-white);
  transition: transform 0.3s ease;
}

.checklist-item .icon::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 3px;
  transform: translateY(-50%);
}

.checklist-item .icon::after {
  top: 0;
  left: 50%;
  width: 3px;
  height: 100%;
  transform: translateX(-50%);
}

.checklist-item[open] .icon::after {
  transform: translateX(-50%) scaleY(0);
}

.checklist-item .content {
  padding: 2rem;
  color: var(--color-black);
  line-height: 1.8;
}

.checklist-item .content ul {
  list-style: none;
  padding-left: 1rem;
}

.checklist-item .content ul li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.75rem;
}

.checklist-item .content ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1.2rem;
}

/* Extra Options Section */
.extra-options {
  background: var(--color-white);
  padding: 6rem 2rem;
  position: relative;
}

.extra-options::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: url('images/lights.png') no-repeat top center;
  background-size: 90%;
  opacity: 0.3;
  pointer-events: none;
}

.section-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.extra-options h1 {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--color-black);
  position: relative;
  display: inline-block;
  width: 100%;
}

.extra-options h1::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: var(--color-accent);
}

.options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.option-item {
  background: var(--color-white);
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 4px solid var(--color-light-gray);
}

.option-item:hover {
  transform: translateY(-8px);
  border-color: var(--color-accent);
}

.option-image {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.option-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.option-item:hover .option-image img {
  transform: scale(1.1);
}

.option-item h2 {
  padding: 1.5rem;
  margin: 0;
  font-size: 1.3rem;
  color: var(--color-black);
  font-weight: 700;
  background: var(--color-light-gray);
}

.hidden-content {
  display: none;
}

/* Modal Styles */
.modal {
  display: none;
}

.modal.is-open {
  display: block;
}

.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 26, 26, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  animation: fadeIn 0.3s ease;
}

.modal__container {
  background: var(--color-white);
  width: 90%;
  max-width: 900px;
  max-height: 85vh;
  border: 4px solid var(--color-primary);
  overflow-y: auto;
  animation: slideUp 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  border-bottom: 3px solid var(--color-primary);
  background: var(--color-light-gray);
}

.modal__title {
  margin: 0;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-black);
}

.modal__close {
  background: var(--color-white);
  border: 2px solid var(--color-black);
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--color-black);
  transition: all 0.3s ease;
}

.modal__close:before {
  content: '×';
}

.modal__close:hover {
  background: var(--color-secondary);
  color: var(--color-white);
  border-color: var(--color-secondary);
}

.modal__content {
  padding: 2rem;
}

.modal__image-container {
  margin-bottom: 2rem;
  overflow: hidden;
}

.modal__image {
  max-width: 100%;
  max-height: 400px;
  object-fit: cover;
  margin: 0 auto;
}

.modal__text {
  line-height: 1.8;
  color: var(--color-black);
}

/* Booking Section */
.booking {
  background: var(--color-light-gray);
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}

.booking h1 {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--color-black);
  position: relative;
  display: inline-block;
  width: 100%;
  z-index: 2;
}

.booking h1::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: var(--color-primary);
}

.whatsapp-container {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}

.whatsapp-button {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 3rem;
  background: #25D366;
  color: var(--color-white);
  font-size: 1.2rem;
  font-weight: 700;
  border: none;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-bottom: 1.5rem;
}

.whatsapp-button:hover {
  background: #1DA851;
  transform: translateY(-3px);
}

.whatsapp-button svg {
  width: 28px;
  height: 28px;
}

.whatsapp-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-black);
  margin: 0;
}


/* Footer */
footer {
  background: var(--color-secondary);
  color: var(--color-white);
  padding: 4rem 2rem 2rem;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h4 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.75rem;
}

.footer-section ul li a {
  color: var(--color-white);
  transition: all 0.3s ease;
}

.footer-section ul li a:hover {
  color: var(--color-accent);
}

.founders-image {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid var(--color-white);
  margin: 0 auto;
  transition: transform 0.3s ease;
}

.founders-image:hover {
  transform: scale(1.05);
}

.footer-section:first-child {
  text-align: center;
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 2px solid rgba(255, 255, 255, 0.2);
  text-align: center;
}

/* Animation Classes */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  transition-delay: 0.2s;
}

.fade-in-delay {
  transition-delay: 0.4s;
}

.float {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.pulse {
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 4rem 2rem;
    min-height: 60vh;
    gap: 3rem;
  }

  .hero-logo-container {
    order: -1;
  }

  .hero-logo {
    max-width: 350px;
  }

  .hero-tagline {
    font-size: clamp(1.8rem, 5vw, 3.5rem);
  }

  .tagline-rotating {
    min-width: 150px;
  }

}

@media (max-width: 768px) {
  section {
    padding: 3rem 1.5rem;
  }

  .hero {
    padding: 3rem 1.5rem;
    min-height: 50vh;
    gap: 2rem;
  }

  .hero-logo {
    max-width: 280px;
  }

  .hero-tagline {
    font-size: clamp(1.5rem, 5vw, 2.5rem);
  }

  .tagline-rotating {
    min-width: 120px;
  }


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

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

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 2rem 1rem;
    min-height: 55vh;
    gap: 1.5rem;
  }

  .hero-logo {
    max-width: 220px;
  }

  .hero-tagline {
    font-size: clamp(1.2rem, 5vw, 2rem);
  }

  .tagline-rotating {
    min-width: 100px;
    display: block;
    text-align: left;
    margin: 0.5rem 0;
  }

  .button {
    padding: 1rem 2rem;
    font-size: 1rem;
    width: 100%;
  }

  .modal__container {
    width: 95%;
  }

  .modal__header {
    padding: 1.5rem;
  }

  .modal__content {
    padding: 1.5rem;
  }

  .whatsapp-button {
    font-size: 1rem;
    padding: 1.2rem 2rem;
  }

  .whatsapp-number {
    font-size: 1.2rem;
  }
}
