/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #B59AA0;
  --secondary-color: #8A5C67;
  --bg-light: #F6E6D8;
  --bg-medium: #F0D2C1;
  --text-dark: #4A3F42;
  --text-light: #6D5D61;
  --white: #FFFFFF;
}

body {
  font-family: 'Lora', serif;
  background: var(--white);
  color: var(--primary-color);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  color: var(--primary-color);
}

/* Loader Styles */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-light);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}

.petal, .center {
  animation: draw 2s linear forwards;
}

/* Main Content */
#main {
  opacity: 0;
  transition: opacity 1s ease;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: transparent;
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  text-align: center;
  z-index: 10;
  color: var(--white);
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--secondary-color);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.cta-button {
  display: inline-block;
  background: var(--primary-color);
  color: var(--white);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Sections */
.section {
  padding: 6rem 1rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--primary-color);
}

.section-intro {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* About Section */
.about-section {
  background: var(--white);
}

.about-content {
  display: flex;
  gap: 3rem;
  align-items: center;
  flex-wrap: wrap;
}

.about-image {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-text p {
  margin-bottom: 1.5rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-light);
}

/* Experiences Section */
.experiences-section {
  background: var(--bg-light);
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.experience-card {
  background: var(--bg-medium);
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.experience-card h3 {
  font-size: 1.5rem;
  margin: 1rem 0;
  color: var(--primary-color);
}

.experience-card p {
  font-weight: 300;
  color: var(--text-light);
}

.experience-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

/* Specific positioning for event planning image */
.experience-card:nth-child(2) .experience-image {
  object-position: center 65%;
}

/* Experience video styling */
.experience-video-container {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 8px;
  position: relative;
}

.experience-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-video {
  position: relative;
  width: 100vw;
  height: 300px;
  overflow: hidden;
  margin: 3rem 0;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.section-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Contact Section */
.contact-section {
  background: var(--white);
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid var(--bg-medium);
  border-radius: 8px;
  font-family: 'Lora', serif;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.form-message {
  margin-top: 2rem;
  padding: 1rem;
  background: var(--bg-light);
  border-radius: 8px;
  text-align: center;
  color: var(--secondary-color);
  transition: all 0.5s ease;
}

.form-message.hidden {
  display: none;
}

/* Footer */
.footer {
  background: var(--primary-color);
  color: var(--white);
  text-align: center;
  padding: 2rem;
  font-weight: 300;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.2s ease-out, transform 1.2s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.hover-scale {
  transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
}

.hover-scale:hover {
  transform: scale(1.03);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .about-content {
    flex-direction: column;
  }
  
  .about-image {
    margin: 0 auto;
  }
  
  .experience-grid {
    grid-template-columns: 1fr;
  }
  
  .section {
    padding: 3rem 1rem;
  }
}