@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --primary-color: #FF671D;
  --primary-hover: #e55b17;
  --secondary-color: #2C3E50;
  --text-dark: #333333;
  --text-light: #F5F5F5;
  --bg-color: #FAFAFA;
  --bg-white: #FFFFFF;
  --transition: all 0.3s ease;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-dark);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* Header */
.header {
  background-color: var(--bg-white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 5%;
  height: auto;
  min-height: 60px;
}

.logo img {
  height: 135px;
  max-width: 100%;
  transition: var(--transition);
}

.logo:hover img {
  transform: scale(1.05);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
}

.nav-links li a {
  font-weight: 500;
  font-size: 1rem;
  color: var(--secondary-color);
  transition: var(--transition);
  position: relative;
}

.nav-links li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.nav-links li a:hover::after {
  width: 100%;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-search {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-search img {
  width: 24px;
  height: 24px;
}

.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-color), #FF8C42);
  color: var(--bg-white);
  padding: 0.6rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(255, 103, 29, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255, 103, 29, 0.4);
}

.lang-switch {
  display: flex;
  gap: 0.5rem;
  font-weight: 600;
}

.lang-switch a {
  color: #999;
}

.lang-switch a.active {
  color: var(--primary-color);
}

#darkModeBtn {
  color: var(--text-dark);
  font-weight: 800;
}

/* Marquee Section */
.marquee-container {
  width: 100%;
  background: var(--bg-white);
  color: var(--secondary-color);
  padding: 12px 0;
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 10;
}

body.dark-mode .marquee-container {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.marquee-scroll {
  display: flex;
  width: max-content;
  animation: scrollMarquee 35s linear infinite;
}

.marquee-scroll:hover {
  animation-play-state: paused;
}

.marquee-text {
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 1rem;
}

.marquee-text span.dot {
  color: var(--primary-color);
  margin: 0 25px;
  font-size: 1.5rem;
  line-height: 0;
}

@keyframes scrollMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Hero Slider */
.hero-slider {
  position: relative;
  width: 90%;
  margin: 30px auto;
  border-radius: 15px;
  height: calc(90vh - 80px);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.slide.active {
  opacity: 1;
  pointer-events: auto;
}

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

.slider-content {
  position: absolute;
  bottom: 10%;
  left: 5%;
  max-width: 360px;
  background: rgba(255, 255, 255, 0.9);
  padding: 1.8rem;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease-in-out 0.3s;
}

.slide.active .slider-content {
  opacity: 1;
  transform: translateY(0);
}

.slider-content h2 {
  font-size: 1.5rem;
  color: var(--secondary-color);
  margin-bottom: 0.6rem;
}

.slider-content p {
  font-size: 0.8rem;
  color: #666;
  margin-bottom: 1.2rem;
}

/* Slider Controls */
.slider-controls {
  position: absolute;
  bottom: 5%;
  right: 5%;
  display: flex;
  gap: 1rem;
}

.slider-btn {
  background: rgba(255, 255, 255, 0.8);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  backdrop-filter: blur(5px);
}

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

.slider-btn img {
  width: 30px;
  height: 30px;
}

/* Quick Links Section */
.quick-links {
  padding: 5rem 5%;
  background-color: var(--bg-white);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.quick-link-card {
  background: var(--bg-color);
  padding: 2.5rem;
  border-radius: 12px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid #eee;
  cursor: pointer;
}

.quick-link-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow);
  border-color: var(--primary-color);
}

.quick-link-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  background: rgba(255, 103, 29, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quick-link-icon img {
  width: 30px;
  height: 30px;
}

.quick-link-card h3 {
  font-size: 1.25rem;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

.quick-link-card p {
  color: #666;
  font-size: 0.9rem;
}

/* Footer */
.footer {
  background-color: var(--secondary-color);
  color: var(--text-light);
  padding: 3rem 5%;
  text-align: center;
}

.footer p {
  opacity: 0.7;
}

/* Floating Contact Buttons */
.floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;
}

.float-btn {
  display: flex;
  align-items: center;
  background-color: var(--bg-white);
  padding: 10px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  transition: var(--transition);
  color: var(--secondary-color);
  font-weight: 600;
  text-decoration: none;
  overflow: hidden;
  width: 50px;
  height: 50px;
  white-space: nowrap;
}

.float-btn:hover {
  width: auto;
  padding-right: 20px;
}

.float-btn img {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

.float-btn span {
  opacity: 0;
  margin-left: 10px;
  transition: opacity 0.3s ease;
}

.float-btn:hover span {
  opacity: 1;
}

.whatsapp-btn {
  background-color: #25D366;
  color: #fff;
}
.whatsapp-btn img {
  filter: brightness(0) invert(1);
}

.phone-btn {
  background-color: var(--primary-color);
  color: #fff;
}
.phone-btn img {
  filter: brightness(0) invert(1);
}

.location-btn {
  background-color: #4285F4;
  color: #fff;
}
.location-btn img {
  filter: brightness(0) invert(1);
}

/* Gallery Section */
.gallery-section {
  padding: 60px 5%;
  background-color: var(--bg-color);
}
.container {
  max-width: 1200px;
  margin: 0 auto;
}
.section-head {
  text-align: center;
  margin-bottom: 40px;
}
.section-head .eyebrow {
  color: var(--primary-color);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}
.section-head h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}
.section-head p {
  color: #666;
  font-size: 1.1rem;
}
body.dark-mode .section-head p {
  color: #bbb;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-auto-rows: 250px;
  gap: 15px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  display: block;
}

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

.gallery-item:hover img, .gallery-item:hover video {
  transform: scale(1.08);
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item.tall {
  grid-row: span 2;
}

.play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(0,0,0,0.5) url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M8 5v14l11-7z"/></svg>') no-repeat center center;
  background-size: 30px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
}

@media (max-width: 768px) {
  .gallery-item.wide { grid-column: span 1; }
  .gallery-item.tall { grid-row: span 1; }
}
/* Lightbox Styles */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90vh;
}

.lightbox-content img, .lightbox-content video {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10000;
  transition: color 0.3s;
}

.lightbox-close:hover {
  color: var(--primary-color);
}

/* Map Window Style */
.map-section {
  display: flex;
  justify-content: center;
  padding: 40px 0;
}

.map-section iframe {
  width: 90%;
  max-width: 1200px;
  height: 60vh;
  min-height: 400px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

/* Responsive */
@media (max-width: 992px) {
  .nav-links {
    display: none;
  }
  
  .slider-content {
    left: 50%;
    transform: translate(-50%, -50%) !important;
    text-align: center;
    width: 90%;
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .header {
    padding: 10px 5%;
    flex-direction: column;
    gap: 10px;
  }

  .nav-menu {
    width: 100%;
    justify-content: center;
  }

  .nav-actions {
    width: 100%;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
  }

  .logo img {
    height: 70px;
  }

  .btn-primary {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    text-align: center;
  }

  .slider-content {
    width: 55%;
    padding: 0.6rem;
    top: auto !important;
    bottom: 12%;
    transform: translateX(-50%) !important;
  }

  .slider-content h2 {
    font-size: 0.75rem;
    margin-bottom: 0.2rem;
  }

  .slider-content p {
    font-size: 0.5rem;
    margin-bottom: 0.5rem;
  }

  .slider-controls {
    bottom: 2%;
    right: 50%;
    transform: translateX(50%);
  }

  .map-section iframe {
    height: 300px !important;
  }
  
  .footer {
    text-align: center !important;
    padding: 1.5rem !important;
  }
}


/* Dark Mode Styles */
body.dark-mode {
  --secondary-color: #FAFAFA;
  --text-dark: #E0E0E0;
  --text-light: #121212;
  --bg-color: #121212;
  --bg-white: #1E1E1E;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

body.dark-mode .slider-content {
  background: rgba(30, 30, 30, 0.85);
  border: 1px solid #333;
}

body.dark-mode .slider-content p,
body.dark-mode .quick-link-card p,
body.dark-mode .footer p {
  color: #B0B0B0;
}

body.dark-mode .lang-switch a {
  color: #B0B0B0;
}

body.dark-mode .lang-switch a.active {
  color: var(--primary-color);
}

body.dark-mode .footer {
  background: #181818;
  color: #E0E0E0;
  border-top: 1px solid #2C2C2C;
}
