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

:root {
  --primary-color: #A70130;
  --text-color: #121212;
  --text-light: #000000;
  --bg-color: #FFFFFF;
  --font-heading: 'Lobster', cursive;
  --font-body: 'Open Sans', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-light);
  background-color: var(--bg-color);
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.header {
  padding: 20px 0;
  text-align: center;
}

.logo {
  max-width: 346px;
  width: 100%;
  height: auto;
  display: inline-block;
}

.divider {
  border: none;
  height: 3px;
  background: url('../images/divider.png') repeat-x center;
  background-size: contain;
  max-width: 1100px;
  margin: 0 auto;
}

.hero {
  padding: 30px 0;
  text-align: center;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 30px;
  color: var(--text-color);
  margin-bottom: 20px;
  line-height: 1.4;
}

.hero-text {
  display: inline;
}

.hero-highlight {
  color: var(--primary-color);
  display: inline;
}

.under-construction {
  display: block;
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 15px;
}

.contact-info {
  font-size: 24px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.contact-info a {
  color: var(--primary-color);
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.social-link {
  display: inline-block;
  transition: transform 0.3s ease;
}

.social-link:hover {
  transform: scale(1.1);
}

.social-link img {
  width: 24px;
  height: 24px;
}

.gallery {
  padding: 20px 0;
}

.slideshow {
  position: relative;
  width: 100%;
  aspect-ratio: 1100 / 466;
  overflow: hidden;
  background-color: #4F4F4F;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slideshow-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 15px 0;
}

.nav-btn {
  background: none;
  border: none;
  font-size: 32px;
  cursor: pointer;
  color: var(--text-color);
  padding: 5px 15px;
  transition: color 0.3s ease;
}

.nav-btn:hover {
  color: var(--primary-color);
}

.dots {
  display: flex;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ccc;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: var(--primary-color);
}

.about {
  padding: 40px 0;
}

.about .container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.about-content {
  flex: 1 1 350px;
}

.about-content p {
  font-size: 18px;
  line-height: 1.6;
  text-align: justify;
  margin-bottom: 20px;
}

.about-content .signature {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--primary-color);
}

.map-container {
  flex: 1 1 400px;
  min-height: 400px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
}

.footer {
  text-align: center;
  padding: 20px 0;
  font-size: 14px;
}

.footer p {
  margin: 0;
}

@media (max-width: 1024px) {
  .about .container {
    flex-direction: column;
  }
  
  .about-content,
  .map-container {
    flex: 1 1 100%;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 24px;
  }
  
  .under-construction {
    font-size: 22px;
  }
  
  .hero-highlight {
    font-size: 26px;
  }
  
  .contact-info {
    font-size: 18px;
  }
  
  .about-content p {
    font-size: 16px;
  }
  
  .slideshow {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  
  .header {
    padding: 15px 0;
  }
  
  .under-construction {
    font-size: 18px;
  }
  
  .logo {
    max-width: 250px;
  }
  
  .hero {
    padding: 20px 0;
  }
  
  .hero-title {
    font-size: 18px;
  }
  
  .hero-highlight {
    font-size: 20px;
  }
  
  .contact-info {
    font-size: 14px;
    line-height: 1.6;
  }
  
  .about {
    padding: 25px 0;
  }
  
  .about-content p {
    font-size: 14px;
    line-height: 1.7;
  }
  
  .about-content .signature {
    font-size: 20px;
  }
  
  .map-container {
    min-height: 250px;
  }
  
  .map-container iframe {
    min-height: 250px;
  }
  
  .slideshow-nav {
    padding: 10px 0;
  }
  
  .nav-btn {
    font-size: 24px;
    padding: 5px 10px;
  }
  
  .dot {
    width: 10px;
    height: 10px;
  }
}

@media (max-width: 320px) {
  .hero-title {
    font-size: 16px;
  }
  
  .hero-highlight {
    font-size: 18px;
  }
  
  .contact-info {
    font-size: 13px;
  }
}

/* SEO Navigation */
.nav-seo {
  background-color: #f8f8f8;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.nav-seo ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-seo a {
  color: var(--text-color);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-seo a:hover {
  color: var(--primary-color);
}

/* Section Titles */
.section-title {
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--text-color);
  text-align: center;
  margin-bottom: 25px;
  padding-top: 20px;
}

/* SEO Content Sections */
.seo-content {
  padding: 40px 0;
  border-bottom: 1px solid #eee;
}

.seo-content:last-of-type {
  border-bottom: none;
}

.seo-content article {
  max-width: 800px;
  margin: 0 auto;
}

.seo-content p {
  font-size: 16px;
  line-height: 1.8;
  text-align: justify;
  margin-bottom: 15px;
  color: var(--text-light);
}

.seo-content p strong {
  color: var(--primary-color);
}

/* CTA Section */
.cta-section {
  background-color: #fafafa;
  text-align: center;
}

.cta-content {
  text-align: center;
}

/* Map Section */
.map-section {
  padding: 30px 0;
}

.map-container {
  width: 100%;
  min-height: 400px;
}

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

/* Address styling */
.address {
  display: block;
  font-style: normal;
  margin-bottom: 10px;
}

/* Footer links */
.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 15px;
  list-style: none;
}

.footer-links a {
  color: var(--text-color);
  text-decoration: none;
  font-size: 13px;
}

.footer-links a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

/* Visually hidden for accessibility */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Logo link */
.logo-link {
  display: inline-block;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: white;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #128c7e;
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .section-title {
    font-size: 24px;
  }
  
  .seo-content p {
    font-size: 15px;
    text-align: left;
  }
  
  .nav-seo ul {
    gap: 15px;
  }
  
  .nav-seo a {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 20px;
  }
  
  .seo-content {
    padding: 25px 0;
  }
  
  .seo-content p {
    font-size: 14px;
  }
  
  .map-container {
    min-height: 250px;
  }
  
  .map-container iframe {
    height: 250px;
  }
  
  .slideshow-nav {
    padding: 10px 0;
  }
  
  .nav-btn {
    font-size: 24px;
    padding: 5px 10px;
  }
  
  .dot {
    width: 10px;
    height: 10px;
  }
  
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }
  
  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
}
  
  .seo-content {
    padding: 25px 0;
  }
  
  .seo-content p {
    font-size: 14px;
  }
  
  .map-container {
    min-height: 250px;
  }
  
  .map-container iframe {
    height: 250px;
  }
}
