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

html {
  scroll-behavior: smooth;
}

@font-face {
  font-family: "Littlelove";
  src: url("fonts/little-love.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

:root {
  --primary-color: #8b7ab8;
  --secondary-color: #5d6f5d;
  --accent-pink: #e8a5c7;
  --accent-blue: #7ba7d9;
  --accent-yellow: #f4c87b;
  --text-light: #ffffff;
  --text-dark: #4a4a4a;
  --bg-light: #fdfbf7;
  --bg-cream: #fff9f3;
  --soft-green: #9bb89b;
}

body {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  line-height: 1.8;
  color: var(--text-dark);
  background: var(--bg-light);
  font-size: 20px;
}

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

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

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

.nav-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  font-weight: 300;
  font-style: normal;
  color: var(--text-dark);
  text-decoration: none;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.nav-logo:hover {
  color: var(--primary-color);
}

.nav-ampersand {
  font-family: "Littlelove", cursive;
  font-size: 2rem;
  font-weight: normal;
  text-transform: none;
  letter-spacing: 0.05em;
}

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

.nav-link {
  font-family: "Cormorant Garamond", serif;
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 400;
  font-size: 1.3rem;
  transition: color 0.3s;
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background: var(--text-dark);
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: var(--bg-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 20px;
}

.hero-left-flowers {
  position: absolute;
  top: 0;
  left: 0;
  width: 180px;
  height: 100%;
  background-image: url("images/flower-border-right.png");
  background-size: auto 100%;
  background-position: left center;
  background-repeat: no-repeat;
  opacity: 0.6;
  transform: scaleX(-1);
  z-index: 2;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 100%;
  background-image: url("images/flower-border-right.png");
  background-size: auto 100%;
  background-position: right center;
  background-repeat: no-repeat;
  opacity: 0.6;
  z-index: 2;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    ellipse at center,
    transparent 0%,
    rgba(255, 249, 243, 0.4) 70%,
    rgba(255, 249, 243, 0.6) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  text-align: center;
  z-index: 10;
  position: relative;
  padding: 0 20px 80px;
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-family: "Cormorant Garamond", serif;
  color: var(--secondary-color);
  margin-bottom: 1rem;
  line-height: 0.85;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-title-line {
  display: block;
  font-size: 6rem;
  font-weight: 300;
  font-style: normal;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-ampersand {
  font-family: "Littlelove", cursive;
  font-size: 5rem;
  font-weight: normal;
  text-transform: none;
  letter-spacing: 0;
}

.hero-subtitle {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.hero-date {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.hero-location {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  color: var(--secondary-color);
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
}

/* Sections */
.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 4.5rem;
  font-weight: 300;
  font-style: italic;
  text-align: center;
  color: var(--secondary-color);
  margin-bottom: 4rem;
  letter-spacing: 0.03em;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: var(--primary-color);
}

/* Guest Information Section */
.guest-info-section {
  padding: 120px 0;
  background: var(--bg-light);
  position: relative;
}

.guest-info-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("images/flower-pattern.png");
  background-size: 800px auto;
  background-position: center;
  background-repeat: repeat;
  opacity: 0.08;
  pointer-events: none;
}

.guest-info-intro {
  max-width: 900px;
  margin: 0 auto 3rem;
  padding: 2rem;
  text-align: center;
}

.guest-info-intro p {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.guest-info-intro p:last-child {
  margin-bottom: 0;
  font-style: italic;
  margin-top: 1.5rem;
}

.guest-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.guest-info-card {
  background: white;
  padding: 3rem;
  border: 1px solid rgba(139, 122, 184, 0.15);
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.guest-info-card:hover {
  box-shadow: 0 8px 25px rgba(139, 122, 184, 0.15);
  transform: translateY(-2px);
}

.guest-info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--accent-pink),
    var(--primary-color),
    var(--accent-blue)
  );
  transform: scaleX(0);
  transition: transform 0.3s;
}

.guest-info-card:hover::before {
  transform: scaleX(1);
}

.guest-info-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  font-weight: 400;
  font-style: italic;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
  text-align: center;
}

.guest-info-content p {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.guest-info-content p:last-child {
  margin-bottom: 0;
}

.guest-info-content a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
}

.guest-info-content a:hover {
  color: var(--secondary-color);
  border-bottom-color: var(--secondary-color);
}

/* Details Section */
.details-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.details-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -100px;
  width: 300px;
  height: 80%;
  background-image: url("images/flower-border-right.png");
  background-size: contain;
  background-position: left center;
  background-repeat: no-repeat;
  opacity: 0.2;
  transform: scaleX(-1) translateY(-50%);
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  align-items: stretch;
}

.detail-card {
  text-align: center;
  padding: 3rem;
  background: white;
  border: 1px solid rgba(139, 122, 184, 0.15);
  border-radius: 0;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
  position: relative;
  min-height: 400px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.detail-card:hover {
  box-shadow: 0 8px 25px rgba(139, 122, 184, 0.15);
}

.detail-card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--accent-pink),
    var(--primary-color),
    var(--accent-blue)
  );
  opacity: 0;
  transition: opacity 0.3s;
}

.detail-card:hover::before {
  opacity: 1;
}

.detail-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.3rem;
  font-weight: 400;
  font-style: italic;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
}

.detail-time {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 400;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}

.detail-venue {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  color: var(--primary-color);
  font-weight: 400;
  font-style: italic;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.detail-card p {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.venue-description {
  margin: 1rem 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #666;
}

.schedule-items p {
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
}

.schedule-note {
  margin-top: 3rem;
  font-style: italic;
  font-size: 0.9rem;
  color: #666;
}

/* Map styles */
.map-container {
  margin: 1.5rem 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.map-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.map-link:hover {
  color: var(--secondary-color);
}

/* Toastmasters Section */
.toastmasters-section {
  padding: 120px 0;
  background: var(--bg-light);
  position: relative;
}

.toastmasters-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("images/flower-pattern.png");
  background-size: 800px auto;
  background-position: center;
  background-repeat: repeat;
  opacity: 0.08;
  pointer-events: none;
}

.toastmasters-intro {
  max-width: 700px;
  margin: 0 auto 3rem;
  text-align: center;
  background: white;
  padding: 2.5rem;
  border: 1px solid rgba(139, 122, 184, 0.15);
  border-radius: 8px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 1;
}

.toastmasters-intro p {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.toastmasters-intro p:last-child {
  margin-bottom: 0;
}

.toastmasters-intro h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--secondary-color);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.toastmasters-intro strong {
  color: var(--secondary-color);
  font-weight: 500;
}

.toastmasters-intro a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
}

.toastmasters-intro a:hover {
  color: var(--secondary-color);
  border-bottom-color: var(--secondary-color);
}

.toastmasters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.toastmaster-card {
  background: white;
  padding: 2.5rem;
  border: 1px solid rgba(139, 122, 184, 0.15);
  border-radius: 8px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.toastmaster-image {
  width: 150px;
  height: 150px;
  margin: 0 auto 1.5rem;
  overflow: hidden;
  border-radius: 50%;
  border: 2px solid rgba(139, 122, 184, 0.2);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.toastmaster-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.placeholder-image {
  width: 100%;
  height: 100%;
  background: var(--soft-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  color: white;
  font-weight: 500;
}

.toastmaster-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
  font-weight: 400;
  font-style: italic;
}

.toastmaster-card > p {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.toastmaster-contact {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(139, 122, 184, 0.15);
}

.toastmaster-contact p {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  color: var(--text-dark);
}

/* OSA Section */
.osa-section {
  padding: 120px 0;
  background: white;
  position: relative;
}

.osa-intro {
  max-width: 600px;
  margin: 0 auto 2rem;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--text-dark);
}

.osa-form-container {
  max-width: 600px;
  margin: 0 auto;
  background: var(--bg-light);
  padding: 3rem;
  border: 1px solid rgba(139, 122, 184, 0.15);
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.osa-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

.form-group input[type="text"],
.form-group select,
.form-group textarea {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(139, 122, 184, 0.3);
  background: white;
  transition: all 0.3s;
}

.form-group input[type="text"]:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(139, 122, 184, 0.1);
}

.submit-button {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 1rem 3rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 1rem;
}

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

.submit-button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.success-message,
.error-message {
  text-align: center;
  padding: 2rem;
  border-radius: 8px;
  margin-top: 2rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
}

.success-message {
  background: rgba(155, 184, 155, 0.1);
  border: 1px solid var(--soft-green);
  color: var(--secondary-color);
}

.success-message h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  font-weight: 400;
  font-style: italic;
}

.error-message {
  background: rgba(232, 165, 199, 0.1);
  border: 1px solid var(--accent-pink);
  color: var(--secondary-color);
}

.submission-summary {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: white;
  border-radius: 8px;
  text-align: left;
  font-size: 1.1rem;
}

.submission-summary p {
  margin: 0.5rem 0;
  line-height: 1.6;
}

.submission-summary strong {
  color: var(--secondary-color);
  margin-right: 0.5rem;
}

.osa-deadline {
  text-align: center;
  margin-top: 2rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--primary-color);
}

/* Contact Section */
.contact-section {
  padding: 120px 0;
  background: var(--bg-light);
  position: relative;
}

.contact-content {
  display: block;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.contact-info h3,
.contact-details h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 400;
  font-style: italic;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
}

.contact-info ul {
  list-style: none;
  padding-left: 1.5rem;
}

.contact-info li {
  position: relative;
  margin-bottom: 1.2rem;
  font-size: 1.2rem;
  font-family: "Cormorant Garamond", serif;
}

.contact-info li:before {
  content: "❀";
  color: var(--primary-color);
  position: absolute;
  left: -1.8rem;
  font-size: 0.8rem;
}

.contact-details p {
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  font-family: "Cormorant Garamond", serif;
}

.contact-details strong {
  color: var(--secondary-color);
}

.contact-email {
  margin-top: 1.5rem;
}

.contact-email a {
  color: var(--primary-color);
  text-decoration: none;
  font-size: 1.2rem;
  font-family: "Cormorant Garamond", serif;
  transition: color 0.3s;
}

.contact-email a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

/* Footer */
.footer {
  padding: 2.5rem 0;
  background: var(--secondary-color);
  color: white;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 60px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 60"><path d="M 50 30 Q 100 10 150 30" stroke="white" stroke-width="1" fill="none" opacity="0.3"/><circle cx="100" cy="20" r="2" fill="white" opacity="0.4"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* Card flower accent */
.card-flower-accent {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 150px;
  height: 150px;
  background-image: url("images/flower-pattern.png");
  background-size: 300%;
  background-position: center;
  opacity: 0.2;
  border-radius: 50%;
  pointer-events: none;
  transform: rotate(45deg);
}

/* Hero content - no animation */
.hero-content {
  position: relative;
  z-index: 1;
}

/* Large Desktop */
@media (min-width: 1920px) {
  .hero::before {
    height: 300px;
  }
}

/* Medium Desktop */
@media (max-width: 1440px) {
  .hero::before {
    height: 180px;
  }

  .hero::after,
  .hero-left-flowers {
    width: 150px;
  }

  .hero-content {
    padding-bottom: 60px;
  }
}

/* Tablet Responsive */
@media (max-width: 1024px) {
  .hero-title-line {
    font-size: 4rem;
  }

  .hero-ampersand {
    font-size: 3.5rem;
  }

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

  .hero-date {
    font-size: 1.6rem;
  }

  .hero-location {
    font-size: 1.4rem;
  }

  .guest-info-intro {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }

  .guest-info-intro p {
    font-size: 1.1rem;
  }

  .hero::before {
    height: 200px;
  }

  .hero-content {
    padding-bottom: 60px;
  }

  /* Hide left border on small mobile */
  .hero-left-flowers {
    display: none;
  }

  .section-title {
    font-size: 3rem;
    margin-bottom: 3rem;
  }

  .details-section::before {
    left: -50px;
    width: 200px;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  body {
    font-size: 16px;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: var(--bg-cream);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
    z-index: 999;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-link {
    display: block;
    padding: 1rem 0;
    font-size: 1.2rem;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    min-height: 100vh;
    padding: 80px 0 20px;
  }

  .hero-title {
    margin-bottom: 1rem;
    gap: 1rem;
  }

  .hero-title-line {
    font-size: 2.8rem;
  }

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

  .hero-subtitle {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
  }

  .hero-date {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
  }

  .hero-location {
    font-size: 1.2rem;
  }

  .guest-info-intro {
    padding: 1.2rem;
  }

  .guest-info-intro p {
    font-size: 1.05rem;
  }

  /* Adjust flower borders for mobile */
  .hero::before {
    height: 200px;
    bottom: 0;
    opacity: 0.7;
  }

  /* Hide left border on mobile, keep only right */
  .hero-left-flowers {
    display: none;
  }

  .guest-info-section,
  .details-section,
  .contact-section {
    padding: 80px 0;
  }

  .guest-info-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .guest-info-card {
    padding: 2rem;
  }

  .guest-info-card h3 {
    font-size: 1.8rem;
  }

  .guest-info-content p {
    font-size: 1rem;
  }

  .details-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .detail-card {
    padding: 2rem;
    min-height: auto;
  }

  .detail-card h3 {
    font-size: 1.8rem;
  }

  .card-flower-accent {
    width: 100px;
    height: 100px;
    top: -20px;
    right: -20px;
  }

  .contact-content {
    grid-template-columns: 1fr;
  }

  .contact-info li,
  .contact-details p {
    font-size: 1rem;
  }

  .section-title {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
  }

  .section-title::after {
    bottom: -10px;
  }

  .details-section::before,
  .contact-section::after {
    display: none;
  }

  /* Toastmasters section responsive */
  .toastmasters-section {
    padding: 80px 0;
  }

  .toastmasters-intro {
    padding: 2rem 1.5rem;
  }

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

  .toastmaster-card {
    padding: 2rem 1.5rem;
  }

  /* OSA section responsive */
  .osa-section {
    padding: 80px 0;
  }

  .osa-form-container {
    padding: 2.5rem 1.5rem;
  }

  .form-group label {
    font-size: 1.2rem;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .hero-title-line {
    font-size: 2.2rem;
    letter-spacing: 0.1em;
  }

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

  .hero-subtitle {
    font-size: 1.4rem;
  }

  .hero-date {
    font-size: 1.2rem;
  }

  .hero-location {
    font-size: 1.1rem;
  }

  .guest-info-intro {
    padding: 1rem;
    margin-bottom: 1.5rem;
  }

  .guest-info-intro p {
    font-size: 1rem;
    margin-bottom: 0.8rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .hero::before {
    height: 150px;
  }

  /* Hide left border on small mobile */
  .hero-left-flowers {
    display: none;
  }

  /* OSA form responsive */
  .osa-form-container {
    padding: 1.5rem;
  }

  .form-group label {
    font-size: 1.1rem;
  }

  .form-group input[type="text"],
  .form-group select,
  .form-group textarea {
    font-size: 1rem;
  }

  .submit-button {
    font-size: 1.1rem;
    padding: 0.8rem 2rem;
  }

  .success-message,
  .error-message {
    font-size: 1.1rem;
    padding: 1.5rem;
  }

  .osa-deadline {
    font-size: 1rem;
  }
}
