/* ===================================
   COMPONENTS STYLESHEET
   =================================== */

/* Navigation - Editorial Style */
.navbar {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: var(--nav-bg);
  backdrop-filter: blur(20px);
  box-shadow: var(--nav-shadow);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 3rem;
  transition: all 0.4s ease;
}

.navbar.scrolled {
  background: var(--nav-bg);
  box-shadow: var(--nav-shadow);
}

.navbar .logo {
  font-family: 'Dawning of a New Day', cursive;
  font-weight: 400;
  font-style: normal;
  font-size: 1.4rem;
  color: var(--primary);
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: all 0.3s ease;
}

.navbar.scrolled .logo {
  color: var(--ruby);
}

.navbar-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Hide mobile language toggle on desktop */
.language-toggle-mobile {
  display: none;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.language-toggle {
  display: flex;
  gap: 0.5rem;
  border: 1px solid var(--ruby);
  border-radius: 0;
  padding: 0.2rem;
  background: var(--rose-ivory);
}

.lang-btn {
  background: transparent;
  border: none;
  padding: 0.4rem 0.8rem;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--ruby);
  cursor: pointer;
  border-radius: 0;
  transition: all 0.3s ease;
}

.lang-btn.active {
  background: var(--ruby);
  color: var(--almond);
}

.navbar ul li {
  position: relative;
}

.navbar ul li a {
  font-family: var(--font-heading);
  text-transform: none;
  font-weight: 400;
  color: var(--primary);
  text-decoration: none;
  font-size: 1.35rem;
  padding: 0.5rem 0.8rem;
  transition: all 0.3s ease;
  position: relative;
  letter-spacing: 0.02em;
}

.navbar.scrolled ul li a {
  color: var(--ruby);
}

.navbar ul li a::after {
  content: '';
  position: absolute;
  bottom: 0.3rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--dusty-pink);
  transition: all 0.3s ease;
  border-radius: 0;
}

.navbar.scrolled ul li a::after {
  background: var(--ruby);
}

.navbar ul li a.active::after,
.navbar ul li a:hover::after {
  width: 100%;
}

.navbar ul li a.active,
.navbar ul li a:hover {
  background: transparent;
}

/* Hamburger Menu */
.navbar .hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.navbar .hamburger span {
  width: 25px;
  height: 3px;
  background: var(--ruby);
  border-radius: 0;
  transition: all 0.3s;
}

.navbar.scrolled .hamburger span {
  background: var(--ruby);
}

/* Sound Wave Animation */
.sound-wave {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  margin-bottom: 0.5rem;
  height: 20px;
}

.wave-bar {
  width: 3px;
  background: var(--ruby);
  border-radius: 0;
  animation: wave 1.5s ease-in-out infinite;
}

.wave-bar:nth-child(1) {
  animation-delay: 0s;
  height: 8px;
}

.wave-bar:nth-child(2) {
  animation-delay: 0.1s;
  height: 12px;
}

.wave-bar:nth-child(3) {
  animation-delay: 0.2s;
  height: 16px;
}

.wave-bar:nth-child(4) {
  animation-delay: 0.1s;
  height: 12px;
}

.wave-bar:nth-child(5) {
  animation-delay: 0s;
  height: 8px;
}

@keyframes wave {

  0%,
  100% {
    transform: scaleY(1);
  }

  50% {
    transform: scaleY(1.5);
  }
}

/* Microphone Icon Animation */
.microphone-icon {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: center;
}

.microphone-icon i {
  font-size: 1.2rem;
  color: var(--ruby);
  animation: pulse 2s ease-in-out infinite;
}

/* Media Icon Animation */
.media-icon {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: center;
}

.media-icon i {
  font-size: 1.2rem;
  color: var(--ruby);
  animation: pulse 2s ease-in-out infinite;
}

/* Contact Icon Animation */
.contact-icon {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: center;
}

.contact-icon i {
  font-size: 1.2rem;
  color: var(--ruby);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.2);
    opacity: 1;
  }
}

/* Banner column hover effects */
.banner-column:hover .sound-wave .wave-bar {
  animation-duration: 0.8s;
}

.banner-column:hover .microphone-icon i,
.banner-column:hover .media-icon i,
.banner-column:hover .contact-icon i {
  animation-duration: 1s;
}

/* Hero Section - Editorial Full-Width with Typography Overlay */
.hero {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 0;
  overflow: hidden;
}

/* Hero background image as separate element */
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  z-index: 0;
}

/* Soft gradient overlay for text legibility - very subtle */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom,
      rgba(253, 245, 244, 0.1) 0%,
      rgba(250, 249, 247, 0.18) 100%);
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top,
      rgba(253, 245, 244, 0.3),
      transparent);
  z-index: 2;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .hero {
    height: 50vh;
    margin-top: 10%;
    /* Smaller height on mobile */
  }

  .hero::after {
    height: 35%;
    /* Smaller overlay on mobile */
  }
}


.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: var(--primary);
  max-width: 800px;
  padding: 0 2rem;
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(3rem, 8vw, 5rem);
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  text-shadow: 0 4px 20px rgba(59, 59, 59, 0.12);
  color: var(--primary);
}

/* Hero Banner - Horizontal Layout for All Views */
.hero-banner {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: var(--powder);
  padding: 2rem 1.5rem;
  border-top: 1px solid rgba(59, 59, 59, 0.08);
  border-bottom: 1px solid rgba(59, 59, 59, 0.08);
  gap: 1rem;
}

.banner-column {
  flex: 1;
  max-width: 400px;
  text-align: center;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 1.5rem 1rem;
  text-decoration: none;
  display: block;
  color: inherit;
}

.banner-column:hover {
  transform: translateY(-2px);
}

.banner-column:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
  background: rgba(59, 59, 59, 0.1);
}

.banner-column h3 {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--primary);
  margin: 0;
  letter-spacing: 0.02em;
  text-transform: uppercase
}

.banner-column p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  color: var(--primary);
  margin: 0;
  letter-spacing: 0.03em;
  opacity: 0.85;
}

/* Mobile adjustments for hero banner */
@media (max-width: 768px) {
  .hero-banner {
    padding: 1.5rem 1rem;
    gap: 0.5rem;
  }

  .banner-column {
    padding: 1rem 0.5rem;
  }

  .banner-column h3 {
    font-size: 0.9rem;
  }

  .banner-column p {
    font-size: 0.75rem;
  }

  .hero-background {
    object-position: center center;
  }
}

/* About Section - Alternating Image/Text Layout */
.about-section {
  background: var(--powder);
  padding: 100px 0;
}

.about-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
}

.about-text {
  position: relative;
}

.about-image {
  position: relative;
}

.about-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 2.5rem;
  color: var(--ruby);
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

.about-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 1.3rem;
  color: var(--ruby);
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}

.about-text p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  color: var(--ruby);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.about-tag {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--ruby);
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.5rem 1rem;
  border: 1px solid var(--ruby);
  background: transparent;
  transition: all 0.3s ease;
}

.about-tag:hover {
  background: var(--ruby);
  color: var(--almond);
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  object-fit: cover;
  border-radius: 0;
  display: block;
}

/* Gallery Section - Editorial Grid Layout */
.gallery-section {
  background: var(--powder);
  width: 100%;
  padding: 100px 0;
}

.gallery-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
}

.gallery-container h2 {
  margin-bottom: 4rem;
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(2.5rem, 6vw, 4rem);
  letter-spacing: 0.02em;
}

.gallery-collage {
  position: relative;
  height: 400px;
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.collage-item {
  position: absolute;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(59, 59, 59, 0.12);
  transition: all 0.4s ease;
  border-radius: 0;
}

.collage-item:hover {
  transform: scale(1.05) rotate(1deg);
  box-shadow: 0 16px 48px rgba(59, 59, 59, 0.18);
  z-index: 10;
}

.collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Collage positioning */
.collage-item-1 {
  width: 200px;
  height: 250px;
  top: 20px;
  left: 50%;
  transform: translateX(-50%) rotate(-3deg);
  z-index: 1;
}

.collage-item-2 {
  width: 180px;
  height: 220px;
  top: 80px;
  left: 30%;
  transform: translateX(-50%) rotate(2deg);
  z-index: 2;
}

.collage-item-3 {
  width: 160px;
  height: 200px;
  top: 60px;
  left: 70%;
  transform: translateX(-50%) rotate(-1deg);
  z-index: 3;
}

.collage-item-4 {
  width: 140px;
  height: 180px;
  top: 150px;
  left: 50%;
  transform: translateX(-50%) rotate(4deg);
  z-index: 4;
}

.gallery-cta {
  text-align: center;
  margin-top: 2rem;
}

/* Editorial buttons - Consistent Dusty Pink treatment */
.gallery-button {
  text-align: center;
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  color: var(--primary);
  text-decoration: none;
  padding: 1.25rem 3rem;
  border: 2px solid var(--dusty-pink);
  background: transparent;
  transition: all 0.3s ease;
  letter-spacing: 0.03em;
  text-transform: none;
  border-radius: 0;
}

.gallery-button:hover {
  background: var(--dusty-pink);
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(59, 59, 59, 0.12);
}

/* Lessons Section - Editorial Two-Column Split */
.lessons-section {
  background: var(--pearl-white);
  width: 100%;
  padding: 100px 0;
}

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

.lessons-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}

/* Editorial typography hierarchy - heading font for titles */
.lessons-text h2 {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--primary);
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.lessons-paragraph {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.125rem;
  color: var(--primary);
  line-height: 1.7;
  margin-bottom: 1.2rem;
  opacity: 0.9;
}

.lessons-cta {
  margin-top: 1.5rem;
}

/* Editorial-style buttons - Dusty Pink accent */
.lessons-button {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  color: var(--primary);
  text-decoration: none;
  padding: 1.25rem 2.5rem;
  background: var(--dusty-pink);
  border: 2px solid var(--dusty-pink);
  letter-spacing: 0.03em;
  text-transform: none;
  transition: all 0.3s ease;
  border-radius: 0;
  box-shadow: 0 4px 16px rgba(59, 59, 59, 0.08);
}

.lessons-button:hover {
  background: transparent;
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(59, 59, 59, 0.12);
}

.lessons-subtext {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--primary);
  margin-top: 1.2rem;
  opacity: 0.75;
  letter-spacing: 0.02em;
}

/* Soft image layering effect */
.lessons-image img {
  width: 100%;
  object-fit: cover;
  border-radius: 0;
  box-shadow: 0 12px 40px rgba(59, 59, 59, 0.12);
  transition: transform 0.4s ease;
}

.lessons-image img:hover {
  transform: scale(1.02);
}

@media (max-width: 900px) {
  .lessons-content {
    grid-template-columns: 1fr;
  }

  .lessons-text h2 {
    font-size: 2.1rem;
  }
}

@media (max-width: 600px) {
  .lessons-section {
    padding: 2rem 0;
  }

  .lessons-text h2 {
    font-size: 1.9rem;
  }

  .lessons-paragraph {
    font-size: 0.98rem;
  }

}

/* Modern Contact Button - Bottom Right Floating Action Button */
/* Always accessible, clean design matching editorial aesthetic */
.floating-bar {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: var(--dusty-pink);
  color: var(--primary);
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 1.5rem;
  box-shadow: 0 8px 24px rgba(59, 59, 59, 0.15);
  border: 2px solid var(--pearl-white);
  position: relative;
  z-index: 10;
}

.contact-toggle:hover {
  background: var(--accent);
  transform: scale(1.05);
  box-shadow: 0 12px 32px rgba(59, 59, 59, 0.2);
}

.contact-toggle.expanded {
  background: var(--charcoal);
  color: var(--pearl-white);
}

.contact-toggle.expanded i {
  transform: rotate(135deg);
}

/* Contact Icons - Vertical Stack */
.contact-icons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(20px) scale(0.8);
  pointer-events: none;
  margin-bottom: 76px;
  position: absolute;
  right: 0;
  bottom: 0;
}

.contact-icons.expanded {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.floating-bar a {
  color: var(--primary);
  font-size: 1.3rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 0;
  position: relative;
  background: var(--pearl-white);
  box-shadow: 0 4px 16px rgba(59, 59, 59, 0.12);
  border: 2px solid var(--dusty-pink);
}

.floating-bar a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 0;
  background: currentColor;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: -1;
}

.floating-bar a:hover {
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 8px 24px rgba(59, 59, 59, 0.18);
  border-color: currentColor;
}

.floating-bar a:hover i {
  color: white;
  z-index: 1;
  position: relative;
}

.floating-bar a:hover::before {
  opacity: 1;
}

/* Platform-specific colors */
.floating-bar a.email:hover {
  color: #EA4335;
}

.floating-bar a.phone:hover {
  color: #25D366;
}

.floating-bar a.instagram:hover {
  color: #E1306C;
}

.floating-bar a.facebook:hover {
  color: #1877F3;
}

.floating-bar a.whatsapp:hover {
  color: #25D366;
}

/* About Section - Editorial Wedding Style */
.about-section {
  background: var(--pearl-white);
  padding: 100px 0;
}

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

.invitation-wrap {
  background: var(--powder);
  border: 2px solid var(--dusty-pink);
  padding: 4rem;
  box-shadow: 0 8px 32px rgba(59, 59, 59, 0.08);
  border-radius: 0;
}

.invitation-header {
  text-align: center;
  padding: 0 1.5rem 1rem;
}

.invitation-monogram {
  font-family: var(--font-accent);
  font-style: italic;
  letter-spacing: 0.08em;
  font-weight: 500;
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  color: var(--primary);
}

.invitation-title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--primary);
  margin: 1rem 0 0.5rem;
  letter-spacing: 0.02em;
}

.invitation-subtitle {
  font-family: var(--font-body);
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  font-size: 0.9rem;
  opacity: 0.8;
}

.invitation-divider {
  height: 2px;
  background: linear-gradient(to right, transparent, var(--dusty-pink), transparent);
  width: 200px;
  margin: 1.5rem auto 0;
  border-radius: 0;
}

.invitation-card {
  margin: 1rem 0 0;
  padding: 3rem;
  border-radius: 0;
}

.invitation-quote {
  border: 2px solid var(--dusty-pink);
  padding: 2.5rem 2rem;
  margin: 2.5rem 0;
  text-align: center;
  position: relative;
  background: var(--pearl-white);
  border-radius: 0;
  box-shadow: 0 4px 20px rgba(59, 59, 59, 0.06);
}

.invitation-quote::after {
  content: '❦';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--powder);
  color: var(--primary);
  font-size: 1.6rem;
  padding: 0 1rem;
}

.invitation-quote-line {
  font-family: var(--font-accent);
  font-weight: 400;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--primary);
  font-style: italic;
  letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
  opacity: 0.9;
}

.invitation-quote-line:last-child {
  margin-bottom: 0;
}

.invitation-cta {
  text-align: center;
  padding: 1.5rem 1rem 0 1rem;
}

.invitation-button {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  color: var(--primary);
  text-decoration: none;
  padding: 1.25rem 3rem;
  background: var(--dusty-pink);
  border: 2px solid var(--dusty-pink);
  letter-spacing: 0.03em;
  text-transform: none;
  transition: all 0.3s ease;
  border-radius: 0;
  box-shadow: 0 4px 16px rgba(59, 59, 59, 0.08);
}

.invitation-button:hover {
  background: transparent;
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(59, 59, 59, 0.12);
}

.invitation-note {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--primary);
  margin-top: 1rem;
  opacity: 0.75;
  letter-spacing: 0.01em;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-text {
  position: relative;
}

.about-text p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.125rem;
  color: var(--primary);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  text-align: justify;
  letter-spacing: 0.01em;
}

.about-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2.5rem 0;
}

.about-image img {
  width: 100%;
  max-width: 500px;
  object-fit: cover;
  border-radius: 0;
  box-shadow: 0 16px 48px rgba(59, 59, 59, 0.12);
  transition: all 0.4s ease;
}

.about-image img:hover {
  transform: scale(1.02);
  box-shadow: 0 24px 64px rgba(59, 59, 59, 0.18);
}

/* Mobile responsive - keeps button accessible but smaller */
@media (max-width: 768px) {
  .floating-bar {
    bottom: 24px;
    right: 24px;
  }

  .contact-toggle {
    width: 56px;
    height: 56px;
    font-size: 1.3rem;
    box-shadow: 0 6px 20px rgba(59, 59, 59, 0.18);
  }

  .contact-icons {
    margin-bottom: 68px;
  }

  .floating-bar a {
    font-size: 1.2rem;
    width: 48px;
    height: 48px;
  }

  .about-section {
    padding: 2rem 0;
  }

  .about-container {
    padding: 0 1.5rem;
  }

  .invitation-wrap {
    padding: 2rem;
  }

  .invitation-card {
    padding: 1.25rem;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-text p {
    font-size: 1rem;
    line-height: 1.7;
    text-align: left;
    margin-bottom: 2rem;
  }

  .about-image {
    margin: 2rem 0;
  }

  .about-image img {
    max-width: 100%;
  }

  .invitation-button {
    padding: 1rem 1.5rem;
    font-size: 0.9rem;
    white-space: normal;
    word-wrap: break-word;
    max-width: 100%;
    text-align: center;
  }

  .invitation-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    padding: 1.5rem 1rem 0 1rem;
  }

  .invitation-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .about-main {
    padding: 2rem 0;
  }

  .about-container {
    padding: 0 1rem;
  }

  .invitation-title {
    font-size: 2.1rem;
  }

  .invitation-subtitle {
    letter-spacing: 2px;
  }

  .invitation-card {
    padding: 1rem;
  }

  .about-content {
    gap: 2rem;
  }

  .about-text p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .invitation-button {
    padding: 0.9rem 1.2rem;
    font-size: 0.85rem;
  }
}