/* Sensory-focused design for Villa Nid Perdu */

:root {
  --pale-blue: #e0f2fe;
  --white: #ffffff;
  --sand: #f5f5dc;
  --light-blue: #add8e6;
  --text-dark: #2c3e50;
  --text-light: #6c757d;
}

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

body {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

/* Navbar */
.navbar {
  background: transparent;
  transition: background 0.3s, box-shadow 0.3s;
}

.navbar.bg-white {
  background: var(--white) !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-family: 'Dancing Script', cursive;
  font-size: 1.5rem;
  color: var(--text-dark) !important;
}

.nav-link {
  color: var(--text-dark) !important;
  font-weight: 400;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background: url('../images/villa-noirmoutier/hero1.jpg') no-repeat center center / cover;
  background-attachment: scroll;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(224, 242, 254, 0.3) 0%, rgba(245, 245, 220, 0.4) 50%, rgba(173, 216, 230, 0.2) 100%);
  z-index: 2;
}

.hero-geometry {
  position: absolute;
  top: -100px;
  left: -100px;
  width: 200px;
  height: 200px;
  z-index: 1;
}

.geo-shape {
  position: absolute;
  border: 1px solid rgba(173, 216, 230, 0.3);
}

.shape-1 {
  top: 20px;
  left: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.shape-2 {
  top: 80px;
  left: 80px;
  width: 40px;
  height: 40px;
  transform: rotate(45deg);
}

.shape-3 {
  top: 120px;
  left: 40px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 3;
  max-width: 1200px;
  width: 90%;
}

.hero h1 {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero p {
  font-size: clamp(1rem, 3vw, 1.5rem);
  font-weight: 400;
  color: var(--text-light);
  margin-bottom: 3rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.btn-luxury {
  background: var(--light-blue);
  color: var(--white);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 2px;
  text-decoration: none;
  display: inline-block;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn-luxury:hover {
  background: var(--text-dark);
  color: var(--white);
  text-decoration: none;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: gentle-bounce 3s infinite;
}

.hero-scroll i {
  color: var(--sand);
  font-size: 1.5rem;
}

/* Luxury Sections */
.luxury-section {
  padding: 6rem 0;
  background: var(--white);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.luxury-section.luxury-bg {
  background: var(--pale-blue);
}

.paradise-quote {
  font-family: 'Dancing Script', cursive;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--text-dark);
}

.luxury-section h2 {
  font-family: 'Dancing Script', cursive;
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--text-dark);
}

/* Features */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.feature-item {
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--light-blue);
  margin-bottom: 1.5rem;
}

.feature-item h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.feature-item p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* Gallery */
.gallery-section {
  padding: 6rem 0;
  background: var(--sand);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.gallery-section h2 {
  font-family: 'Dancing Script', cursive;
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--text-dark);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem;
}

.gallery-item {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  border-radius: 6px;
  box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.25);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

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

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 1rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay h5 {
  margin: 0;
  font-size: 1.1rem;
}

.gallery-overlay p {
  margin: 0.5rem 0 0;
  font-size: 0.9rem;
}

/* Testimonials */
.testimonials-bg {
  background: var(--pale-blue);
}

.section-title {
  font-family: 'Dancing Script', cursive;
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--text-dark);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.testimonial-item {
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.testimonial-stars {
  color: #ffd700;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.testimonial-author {
  font-weight: 600;
  color: var(--text-dark);
}

/* Contact */
.contact-section {
  padding: 6rem 0;
  background: var(--pale-blue);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.contact-section h2 {
  font-family: 'Dancing Script', cursive;
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--text-dark);
}

.contact-form .form-control {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: var(--text-dark);
  border-radius: 8px;
  padding: 0.8rem 1.2rem;
  transition: all 0.3s ease;
}

.contact-form .form-control::placeholder {
  color: #a0aec0;
  opacity: 1;
}

.contact-form .form-control:focus {
  border-color: var(--light-blue);
  box-shadow: 0 0 0 4px rgba(173, 216, 230, 0.2);
  outline: none;
}

.contact-link {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: var(--light-blue);
}

.contact-form .btn-luxury {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
}

#formMessage {
  text-align: center;
  margin-top: 1rem;
}

/* Footer */
footer {
  background: var(--text-dark);
  color: var(--white);
  text-align: center;
  padding: 2rem 0;
}

/* Animations */
@keyframes gentle-bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  40% {
    transform: translateX(-50%) translateY(-8px);
  }

  60% {
    transform: translateX(-50%) translateY(-4px);
  }
}

/* GLightbox Customization */
.gslide-image img {
  border-radius: 6px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 6rem;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.5rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .section-title,
  .luxury-section h2,
  .gallery-section h2,
  .contact-section h2 {
    font-size: 2.5rem;
  }

  .paradise-quote {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 4rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .container {
    padding: 0 1rem;
  }

  .luxury-section,
  .gallery-section,
  .contact-section {
    padding: 4rem 0;
  }
}

</content><parameter name="filePath">C:\Mamp\htdocs\mer-ski\2\custom.css