/* CSS Variables for Brand Colors */
:root {
  --coral: #E8A598;
  --sage-green: #A8C8A8;
  --light-blue: #7BB3D3;
  --cream: #F5F1E8;
  --white: #FFFFFF;
  --dark-text: #2C3E50;
  --light-text: #6C7B7F;
  --shadow: rgba(0, 0, 0, 0.1);
  --shadow-hover: rgba(0, 0, 0, 0.15);
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--dark-text);
  background: var(--white);
  overflow-x: hidden;
}

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

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(245, 241, 232, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 0;
  box-shadow: 0 2px 20px var(--shadow);
  transition: transform 0.3s ease;
}

.navbar.hidden {
  transform: translateY(-100%);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-img {
  height: 100px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

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

.nav-link:hover {
  color: var(--coral);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  padding-top: 80px;
}

.hero::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 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%23A8C8A8" stop-opacity="0.1"/><stop offset="100%" stop-color="%23A8C8A8" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="400" cy="700" r="120" fill="url(%23a)"/></svg>') no-repeat center center;
  background-size: cover;
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--coral), var(--sage-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  color: var(--light-text);
  margin-bottom: 3rem;
  font-weight: 400;
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px var(--shadow);
}

.cta-button.primary {
  background: linear-gradient(135deg, var(--coral), var(--sage-green));
  color: var(--white);
}

.cta-button.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--shadow-hover);
}

.cta-button.secondary {
  background: var(--white);
  color: var(--dark-text);
  border: 2px solid var(--light-blue);
}

.cta-button.secondary:hover {
  background: var(--light-blue);
  color: var(--white);
  transform: translateY(-2px);
}

/* Schedule Section */
.schedule-section {
  padding: 6rem 0;
  background: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--light-text);
  max-width: 600px;
  margin: 0 auto;
}

.calendar-container {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 40px var(--shadow);
  margin-bottom: 4rem;
  overflow: hidden;
}

.calendar-iframe {
  width: 100%;
  height: 600px;
  border: none;
  border-radius: 15px;
}

/* Contact Card */
.contact-card {
  background: linear-gradient(135deg, var(--sage-green), var(--light-blue));
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  color: var(--white);
  box-shadow: 0 10px 40px var(--shadow);
}

.contact-content h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.contact-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  color: var(--dark-text);
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.contact-email:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

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

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

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-logo-img {
  height: 100px;
  width: auto;
}

.footer-text {
  text-align: right;
}

.footer-text p {
  margin-bottom: 0.5rem;
  opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-container {
    padding: 0 1rem;
  }

  .nav-links {
    gap: 1rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .cta-button {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .container {
    padding: 0 1rem;
  }

  .calendar-container {
    padding: 1rem;
  }

  .calendar-iframe {
    height: 400px;
  }

  .contact-card {
    padding: 2rem;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

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

@media (max-width: 480px) {
  .hero {
    padding-top: 100px;
  }

  .schedule-section {
    padding: 4rem 0;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .calendar-iframe {
    height: 350px;
  }
}

/* Cards grid and lists */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.card {
  background: var(--white);
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 8px 24px var(--shadow);
}

.card h3 {
  margin-bottom: 0.5rem;
}

.bulleted {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem 2rem;
  list-style: none;
  padding-left: 0;
}

.bulleted li::before {
  content: '•';
  color: var(--coral);
  font-weight: 700;
  margin-right: 0.5rem;
}

@media (max-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .bulleted { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .cards-grid { grid-template-columns: 1fr; }
}

html {
  scroll-behavior: smooth;
}

/* Booking Section */
.booking-section {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.booking-section.hidden {
  opacity: 0;
  visibility: hidden;
}

.booking-section .container {
  background: var(--white);
  border-radius: 20px;
  max-width: 1000px;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  position: relative;
}

.booking-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  border-bottom: 1px solid #eee;
  background: var(--cream);
}

.booking-header h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark-text);
  margin: 0;
}

.close-button {
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--dark-text);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.close-button:hover {
  background: rgba(0, 0, 0, 0.1);
}

.booking-container {
  height: 70vh;
  overflow: hidden;
}

.booking-iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Button styling for booking button */
.cta-button {
  border: none;
  cursor: pointer;
}

/* Responsive booking section */
@media (max-width: 768px) {
  .booking-section {
    padding: 1rem;
  }

  .booking-header {
    padding: 1.5rem;
  }

  .booking-header h2 {
    font-size: 1.5rem;
  }

  .booking-container {
    height: 60vh;
  }
}

@media (max-width: 480px) {
  .booking-section {
    padding: 0.5rem;
  }

  .booking-header {
    padding: 1rem;
  }

  .booking-header h2 {
    font-size: 1.3rem;
  }

  .booking-container {
    height: 55vh;
  }
}
