/* 
   Whimsy Wishes - Main Stylesheet
   Version 1.0
*/

/* Color Variables */
:root {
  --pink: #ffb6c1;      /* Bubblegum Pink */
  --peach: #ffdab9;     /* Sunshine Peach */
  --blue: #b0e0e6;      /* Celestial Blue */
  --mint: #98fb98;      /* Mint Sorbet */
  --lavender: #e6e6fa;  /* Lavender Mist */
  --white: #fffaf0;     /* Warm White */
  --dark: #333333;      /* Text Color */
  --light-grey: #f9f9f9;
  --medium-grey: #e0e0e0;
}

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

body {
  font-family: 'Montserrat', 'Open Sans', sans-serif;
  color: var(--dark);
  line-height: 1.6;
  background-color: var(--white);
}

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', 'Cormorant Garamond', serif;
  font-weight: 700;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.5rem;
}

a {
  text-decoration: none;
  color: var(--dark);
  transition: all 0.3s ease;
}

a:hover {
  color: var(--pink);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 12px 30px;
  border-radius: 50px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 0.9rem;
  text-align: center;
}

.btn-primary {
  background-color: var(--pink);
  color: white;
  border: 2px solid var(--pink);
}

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

.btn-secondary {
  background-color: transparent;
  color: var(--dark);
  border: 2px solid var(--dark);
}

.btn-secondary:hover {
  background-color: var(--dark);
  color: var(--white);
}

.text-center {
  text-align: center;
}

section {
  padding: 80px 0;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  margin-top: 3rem;
  text-align: center;
  position: relative;
}

.section-title:after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: var(--pink);
  margin: 15px auto;
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
  background-color: transparent;
  padding: 10px 0;
}

.header-transparent {
  background-color: transparent;
  box-shadow: none;
}

.header-transparent.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 5px 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  z-index: 1002;
}

.logo img {
  height: 70px;
  width: auto;
}

nav {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
  transition: right 0.3s ease-in-out;
}

nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 30px;
}

nav ul li a {
  font-weight: 500;
  position: relative;
  color: var(--dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

.header-transparent:not(.scrolled) nav ul li a {
  color: white;
}

nav ul li a:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--pink);
  transition: width 0.3s ease;
}

nav ul li a:hover:after {
  width: 100%;
}

.header-cta {
  margin-left: 30px;
  z-index: 1001;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1002;
}

.mobile-toggle i {
  font-size: 24px;
  color: var(--dark);
  transition: all 0.3s ease;
}

.header-transparent:not(.scrolled) .mobile-toggle i {
  color: white;
}

body.menu-open {
  overflow: hidden;
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
  .header-container {
    padding: 5px 20px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }

  .logo {
    grid-column: 1;
  }

  .mobile-toggle {
    grid-column: 3;
    justify-self: end;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    z-index: 1004;
  }

  .mobile-toggle i {
    font-size: 32px;
    color: var(--dark);
    transition: all 0.4s ease;
  }

  .header-transparent:not(.scrolled) .mobile-toggle i {
    color: white;
  }

  nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--white);
    padding: 80px 40px;
    z-index: 1003;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  nav.active {
    opacity: 1;
    visibility: visible;
  }

  .header-cta {
    display: none;
  }

  nav.active .header-cta {
    display: block;
  }

  nav ul {
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 400px;
  }

  nav ul li {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
  }

  nav.active ul li {
    opacity: 1;
    transform: translateY(0);
  }

  nav ul li a {
    display: block;
    padding: 5px 0;
    width: 100%;
    text-align: center;
    color: var(--dark) !important;
    font-size: 20px;
    font-weight: 600;
  }

  .header-cta {
    position: relative;
    margin-top: 20px;
    width: 100%;
    max-width: 300px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  nav.active .header-cta {
    opacity: 1;
    transform: translateY(0);
  }

  .header-cta .btn {
    width: 100%;
    text-align: center;
    padding: 8px 20px;
  }

  /* Animation delays for menu items */
  nav.active ul li:nth-child(1) { transition-delay: 0.1s; }
  nav.active ul li:nth-child(2) { transition-delay: 0.2s; }
  nav.active ul li:nth-child(3) { transition-delay: 0.3s; }
  nav.active ul li:nth-child(4) { transition-delay: 0.4s; }
  nav.active ul li:nth-child(5) { transition-delay: 0.5s; }
  nav.active ul li:nth-child(6) { transition-delay: 0.6s; }
  nav.active .header-cta { transition-delay: 0.7s; }

  /* Menu overlay */
  .menu-overlay {
    display: none;
  }

  .desktop-only {
    display: none !important;
  }

  nav ul li:last-child a {
    display: inline-block;
    background-color: var(--pink);
    color: white !important;
    padding: 8px 25px;
    border-radius: 50px;
    font-size: 16px;
    transition: all 0.3s ease;
    margin-top: 10px;
    border: 2px solid var(--pink);
    width: auto;
  }

  nav ul li:last-child a:hover {
    background-color: transparent;
    color: var(--pink) !important;
  }

  nav ul li:last-child a:after {
    display: none;
  }
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: white;
  text-align: center;
  margin: 0;
  padding: 0;
}

.hero:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease;
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease 0.2s;
  animation-fill-mode: both;
}

.hero .btn {
  animation: fadeInUp 1s ease 0.4s;
  animation-fill-mode: both;
}

/* Page Banner (for non-home pages) */
.page-banner {
  height: 50vh !important;
  min-height: 300px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center !important;
  justify-content: center;
  position: relative;
  color: white;
  text-align: center;
  margin: 0 !important;
  padding: 0;
  overflow: hidden;
  margin-top: 0 !important;
}

.page-banner:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.page-banner .container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: inherit;
  padding-bottom: 0 !important;
}

.page-banner h1 {
  font-size: 3rem;
  margin: 0;
  padding: 0;
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
  animation: fadeInUp 1s ease;
  width: 100%;
}

/* Section styles */
.about-section-wrapper,
.services-intro,
.packages-intro,
.gallery-content,
.faq-content,
.contact-content {
  padding-top: 80px;
  margin: 0;
}

/* Value Proposition */
.value-prop {
  background-color: var(--lavender);
  padding: 60px 0;
}

.value-items {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 40px;
}

.value-item {
  flex: 1;
  min-width: 220px;
  text-align: center;
  padding: 20px;
  margin: 10px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.value-item:hover {
  transform: translateY(-10px);
}

.value-item i {
  font-size: 2.5rem;
  color: var(--pink);
  margin-bottom: 15px;
}

.value-item h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

/* Services Preview */
.services-preview {
  background-color: var(--white);
}

.services-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.service-card {
  flex: 1;
  min-width: 300px;
  max-width: 350px;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-img {
  height: 200px;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-img img {
  transform: scale(1.1);
}

.service-content {
  padding: 25px;
}

.service-content h3 {
  margin-bottom: 15px;
}

/* Testimonials */
.testimonials {
  background-color: var(--peach);
  color: var(--dark);
}

.testimonial-slider {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-item {
  padding: 20px;
}

.testimonial-text {
  font-size: 1.2rem;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  font-weight: 600;
}

/* About Page */
.about-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
}

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

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

.about-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.values-container {
  display: flex;
  flex-wrap: wrap;
  margin-top: 50px;
  gap: 20px;
}

.value-box {
  flex: 1;
  min-width: 250px;
  padding: 30px;
  background-color: var(--blue);
  border-radius: 10px;
  text-align: center;
}

/* Team Section */
.team-section {
  padding: 80px 0;
}

.team-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 40px;
  padding: 0 20px;
}

.team-member {
  background-color: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  max-width: 400px;
  margin: 0 auto;
}

.team-member:hover {
  transform: translateY(-10px);
}

.team-image {
  width: 100%;
  height: 400px;
  overflow: hidden;
  position: relative;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 0.5s ease;
}

.team-info {
  padding: 25px;
  text-align: center;
}

.team-info h3 {
  margin-bottom: 5px;
  color: var(--dark);
}

.team-role {
  color: var(--pink);
  font-weight: 600;
  margin-bottom: 15px;
}

.team-bio {
  color: var(--dark);
  line-height: 1.6;
}

@media (max-width: 1200px) {
  .team-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .team-container {
    grid-template-columns: 1fr;
  }
  
  .team-image {
    height: 350px;
  }
}

/* Services Page */
.service-detailed {
  margin-bottom: 100px;
}

.service-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 50px;
  gap: 40px;
}

.service-row:nth-child(even) {
  flex-direction: row-reverse;
}

.service-info {
  flex: 1;
  min-width: 300px;
}

.service-image {
  flex: 1;
  min-width: 300px;
}

.service-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Packages Page */
.packages-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.package-card {
  position: relative;
  background: white;
  border-radius: 15px;
  padding: 40px 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.package-highlight {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--pink);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
}

.package-title {
  font-size: 1.8rem;
  margin: 15px 0;
  color: var(--dark);
  text-align: center;
}

.package-price {
  font-size: 2rem;
  color: var(--pink);
  font-weight: 700;
  margin-bottom: 15px;
  text-align: center;
}

.package-card p {
  text-align: center;
  margin-bottom: 25px;
  color: var(--dark);
  font-size: 1.1rem;
}

.package-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  flex-grow: 1;
}

.package-features li {
  padding: 12px 0;
  border-bottom: 1px solid var(--medium-grey);
  text-align: center;
  color: var(--dark);
}

.package-features li:last-child {
  border-bottom: none;
}

.package-card .btn {
  width: 100%;
  margin-top: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.package-card.featured {
  transform: scale(1.05);
  border: 2px solid var(--pink);
  z-index: 2;
}

.package-card.featured:hover {
  transform: scale(1.05) translateY(-5px);
}

.package-card.featured .package-highlight {
  background-color: #ff6b95;
}

/* FAQ Page */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
  padding: 20px;
  background-color: white;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
}

.faq-question:after {
  content: '+';
  font-size: 20px;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question:after {
  content: '-';
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  background-color: var(--light-grey);
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 20px;
  max-height: 500px;
}

/* Gallery Page */
.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
}

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

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* Contact Page */
.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}

.contact-info {
  flex: 1;
  min-width: 300px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.contact-info-item i {
  font-size: 1.5rem;
  color: var(--pink);
  margin-right: 15px;
  margin-top: 5px;
}

.contact-form {
  flex: 1;
  min-width: 300px;
}

.form-group {
  margin-bottom: 20px;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--medium-grey);
  border-radius: 5px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--pink);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

/* Footer */
footer {
  background-color: var(--dark);
  color: white;
  padding: 60px 0 30px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-info {
  flex: 2;
  min-width: 300px;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo img {
  height: 60px;
}

.footer-links {
  flex: 1;
  min-width: 200px;
}

.footer-links h4 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: white;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: var(--pink);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background-color: var(--pink);
  transform: translateY(-3px);
}

/* Animation Keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Form Message Styles */
.form-message {
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 5px;
  font-weight: 500;
}

.form-message.success {
  background-color: #dff0d8;
  color: #3c763d;
  border: 1px solid #d6e9c6;
}

.form-message.error {
  background-color: #f2dede;
  color: #a94442;
  border: 1px solid #ebccd1;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .container {
    padding: 0 30px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .hero h1 {
    font-size: 2.8rem;
  }
  
  .hero p {
    font-size: 1.2rem;
  }
  
  .packages-container {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  
  .package-card.featured {
    transform: none;
  }
  
  .package-card.featured:hover {
    transform: translateY(-5px);
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .btn {
    padding: 10px 25px;
    font-size: 0.8rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
}

/* AOS Animation Library Override */
[data-aos] {
  opacity: 0;
  transition-property: opacity, transform;
}
[data-aos].aos-animate {
  opacity: 1;
}

.desktop-only {
    display: block;
}

@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }

    nav ul li:last-child a {
        display: inline-block;
        background-color: var(--pink);
        color: white !important;
        padding: 8px 25px;
        border-radius: 50px;
        font-size: 16px;
        transition: all 0.3s ease;
        margin-top: 10px;
        border: 2px solid var(--pink);
        width: auto;
    }

    nav ul li:last-child a:hover {
        background-color: transparent;
        color: var(--pink) !important;
    }

    nav ul li:last-child a:after {
        display: none;
    }
}

/* Utility Classes */
.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .mobile-only {
        display: block;
    }
} 