/* -----------------------------
   Global Styles
------------------------------ */
:root {
  --primary: #E9766F;
  --secondary: #ffdfe0;
  --dark: #202124;
  --light: #ffffff;
  --grey: #f5f5f5;
  --font-main: 'Poppins', sans-serif;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-main);
  color: var(--dark);
  background-color: var(--light);
  line-height: 1.6;
}
img, video {
  width: 100%;
  display: block;
  border-radius: 6px;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.section {
  padding: 4rem 0;
}
.section-title {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2.2rem;
  color: var(--primary);
}
.btn-primary {
  display: inline-block;
  background: var(--primary);
  color: var(--light);
  padding: 0.8rem 1.6rem;
  border-radius: 30px;
  transition: background 0.3s;
  text-decoration: none;
  font-weight: 500;
}
.btn-primary:hover {
  background: #d85c55;
}
/* -----------------------------
   Header
------------------------------ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.logo {
  font-size: 1.8rem;
  font-weight: 600;
}
.logo span {
  color: var(--primary);
}
.nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}
.nav a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  transition: color 0.3s;
}
.nav a:hover {
  color: var(--primary);
}
.menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
}
/* Mobile Nav */
@media (max-width: 768px) {
  .nav {
    position: absolute;
    top: 70px;
    right: 0;
    background: var(--light);
    width: 200px;
    transform: translateX(100%);
    transition: transform 0.3s;
    box-shadow: -2px 0 8px rgba(0,0,0,0.05);
  }
  .nav.open {
    transform: translateX(0);
  }
  .nav ul {
    flex-direction: column;
    padding: 1rem;
  }
  .menu-btn {
    display: block;
  }
}
/* -----------------------------
   Hero
------------------------------ */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg-video {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0;
}
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
.hero-blur {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(7px);
  pointer-events: none;
}
.hero__content {
  position: relative;
  z-index: 3;
  color: var(--light);
  max-width: 1200px;
  margin: 0 auto;
}
.hero__split {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 3rem;
  min-height: 60vh;
  position: relative;
}
.hero-left, .hero-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-basis: 0;
  min-width: 0;
}
.hero-left {
  flex: 2;
  text-align: left;
  padding-right: 2.2rem;
}
.hero-right {
  flex: 1;
  text-align: right;
  font-size: 1.18rem;
  padding-left: 2.2rem;
  border-left: 1.5px solid rgba(255,255,255,0.14);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 900px) {
  .hero__split {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
  .hero-left, .hero-right {
    text-align: center;
    padding: 0;
    border-left: none;
  }
}
.hero-left h2 {
  font-size: 3.3rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  letter-spacing: -1px;
  color: var(--light);
  text-shadow: 0 2px 12px rgba(32,33,36,0.13);
}
.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 0.6rem;
  font-weight: 500;
  color: var(--primary);
  letter-spacing: 0.5px;
}
.hero-desc {
  font-size: 1.13rem;
  color: #fff;
  margin-bottom: 1.7rem;
  opacity: 0.93;
}
.btn-hero {
  /* Inherit all styles from .btn-primary for a unified look */
  @extend .btn-primary;
  margin-top: 1.2rem;
  min-width: 170px;
  display: inline-block;
}
/* If @extend is not supported, duplicate the .btn-primary styles: */
.btn-hero {
  background: var(--primary);
  color: var(--light);
  padding: 0.5rem 1rem;
  border-radius: 22px;
  font-weight: 500;
  font-size: 1.04rem;
  box-shadow: 0 2px 8px rgba(233,118,111,0.10);
  letter-spacing: 0.1px;
  margin-top: 1.1rem;
  width: auto;
  transition: background 0.23s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  text-align: center;
}
.btn-hero:hover {
  background: #d85c55;
  color: #fff;
}
.btn-hero:hover {
  background: #d85c55;
  color: #fff;
  transform: none;
}
.hero-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  font-size: 1.18rem;
  color: #fff;
  text-align: left;
  animation: fadeInRight 1.2s cubic-bezier(.77,.01,.17,1) 0.2s both;
}
.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 0.7em;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 0.7em 1.1em;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(32,33,36,0.07);
}
.hero-bullets i {
  color: var(--primary);
  font-size: 1.2em;
  min-width: 1.4em;
}
@media (max-width: 900px) {
  .hero-bullets {
    text-align: center;
    align-items: center;
  }
  .hero-bullets li {
    justify-content: center;
    font-size: 1.08rem;
    padding: 0.7em 0.5em;
  }
}
@keyframes fadeInRight {
  0% { opacity: 0; transform: translateX(40px); }
  100% { opacity: 1; transform: none; }
}
.hero__content h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.hero__content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
.hero-tagline {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
/* -----------------------------
   Services
------------------------------ */
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2rem;
}
.service-card {
  background: var(--grey);
  padding: 2rem 1.5rem;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s;
}
.service-card i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}
.service-card:hover {
  transform: translateY(-8px);
}
/* -----------------------------
   Gallery
------------------------------ */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}
.gallery__images {
  margin-bottom: 2rem;
}
.gallery__videos {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}
.gallery img,
.gallery video {
  height: 260px;
  object-fit: cover;
  background: #eee;
  transition: transform 0.22s cubic-bezier(.77,.01,.17,1), box-shadow 0.2s;
}
.gallery__images img {
  cursor: zoom-in;
}
.gallery__images img:hover {
  transform: scale(1.04);
  box-shadow: 0 6px 32px rgba(32,33,36,0.13);
}
@media (max-width: 600px) {
  .gallery img,
  .gallery video {
    height: 180px;
  }
}
/* Modal styles for image zoom */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.82);
  align-items: center;
  justify-content: center;
  animation: fadeInModal 0.3s;
}
.modal.open {
  display: flex;
}
.modal-content {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 12px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.23);
  background: #fff;
  position: relative;
  animation: popInModal 0.32s cubic-bezier(.77,.01,.17,1);
}
.modal-content img {
  display: block;
  max-width: 100%;
  max-height: 80vh;
  border-radius: 12px;
}
.modal-close {
  position: absolute;
  top: 10px; right: 16px;
  font-size: 2rem;
  color: #fff;
  background: rgba(0,0,0,0.32);
  border: none;
  border-radius: 50%;
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s;
}
.modal-close:hover {
  background: rgba(233,118,111,0.85);
}
@keyframes fadeInModal {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
@keyframes popInModal {
  0% { transform: scale(0.92); opacity: 0.7; }
  100% { transform: scale(1); opacity: 1; }
}
/* -----------------------------
   Contact
------------------------------ */
.contact__inner {
  text-align: center;
}
.contact__split {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
}
.contact-form-block, .contact-details-block {
  flex: 1 1 320px;
  min-width: 290px;
  max-width: 430px;
}
@media (max-width: 900px) {
  .contact__split {
    flex-direction: column;
    align-items: stretch;
    gap: 2rem;
  }
}
.contact-infos {
  margin-top: 1.5rem;
  font-size: 1.1rem;
  color: var(--dark);
}
.contact-infos i {
  color: var(--primary);
  margin-right: 0.5em;
}
.contact-infos .map {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
}
.contact-infos .map iframe {
  width: 100%;
  max-width: 500px;
  min-width: 220px;
  height: 320px;
  border-radius: 12px;
  border: 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
}
.social-links {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 1.2rem;
}
.social-links a {
  font-size: 1.4rem;
  color: var(--light);
  background: var(--primary);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.3s;
}
.social-links a:hover {
  background: #d85c55;
}
/* -----------------------------
   Footer
------------------------------ */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.2rem;
}
.form-group {
  display: flex;
  flex-direction: column;
}
.contact-form input,
.contact-form textarea {
  padding: 0.75rem 1rem;
  border: 1px solid #ececec;
  border-radius: 6px;
  font-size: 1rem;
  font-family: var(--font-main);
  background: #fafafa;
  transition: border 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
  outline: none;
}
.contact-form button {
  align-self: flex-start;
  margin-top: 0.5rem;
}
.footer {
  background: var(--dark);
  color: var(--light);
  padding: 1rem 0;
  text-align: center;
  font-size: 0.9rem;
}
