/* Brand Colors */
:root {
  --green: #1d9147;
  --gold: #c69c3d;
  --light-gold: #f7f1e1;
  --black: #000;
  --white: #fff;
  --gray: #333;
  --radius: 4px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

body {
  font-family: Arial, sans-serif;
  color: var(--gray);
  background: var(--white);
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  color: var(--black);
  margin-top: 0;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: var(--white); /* solid white */
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  z-index: 1000;
  transition: background 0.3s;
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 2rem;
  position: relative;
  min-height: 56px; /* Ensure enough height for alignment */
}
.logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  height: 48px;
}
.logo img {
  height: 48px;
  border-radius: var(--radius);
}
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}
.nav-links a {
  text-decoration: none;
  color: var(--black);
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.2s;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
}
.nav-links a:hover {
  color: var(--green);
}
.whatsapp-btn img {
  width: 28px;
  height: 28px;
  filter: none;
  transition: filter 0.2s;
}
.whatsapp-btn:hover img {
  filter: none;
}

/* Navbar Burger for Mobile */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  cursor: pointer;
  z-index: 1101;
  margin-left: auto;
}
.burger span {
  display: block;
  width: 26px;
  height: 4px;
  background: var(--green);
  margin: 4px 0;
  border-radius: 2px;
  transition: 0.3s;
}
@media (max-width: 800px) {
  .nav-container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 1rem;
    min-height: 56px;
  }
  .logo {
    height: 36px;
  }
  .burger {
    display: flex;
    margin-left: auto;
    height: 36px;
  }
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    display: none;
    z-index: 1100;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.12);
    font-size: 1.3rem;
    padding: 0;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links li {
    width: 100%;
    text-align: center;
  }
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 2rem;
  background: url("images/background.jpg") center center / cover no-repeat;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: none;
  z-index: 1;
}
.hero-overlay {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.85);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 3rem 2rem;
  max-width: 600px;
  text-align: center;
  margin: 2rem auto;
  animation: fadeIn 1.2s;
}
.hero-overlay-absolute {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.82);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 3rem 2rem;
  text-align: center;
  z-index: 2;
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.hero-title {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  letter-spacing: 0.01em;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}
.hero-word1 {
  color: var(--green);
}
.hero-word2 {
  color: var(--gold);
}
.hero-word3 {
  color: #1d5c91; /* deep blue for contrast */
}
.hero-word4 {
  color: #b23c3c; /* deep red for contrast */
}
.hero-word {
  opacity: 0;
  border-right: 2px solid var(--gold);
  white-space: pre;
  overflow: hidden;
  display: inline-block;
  min-width: 1ch;
}
@keyframes typing {
  from {
    width: 0;
    opacity: 1;
  }
  to {
    width: 100%;
    opacity: 1;
  }
}
@keyframes blink {
  0%,
  100% {
    border-color: var(--gold);
  }
  50% {
    border-color: transparent;
  }
}
.hero-word.typed {
  opacity: 1;
  border-right: 2px solid var(--gold);
  animation: blink 0.7s step-end infinite;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.hero-contact {
  font-size: 1rem;
  margin-bottom: 2rem;
  color: var(--gray);
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
}
.btn {
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: var(--shadow);
  text-decoration: none;
  display: inline-block;
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
}
.btn-gold:hover {
  background: var(--green);
  color: var(--white);
}
.btn-green-outline {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}
.btn-green-outline:hover {
  background: var(--green);
  color: var(--white);
}
.hero-image {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 2rem auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: contain;
  display: block;
}

/* WhatsApp Chat Bubble */
.whatsapp-chat-bubble {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1200;
  background: var(--green);
  border-radius: 50%;
  box-shadow: var(--shadow);
  padding: 0.4rem;
  transition: background 0.2s;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.whatsapp-chat-bubble img {
  width: 24px;
  height: 24px;
  filter: invert(1) sepia(1) hue-rotate(70deg) saturate(4);
}
.whatsapp-chat-bubble:hover {
  background: var(--gold);
}

/* About Section */
.about {
  background: var(--white);
  padding: 4rem 0 2rem 0;
}
.about h2 {
  color: var(--green);
  text-align: center;
  margin-bottom: 2rem;
}
.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: flex-start;
  justify-content: center;
}
.about-text {
  flex: 2 1 320px;
  min-width: 260px;
}
.about-text h3 {
  color: var(--green);
  margin-top: 1.5rem;
}
.about-text ul {
  padding-left: 1.2rem;
}
.about-photos {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}
.about-photo {
  width: 580px;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--light-gold);
}
@media (max-width: 900px) {
  .about-content {
    flex-direction: column;
    align-items: center;
  }
  .about-photos {
    flex-direction: row;
    gap: 1rem;
  }
}

/* Services Section */
.services {
  background: var(--light-gold);
  padding: 4rem 0 2rem 0;
}
.services h2 {
  color: var(--green);
  text-align: center;
  margin-bottom: 2rem;
}
.services-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  flex: 1 1 240px;
  max-width: 300px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px rgba(0, 158, 58, 0.12);
}
.service-icon {
  font-size: 2.5rem;
  color: var(--green);
  margin-bottom: 1rem;
}
.service-card h3 {
  color: var(--black);
  margin-bottom: 0.5rem;
  text-align: center;
}
.service-card p {
  color: var(--gray);
  font-size: 1rem;
  text-align: center;
  margin-bottom: 1rem;
}
.learn-more {
  color: var(--green);
  text-decoration: underline;
  font-weight: 600;
  font-size: 1rem;
  margin-top: auto;
  transition: color 0.2s;
}
.learn-more:hover {
  color: var(--gold);
}
@media (max-width: 900px) {
  .services-cards {
    flex-direction: column;
    align-items: center;
  }
  .service-card {
    max-width: 90vw;
  }
}

/* Gallery Section */
.gallery {
  background: var(--white);
  padding: 4rem 0 2rem 0;
}
.gallery h2 {
  color: var(--green);
  text-align: center;
  margin-bottom: 2rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.gallery-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  background: var(--light-gold);
  margin: 12px;
}
.gallery-img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 32px rgba(198, 156, 61, 0.15);
  z-index: 2;
}
.gallery-controls {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.gallery-nav-btn {
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  padding: 0.6rem 1.4rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: background 0.2s, color 0.2s;
}
.gallery-nav-btn:hover {
  background: var(--green);
  color: var(--white);
}

/* Gallery Modal */
.gallery-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
  opacity: 0;
}
.gallery-modal.open {
  display: flex;
  opacity: 1;
}
.gallery-modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}
.gallery-modal-content {
  position: relative;
  z-index: 2;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 90vw;
  max-height: 90vh;
}
.gallery-modal-content img {
  max-width: 80vw;
  max-height: 70vh;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.gallery-modal-close {
  position: absolute;
  top: 0.5rem;
  right: 0.7rem;
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: 50%;
  width: 2.2rem;
  height: 2.2rem;
  font-size: 1.5rem;
  font-weight: bold;
  cursor: pointer;
  box-shadow: var(--shadow);
  z-index: 3;
  transition: background 0.2s;
}
.gallery-modal-close:hover {
  background: var(--green);
}

/* Contact Section */
.contact {
  background: var(--white);
  color: var(--green);
  padding: 4rem 0 2rem 0;
  position: relative;
}
.contact h2 {
  color: var(--green);
  text-align: center;
  margin-bottom: 2rem;
}
.contact-form {
  max-width: 420px;
  margin: 0 auto 2rem auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--green); /* Make the form background green */
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem 1.5rem;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 92%;
  padding: 0.45rem 0.75rem;
  border-radius: var(--radius);
  border: none;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  background: var(--white); /* Keep fields white for contrast */
  color: var(--gray);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--gold);
}
.contact-form button {
  margin-top: 0.5rem;
}
.contact-direct {
  text-align: center;
  margin-top: 1.5rem;
}
.contact-direct p {
  margin: 0.2rem 0;
  font-size: 1.1rem;
  color: var(--green);
}
.contact-socials a {
  color: var(--gold);
  text-decoration: underline;
  margin: 0 0.2rem;
  font-weight: 600;
  transition: color 0.2s;
}
.contact-socials a:hover {
  color: var(--green);
}

/* Footer */
.footer {
  background: var(--green);
  color: var(--white);
  padding: 2.5rem 0 1rem 0;
  font-size: 1rem;
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto 1.5rem auto;
  justify-content: space-between;
}
.footer-content > div {
  flex: 1 1 220px;
  min-width: 200px;
}
.footer h4 {
  color: var(--gold);
  margin-bottom: 0.7rem;
}
.footer a {
  color: var(--gold);
  text-decoration: underline;
  transition: color 0.2s;
}
.footer a:hover {
  color: var(--white);
}
.footer-bottom {
  text-align: center;
  color: var(--light-gold);
  font-size: 0.95rem;
  margin-top: 1.5rem;
}
.testimonial-slider blockquote {
  background: white;
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  margin: 0 0 0.7rem 0;
  font-style: italic;
  color: var(--green);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.testimonial-slider span {
  display: block;
  color: var(--gold);
  font-size: 0.95rem;
  margin-top: 0.3rem;
}
@media (max-width: 900px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
}

/* Fade-in animation for sections */
.fade-init {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s, transform 0.8s;
}
.fade-in {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 800px) {
  .nav-container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 1rem;
  }
  .logo {
    flex: 0 0 auto;
  }
  .burger {
    display: flex;
    margin-left: auto;
  }
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    display: none;
    z-index: 1100;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.12);
    font-size: 1.3rem;
    padding: 0;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links li {
    width: 100%;
    text-align: center;
  }
  .hero-overlay {
    padding: 2rem 1rem;
  }
  .hero-overlay-absolute {
    padding: 2rem 1rem;
  }
  .hero-image {
    max-width: 98vw;
  }
}
@media (max-width: 600px) {
  .nav-links {
    font-size: 1.1rem;
    gap: 1.2rem;
  }
  .hero h1 {
    font-size: 1.5rem;
  }
  .hero-overlay {
    padding: 1.2rem 0.5rem;
  }
  .hero-overlay-absolute {
    padding: 1.2rem 0.5rem;
  }
  .logo img {
    height: 36px;
  }
  .hero-title {
    font-size: 1.3rem;
  }
  .hero-image {
    max-width: 100vw;
  }
  .about-content {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .about-text {
    align-items: center;
    text-align: center;
  }
  .about-photo {
    margin: 0 auto;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.8);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes heroBounce {
  0% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-18px) scale(1.1);
  }
  50% {
    transform: translateY(0) scale(1);
  }
  70% {
    transform: translateY(-8px) scale(1.05);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 1200px) {
  .nav-container {
    padding: 0.5rem 1rem;
  }
  .about-content,
  .services-cards,
  .footer-content {
    max-width: 98vw;
  }
}
@media (max-width: 900px) {
  .about-content,
  .services-cards,
  .footer-content {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  .about-photo {
    width: 95vw;
    height: 180px;
  }
  .service-card {
    max-width: 95vw;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .gallery-img {
    margin: 8px;
  }
}
@media (max-width: 600px) {
  .nav-container {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.5rem 0.5rem;
  }
  .nav-links {
    gap: 0.5rem;
    flex-wrap: wrap;
    font-size: 0.95rem;
  }
  .logo img {
    height: 32px;
  }
  .hero-overlay,
  .hero-overlay-absolute {
    padding: 1rem 0.2rem;
    max-width: 98vw;
  }
  .hero-title {
    font-size: 1.1rem;
  }
  .hero h1 {
    font-size: 1.1rem;
  }
  .about-photo {
    width: 98vw;
    height: 120px;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }
  .gallery-img {
    margin: 6px;
  }
  .service-card {
    min-width: 0;
    max-width: 98vw;
    padding: 1rem 0.5rem;
  }
  .contact-form {
    padding: 1rem 0.5rem;
    max-width: 98vw;
  }
  .footer-content {
    gap: 1rem;
    padding: 0 0.5rem;
  }
  .footer {
    padding: 1.2rem 0 0.5rem 0;
    font-size: 0.95rem;
  }
}
@media (min-width: 1600px) {
  .main,
  .about-content,
  .services-cards,
  .footer-content {
    max-width: 1400px;
    margin: 0 auto;
  }
  .hero-overlay {
    max-width: 800px;
  }
}

/* Promotion Section */
.promotion {
  background: var(--white);
  padding: 4rem 0 2rem 0;
}
.promotion h2 {
  color: var(--gold);
  text-align: center;
  margin-bottom: 2rem;
}
.promotion-grid {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}
.promotion-poster {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--light-gold);
  margin: 12px;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}
.promotion-poster:hover,
.promotion-poster:focus {
  transform: scale(1.05);
  box-shadow: 0 8px 32px rgba(198, 156, 61, 0.15);
  outline: 2px solid var(--gold);
}
.promotion-controls {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  margin-top: 1.5rem;
}
@media (max-width: 900px) {
  .promotion-grid {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
    max-width: 98vw;
  }
  .promotion-poster {
    max-width: 95vw;
    margin: 8px;
  }
}
@media (max-width: 600px) {
  .promotion-grid {
    flex-direction: column;
    gap: 0.7rem;
  }
  .promotion-poster {
    max-width: 98vw;
    margin: 6px;
  }
}

/* Catalog Section */
.catalog {
  background: var(--white);
  padding: 4rem 0 2rem 0;
  text-align: center;
}
.catalog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
}
.catalog-item {
  background: #f7f1e1;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem 1.5rem;
  min-width: 220px;
  max-width: 320px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Fix horizontal scroll on mobile */
@media (max-width: 700px) {
  .catalog-list {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .catalog-item {
    min-width: 0;
    max-width: 98vw;
    width: 100%;
    box-sizing: border-box;
    padding: 1.2rem 0.5rem;
  }
  .catalog-img {
    width: 100px;
    height: 100px;
  }
}
