/* Base Styles */
body {
    font-family: 'Be Vietnam Pro', sans-serif;
    background-color: #f1f5f9; /* slate-100 */
    color: #475569; /* slate-600 */
}

/* Color Palette & Helpers */
.text-primary { color: #f97316; } /* orange-500 */
.bg-primary { background-color: #f97316; }
.hover\:bg-primary-dark:hover { background-color: #ea580c; } /* orange-600 */
.text-secondary { color: #2563eb; } /* blue-600 */
.hover\:text-secondary:hover { color: #1d4ed8; }
.border-primary { border-color: #f97316; }
.bg-light-gray { background-color: #f8fafc; } /* slate-50 */
.text-dark-gray { color: #1e293b; } /* slate-800 */
.border-medium-gray { border-color: #cbd5e1; } /* slate-300 */

/* Top Language Bar */
.top-bar {
    background-color: #e2e8f0; /* slate-200 */
    color: #475569; /* slate-600 */
    height: 2.5rem;
}
.lang-link {
    transition: color 0.2s ease-in-out;
}
.lang-link:hover {
    color: #1e293b; /* slate-800 */
}
.lang-link.active {
    color: #f97316; /* orange-500 */
    font-weight: 600;
}


/* Hero Section */
.hero-section {
    position: relative;
    height: 80vh;
    min-height: 500px;
    max-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}
.hero-background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/background.jpg?text=Beach+Couple');
    background-size: cover;
    background-position: center;
}

/* Layout & Dividers */
.section-divider {
    padding-bottom: 4rem;
    margin-bottom: 4rem;
    border-bottom: 1px solid #e2e8f0; /* slate-200 */
}
.section-divider:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

@media (min-width: 768px) {
    .portfolio-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
@media (min-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}
@media (min-width: 1280px) {
    .portfolio-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }
}

.portfolio-item {
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

.portfolio-item img {
    width: 100%;
    height: auto;
    display: block;
}


/* Pricing Card - Most Popular */
.pricing-card.popular {
    position: relative;
    overflow: hidden; /* This is key to clip the ribbon */
    transform: scale(1.05);
}
.popular-badge {
    position: absolute;
    top: 18px;
    right: -34px;
    background-color: #f97316; /* orange-500 */
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.3rem 0;
    width: 140px;
    text-align: center;
    transform: rotate(45deg);
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    z-index: 20;
}
.pricing-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pricing-card:not(.popular):hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

/* Footer */
footer {
    background-color: #1e293b; /* slate-800 */
}


/* --- Sticky WhatsApp Bar --- */
.whatsapp-bar-desktop, .whatsapp-bar-mobile {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background: #f97316; /* Primary Orange */
  color: #ffffff;
  box-shadow: 0 -4px 12px rgba(0,0,0,.15);
}

/* Desktop Bar Styles */
.whatsapp-bar-desktop {
  display: none; /* Hidden by default, shown on larger screens */
}
.whatsapp-bar-desktop .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.whatsapp-bar-desktop .label {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  line-height: 1.3;
}
.whatsapp-bar-desktop .label strong {
  font-size: 16px;
  font-weight: 600;
}
.whatsapp-bar-desktop .cta-btn {
  background: #fff;
  color: #f97316;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 6px rgba(0,0,0,.1);
  transition: background-color 0.2s;
}
.whatsapp-bar-desktop .cta-btn:hover {
    background-color: #f1f5f9; /* slate-100 */
}

/* Mobile Bar Styles */
.whatsapp-bar-mobile {
  display: block; /* Shown by default, hidden on larger screens */
}
.whatsapp-bar-mobile .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.whatsapp-bar-mobile .label {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  line-height: 1.2;
}
.whatsapp-bar-mobile .label strong {
  font-size: 16px;
  font-weight: 600;
}
.whatsapp-bar-mobile .cta-btn {
  background: #fff;
  color: #f97316;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 6px rgba(0,0,0,.1);
  border: none;
}


/* Media Queries for showing/hiding bars */
@media (min-width: 768px) {
  .whatsapp-bar-desktop {
    display: block;
  }
  .whatsapp-bar-mobile {
    display: none;
  }
}

/* Add padding to the body to prevent content from being hidden by the mobile bar */
@media (max-width: 767px) {
  body {
    padding-bottom: 80px; 
  }
   .pricing-card.popular {
    transform: scale(1);
  }
}

/* SEO Hidden Text (Visually hidden, but available for screen readers and search engines) */
.seo-hidden-text {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}