/* Base Styles - True Sentiment Color Palette */
:root {
  --color-cream: #fdf8f0;
  --color-emerald: #2d5a3d;
  --color-emerald-light: #4a7c59;
  --color-emerald-dark: #1b3a26;
  --color-gold: #d4af37;
  --color-peach: #e8b4a0;
  --color-warm-cream: #f4e4bc;
  --color-text: #2c1810;
  --color-text-light: #6b5b4f;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  color: var(--color-text);
  background-color: var(--color-cream);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
}

/* Floating Elements */
.floating-elements {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.petal {
  position: absolute;
  font-size: 20px;
  opacity: 0.6;
  animation: float-down 15s infinite linear;
}

.petal-1 {
  left: 10%;
  animation-delay: 0s;
  animation-duration: 18s;
}

.petal-2 {
  left: 25%;
  animation-delay: 3s;
  animation-duration: 20s;
}

.petal-3 {
  left: 45%;
  animation-delay: 6s;
  animation-duration: 16s;
}

.petal-4 {
  left: 65%;
  animation-delay: 9s;
  animation-duration: 22s;
}

.petal-5 {
  left: 80%;
  animation-delay: 12s;
  animation-duration: 19s;
}

.petal-6 {
  left: 90%;
  animation-delay: 15s;
  animation-duration: 17s;
}

@keyframes float-down {
  0% {
    top: -50px;
    transform: translateX(0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    top: 100vh;
    transform: translateX(100px) rotate(360deg);
    opacity: 0;
  }
}

/* Bubble Animation */
.bubbles {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.bubble {
  position: absolute;
  bottom: -100px;
  width: 40px;
  height: 40px;
  background-color: rgba(212, 175, 55, 0.15);
  border-radius: 50%;
  opacity: 0.4;
  animation: rise 15s infinite ease-in;
  backdrop-filter: blur(2px);
}

.bubble:nth-child(1) {
  left: 10%;
  width: 80px;
  height: 80px;
  animation-duration: 18s;
  background-color: rgba(45, 90, 61, 0.2);
}

.bubble:nth-child(2) {
  left: 20%;
  width: 25px;
  height: 25px;
  animation-duration: 20s;
  animation-delay: 1s;
}

.bubble:nth-child(3) {
  left: 35%;
  width: 50px;
  height: 50px;
  animation-duration: 16s;
  animation-delay: 2s;
  background-color: rgba(232, 180, 160, 0.15);
}

.bubble:nth-child(4) {
  left: 50%;
  width: 60px;
  height: 60px;
  animation-duration: 22s;
  animation-delay: 0s;
}

.bubble:nth-child(5) {
  left: 65%;
  width: 30px;
  height: 30px;
  animation-duration: 18s;
  animation-delay: 1s;
  background-color: rgba(244, 228, 188, 0.2);
}

.bubble:nth-child(6) {
  left: 80%;
  width: 45px;
  height: 45px;
  animation-duration: 20s;
  animation-delay: 3s;
}

@keyframes rise {
  0% {
    bottom: -100px;
    transform: translateX(0);
    opacity: 0.4;
  }
  50% {
    transform: translateX(100px);
    opacity: 0.6;
  }
  100% {
    bottom: 1080px;
    transform: translateX(-200px);
    opacity: 0;
  }
}

/* Scroll Animations */
.scroll-reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out forwards;
}

.fade-in-up.delay-1 {
  animation-delay: 0.2s;
}
.fade-in-up.delay-2 {
  animation-delay: 0.4s;
}
.fade-in-up.delay-3 {
  animation-delay: 0.6s;
}
.fade-in-up.delay-4 {
  animation-delay: 0.8s;
}
.fade-in-up.delay-5 {
  animation-delay: 1s;
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease-out;
}

.slide-in-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease-out;
}

.slide-in-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.zoom-in {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.8s ease-out;
}

.zoom-in.revealed {
  opacity: 1;
  transform: scale(1);
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hover Effects */
.hover-lift {
  transition: all 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.3);
}

.hover-glow {
  transition: all 0.3s ease;
  position: relative;
}

.hover-glow:hover {
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
  transform: translateY(-2px);
}

/* Header Styles - True Sentiment Design */
.header-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253, 248, 240, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  transition: all 0.3s ease;
  padding: 0;
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 30px;
  height: 70px;
}

/* Brand Section */
.header-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.favicon-container {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(45, 90, 61, 0.1));
  border-radius: 12px;
  transition: all 0.3s ease;
}

.favicon-container:hover {
  transform: rotate(10deg) scale(1.1);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.favicon {
  width: 28px;
  height: 28px;
  transition: all 0.3s ease;
}

.brand-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-emerald);
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.5px;
  margin: 0;
  transition: all 0.3s ease;
}

.brand-name:hover {
  color: var(--color-gold);
  text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

/* Navigation Buttons */
.header-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  justify-content: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.nav-button {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: none;
  border-radius: 25px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  backdrop-filter: blur(10px);
  letter-spacing: 0.3px;
}

.nav-button-primary {
  background: linear-gradient(135deg, rgba(45, 90, 61, 0.15), rgba(74, 124, 89, 0.1));
  color: var(--color-emerald);
  border: 1px solid rgba(45, 90, 61, 0.2);
}

.nav-button-secondary {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.1));
  color: var(--color-gold);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.nav-button-accent {
  background: linear-gradient(135deg, rgba(232, 180, 160, 0.15), rgba(232, 180, 160, 0.1));
  color: var(--color-peach);
  border: 1px solid rgba(232, 180, 160, 0.3);
}

.nav-icon {
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.nav-text {
  transition: all 0.3s ease;
}

.button-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: inherit;
  opacity: 0;
  transition: all 0.4s ease;
  pointer-events: none;
}

.nav-button-primary .button-glow {
  background: radial-gradient(circle, rgba(45, 90, 61, 0.4) 0%, rgba(45, 90, 61, 0.1) 50%, transparent 100%);
}

.nav-button-secondary .button-glow {
  background: radial-gradient(circle, rgba(212, 175, 55, 0.4) 0%, rgba(212, 175, 55, 0.1) 50%, transparent 100%);
}

.nav-button-accent .button-glow {
  background: radial-gradient(circle, rgba(232, 180, 160, 0.4) 0%, rgba(232, 180, 160, 0.1) 50%, transparent 100%);
}

.nav-button:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.nav-button:hover .button-glow {
  opacity: 1;
  transform: scale(1.2);
}

.nav-button:hover .nav-icon {
  transform: rotate(10deg) scale(1.2);
}

.nav-button:active {
  transform: translateY(0) scale(1.02);
}

/* Header Scroll Effect */
.header-fixed.scrolled {
  background: rgba(253, 248, 240, 0.98);
  box-shadow: 0 4px 30px rgba(212, 175, 55, 0.15);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.header-fixed.scrolled .header-container {
  padding: 8px 30px;
  height: 60px;
}

.header-fixed.scrolled .favicon-container {
  width: 35px;
  height: 35px;
}

.header-fixed.scrolled .favicon {
  width: 24px;
  height: 24px;
}

.header-fixed.scrolled .brand-name {
  font-size: 1.3rem;
}

/* Hero Section */
.hero {
  height: 100vh;
  background-image: linear-gradient(rgba(45, 90, 61, 0.4), rgba(212, 175, 55, 0.4)), url("./images/7.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 70px 20px 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(45, 90, 61, 0.3), rgba(212, 175, 55, 0.3));
  z-index: 1;
}

.hero-content {
  max-width: 800px;
  z-index: 2;
  position: relative;
}

.hero h2 {
  font-size: 3.5rem;
  margin-bottom: 10px;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero h3 {
  font-size: 1.8rem;
  margin-bottom: 40px;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.cta-button {
  background: linear-gradient(135deg, var(--color-emerald), var(--color-gold));
  color: white;
  border: none;
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: 500;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  font-family: "Montserrat", sans-serif;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.cta-button:hover {
  background: linear-gradient(135deg, var(--color-emerald-light), var(--color-peach));
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.cta-button:active {
  transform: translateY(0);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

/* Info Section */
.info-section {
  padding: 100px 50px;
  background-color: white;
}

.info-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 50px;
}

.info-image {
  flex: 1;
  max-width: 500px;
}

.info-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
  transition: all 0.3s ease;
}

.info-image img:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.info-content {
  flex: 1;
}

.info-content h2 {
  font-size: 2.5rem;
  color: var(--color-emerald);
  margin-bottom: 20px;
}

.info-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--color-text-light);
}

/* Testimonials Section */
.testimonials {
  padding: 100px 50px;
  text-align: center;
  background-color: var(--color-cream);
}

.testimonials h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: var(--color-emerald);
}

.testimonial-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-slider {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.testimonial {
  margin-bottom: 30px;
}

.testimonial-image {
  width: 200px;
  height: 200px;
  border-radius: 20px;
  overflow: hidden;
  border: 3px solid var(--color-gold);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
  transition: all 0.4s ease;
  position: relative;
}

.testimonial-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(45, 90, 61, 0.1), rgba(212, 175, 55, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.testimonial-image:hover::before {
  opacity: 1;
}

.testimonial-image:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.4);
  border-color: var(--color-emerald);
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.testimonial-image:hover img {
  transform: scale(1.1);
}

/* About Section */
.about {
  padding: 100px 50px;
  background: linear-gradient(135deg, var(--color-emerald), var(--color-gold));
  color: white;
  position: relative;
  overflow: hidden;
}

.about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>');
  animation: sparkle 20s linear infinite;
}

@keyframes sparkle {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100px);
  }
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.about h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: white;
}

.about p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  line-height: 1.8;
  opacity: 0.9;
}

.footer-links {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 30px;
}

.footer-link {
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
  border-bottom: 1px solid transparent;
  opacity: 0.8;
  padding: 8px 16px;
  border-radius: 20px;
}

.footer-link:hover {
  border-bottom: 1px solid white;
  opacity: 1;
  background: rgba(255, 255, 255, 0.1);
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
}

.modal-content {
  background-color: white;
  padding: 40px;
  border-radius: 20px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
  animation: modalFadeIn 0.5s ease;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(-50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.close-button {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--color-text-light);
  transition: var(--transition);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.close-button:hover {
  color: var(--color-text);
  background-color: var(--color-cream);
}

.modal-content h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: var(--color-emerald);
}

.modal-content p {
  margin-bottom: 25px;
  color: var(--color-text-light);
  font-size: 1rem;
}

#emailForm {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#emailInput {
  padding: 15px 20px;
  border: 2px solid var(--color-gold);
  border-radius: 10px;
  font-size: 1rem;
  font-family: "Montserrat", sans-serif;
  transition: var(--transition);
}

#emailInput:focus {
  outline: none;
  border-color: var(--color-emerald);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.submit-button {
  background: linear-gradient(135deg, var(--color-emerald), var(--color-gold));
  color: white;
  border: none;
  padding: 15px 20px;
  font-size: 1.1rem;
  font-weight: 500;
  border-radius: 10px;
  cursor: pointer;
  transition: var(--transition);
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.5px;
}

.submit-button:hover {
  background: linear-gradient(135deg, var(--color-emerald-light), var(--color-peach));
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.success-message {
  display: none;
  animation: successFadeIn 0.8s ease;
}

@keyframes successFadeIn {
  0% {
    opacity: 0;
    transform: scale(0.5) rotate(-180deg);
  }
  50% {
    transform: scale(1.1) rotate(0deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

.checkmark {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4caf50, #66bb6a);
  color: white;
  font-size: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 20px rgba(76, 175, 80, 0.3);
  animation: checkmarkPulse 2s infinite;
}

@keyframes checkmarkPulse {
  0%,
  100% {
    box-shadow: 0 4px 20px rgba(76, 175, 80, 0.3);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 8px 30px rgba(76, 175, 80, 0.6);
    transform: scale(1.05);
  }
}

.success-message p {
  font-size: 1.3rem;
  color: var(--color-emerald);
  font-weight: 600;
  margin-bottom: 10px;
}

.success-subtext {
  font-size: 1rem !important;
  color: var(--color-text-light) !important;
  font-weight: 400 !important;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-container {
    padding: 10px 20px;
    gap: 15px;
  }

  .header-nav {
    gap: 4px;
  }

  .nav-button {
    padding: 8px 12px;
    font-size: 0.8rem;
  }

  .nav-text {
    display: none;
  }

  .nav-icon {
    font-size: 1.2rem;
  }

  .brand-name {
    font-size: 1.2rem;
  }

  .hero {
    background-attachment: scroll;
  }

  .hero h2 {
    font-size: 2.5rem;
  }

  .hero h3 {
    font-size: 1.3rem;
  }

  .info-container {
    flex-direction: column;
    gap: 30px;
  }

  .info-content h2 {
    font-size: 2rem;
  }

  .testimonials {
    padding: 80px 20px;
  }

  .about {
    padding: 80px 20px;
  }

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

  .petal {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 8px 15px;
  }

  .header-nav {
    gap: 2px;
  }

  .nav-button {
    padding: 6px 8px;
  }

  .favicon-container {
    width: 32px;
    height: 32px;
  }

  .favicon {
    width: 20px;
    height: 20px;
  }

  .brand-name {
    font-size: 1.1rem;
  }

  .hero h2 {
    font-size: 2rem;
  }

  .hero h3 {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }

  .cta-button {
    padding: 12px 30px;
    font-size: 1rem;
  }

  .info-section {
    padding: 60px 20px;
  }

  .modal-content {
    padding: 30px 20px;
  }

  .petal {
    font-size: 14px;
  }
}
