:root {
    --deep-plum: #3d1e54;
    --rich-purple: #5d3a7a;
    --med-purple: #7c5da2;
    --soft-purple: #bfb0d7;
    --lavender: #ede9f5;
    --warm-gold: #d4af37;
    --off-white: #f8f6f4;
    --charcoal: #2a2a2a;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #3d1e54 0%, #5d3a7a 100%);
    color: var(--off-white);
    line-height: 1.7;
    font-size: 17px;
    overflow-x: hidden;
}

.navbar {
    background: rgba(61, 30, 84, 0.98);
    backdrop-filter: blur(10px);
    padding: 1.2rem 0;
    position: sticky; top: 0; z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.18);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.14);
}
.nav-container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; display: flex; justify-content: space-between; align-items: center;}
.logo {
    font-size: 1.5rem; font-weight: 600; color: var(--warm-gold); display: flex; align-items: center; gap: 0.6rem; letter-spacing: 0.5px; text-transform: uppercase;
}
.logo i { font-size: 1.6rem; }
.nav-menu { display: flex; list-style: none; gap: 2.5rem; }
.nav-link {
    color: var(--off-white); text-decoration: none; font-weight: 500; font-size: 0.95rem; transition: color 0.3s; position: relative; letter-spacing: 0.3px;
}
.nav-link:hover { color: var(--warm-gold); }
.nav-link::after {
    content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px; background: var(--warm-gold); transition: width 0.3s;
}
.nav-link:hover::after { width: 100%; }
.hamburger { display: none; flex-direction: column; cursor: pointer; gap: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--warm-gold); border-radius: 2px; transition: all 0.3s; }

.hero,
.about,
.gallery,
.calendar,
.contact {
    background: linear-gradient(135deg, #3d1e54 0%, #5d3a7a 100%);
}

.hero {
    min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    position: relative; text-align: center; padding: 4rem 2rem; overflow: hidden;
}
.hero::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
    pointer-events: none;
}
.stars {
    position: absolute; width: 100%; height: 100%; top: 0; left: 0;
    background-image:
        radial-gradient(1px 1px at 15% 25%, rgba(248,246,244,0.25), transparent),
        radial-gradient(1px 1px at 85% 60%, rgba(197,181,214,0.13), transparent),
        radial-gradient(1px 1px at 50% 80%, rgba(219,185,118,0.18), transparent),
        radial-gradient(2px 2px at 70% 15%, rgba(248,246,244,0.22), transparent);
    background-size: 300px 300px, 250px 250px, 350px 350px, 200px 200px;
    background-position: 0 0, 100px 100px, 50px 200px, 200px 50px;
    opacity: 0.3;
    animation: drift 60s linear infinite;
}
@keyframes drift { 0% { transform: translate(0, 0); } 100% { transform: translate(-50px, -30px); } }
.hero-content { position: relative; z-index: 10; max-width: 900px; animation: fadeInUp 1s ease-out; }
.hero h1 { font-size: 4.5rem; margin-bottom: 1.5rem; color: var(--warm-gold); font-weight: 400; letter-spacing: 2px; line-height: 1.2; }
.hero h1 span { color: var(--off-white); font-weight: 400; }
.hero p { font-size: 1.3rem; margin-bottom: 0.8rem; color: var(--lavender); font-weight: 400; letter-spacing: 0.5px; }
.hero .subtitle { font-size: 1.05rem; margin-bottom: 2.5rem; color: #e0d9ed; font-style: italic; font-weight: 300; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.cta-button {
    display: inline-block; padding: 1rem 3rem; background: var(--warm-gold); color: var(--deep-plum); text-decoration: none; font-weight: 600; border-radius: 6px;
    transition: all 0.3s; letter-spacing: 1px; text-transform: uppercase; font-size: 0.9rem; border: none; box-shadow: 0 4px 15px rgba(212,175,55,0.12);
}
.cta-button:hover {
    background: #f2d989; color: #563d6a; transform: translateY(-2px); box-shadow: 0 6px 25px rgba(212,175,55,0.32);
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
section { padding: 2rem 1.5rem; }
section h2 {
    font-size: 2.7rem; margin-bottom: 3rem; text-align: center; color: var(--warm-gold); font-weight: 400; letter-spacing: 1px; position: relative; padding-bottom: 1rem;
}
section h2::after {
    content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 60px; height: 2px; background: var(--warm-gold);
}

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

.about-text h3 { font-size: 1.8rem; color: var(--soft-purple); margin-bottom: 1.5rem; font-weight: 400; }
.about-text p { margin-bottom: 1.5rem; color: #e8e2f3; line-height: 1.8; font-size: 1.07rem; }
.about-text p {
    margin-bottom: 1.5rem;
    color: #e8e2f3;
    line-height: 1.8;
    font-size: 1.07rem;
    max-width: 60ch;
}
.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;   /* was 1.5rem */
}
/* What to Bring section */
.what-to-bring {
  background: linear-gradient(135deg, #3d1e54 0%, #5d3a7a 100%);
}

.bring-intro {
  max-width: 640px;
  margin: 0 auto 2rem auto;
  text-align: center;
  color: #e8e2f3;
  font-size: 1rem;
}

.bring-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  max-width: 700px;
  margin: 0 auto;
}

.bring-item {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(127, 93, 162, 0.25);
  border-radius: 999px;
  padding: 0.7rem 1.6rem;
  color: #f8f6f4;
  font-size: 0.95rem;
  border: 1px solid rgba(212, 175, 55, 0.4);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.bring-emoji {
  font-size: 1.1rem;
}

.bring-text {
  white-space: nowrap;
}
.highlight-card,
.info-card {
    background: rgba(127, 93, 162, 0.18);
    border-left: 3px solid var(--warm-gold);
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.10);
    color: var(--off-white);
}
.highlight-card:hover, .info-card:hover {
    background: rgba(127, 93, 162, 0.24);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 6px 20px rgba(93, 58, 122, 0.14);
}
.info-card {
    background: rgba(127, 93, 162, 0.18);
    border-left: 3px solid var(--warm-gold);
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.10);
    color: var(--off-white);
}

.info-card a {
    color: var(--soft-purple);   /* link color that matches the site */
    text-decoration: none;
    font-weight: 500;
}

.info-card a:hover {
    color: var(--warm-gold);     /* gold on hover */
    text-decoration: underline;
}

.highlight-card:hover,
.info-card:hover {
    background: rgba(127, 93, 162, 0.24);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 6px 20px rgba(93, 58, 122, 0.14);
}
.highlight-card i,
.info-card i {
    font-size: 2rem; color: var(--warm-gold); margin-bottom: 1rem; }
.highlight-card h4, .info-card h4 {
    color: var(--soft-purple); margin-bottom: 0.8rem; font-size: 1.15rem; font-weight: 500; }
.highlight-card p, .info-card p { color: #e0d9ed; font-size: 0.98rem; }

.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; margin-bottom: 2rem; }
.gallery-item {
    position: relative;
    width: 100%;
    max-width: 500px;      /* optional: limits how wide each card can get */
    margin: 0 auto;
    height: 340px;         /* this is the visible “box” */
    overflow: hidden;      /* anything outside is hidden */
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.10);
    transition: transform 0.3s;
}
.gallery-item:hover { transform: translateY(-5px);}
.gallery-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;     /* scale + crop to fill */
    object-position: center;
    transition: transform 0.5s;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
    position: absolute; bottom: 0; left: 0; width: 100%; height: 100px; background: linear-gradient(180deg, transparent, #3d1e54 98%);
    opacity: 0; transition: opacity 0.3s; display: flex; align-items: flex-end; justify-content: center; padding: 2rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay h4 { color: var(--warm-gold); font-size: 1.2rem; font-weight: 400; letter-spacing: 1px; text-shadow:0 1px 5px #3d1e54;}
.gallery-note { text-align: center; color: #cfc7df; font-size: 0.92rem; font-style: italic; margin-top: 2rem; opacity: 0.8;}
.calendar-container { margin-bottom: 2rem; }
.calendar-container iframe { border: 1px solid #563776; border-radius: 12px; box-shadow: 0 4px 20px rgba(0,0,0,0.14); width: 100%; min-height: 600px; }
.calendar-embed-placeholder {
    background: linear-gradient(135deg, rgba(124, 93, 162, 0.08), rgba(212, 175, 55, 0.07));
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    color: #ebdff9;
}
.calendar-embed-placeholder i { font-size: 3.5rem; color: var(--warm-gold); margin-bottom: 1.5rem; }
.calendar-embed-placeholder h3 { color: var(--warm-gold); font-size: 1.8rem; margin-bottom: 1rem; font-weight: 400; }
.calendar-embed-placeholder p { color: #d2bee9; font-size: 1rem; margin-bottom: 1rem; max-width: 600px; line-height: 1.6; }
.calendar-responsive {
  position: relative;
  width: 100%;
  min-height: 600px;
  border: 1px solid #563776;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.14);
}

.calendar-responsive iframe {
  width: 100%;
  height: 600px;
  display: block;
}
.setup-steps { display: flex; gap: 2rem; margin-top: 2.5rem; flex-wrap: wrap; justify-content: center; }
.step { display: flex; flex-direction: column; align-items: center; gap: 0.8rem; max-width: 180px; }
.step-number { width: 50px; height: 50px; background: var(--warm-gold); color: #3d1e54; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; font-weight: 600;}
.step p { color: #faf8fc; font-size: 0.92rem; margin: 0;}
.calendar-info { margin-top: 2rem; padding: 1.5rem; background: rgba(212,175,55,0.08); border-left: 3px solid var(--warm-gold); border-radius: 6px; color: #e5deff;}
.calendar-info p { color: #ebe5fc; margin: 0; font-size: 0.95rem;}
.calendar-info i { color: var(--warm-gold); margin-right: 0.5rem; }

.contact-info { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem;}
.contact-form { display: flex; flex-direction: column; gap: 1.2rem;}
.contact-form input,.contact-form textarea {
    padding: 1rem; background: rgba(39,22,58,0.18); border: 1px solid #bfb0d7; border-radius: 6px;
    color: var(--off-white); font-family: inherit; font-size: 0.95rem; transition: all 0.3s;
}
.contact-form input::placeholder,.contact-form textarea::placeholder { color: #bfb0d7;}
.contact-form input:focus,.contact-form textarea:focus {
    outline: none; border-color: var(--warm-gold); box-shadow: 0 0 0 3px rgba(212,175,55,0.10);
}
.submit-btn {
    padding: 1rem; background: var(--warm-gold); color: #3d1e54; border: none; border-radius: 6px;
    font-weight: 600; font-size: 0.97rem; cursor: pointer; transition: all 0.3s; text-transform: uppercase; letter-spacing: 1px;
}
.submit-btn:hover { background: #f2d989; color: #563d6a; transform: translateY(-2px); box-shadow: 0 4px 25px rgba(212,175,55,0.18); }
.footer {
    background: #312048; color: #cda8f4; padding: 3rem 2rem 1.5rem;
}
.footer-content {
    display: grid; grid-template-columns: repeat(auto-fit,minmax(250px,1fr)); gap: 2.5rem; margin-bottom: 2rem;
}
.footer-section h5 { color: var(--warm-gold); margin-bottom: 1rem; font-weight: 500; letter-spacing: 0.5px; font-size: 1.05rem;}
.footer-section p { color: #cda8f4; font-size: 0.9rem; line-height: 1.6;}
.footer-section ul { list-style: none;}
.footer-section ul li { margin-bottom: 0.6rem;}
.footer-section a { color: #e6d8ff; text-decoration: none; transition: color 0.3s; font-size: 0.9rem;}
.footer-section a:hover { color: var(--warm-gold);}
.social-links { display: flex; gap: 1rem;}
.social-links a {
    display: flex; align-items: center; justify-content: center; width: 40px; height: 40px;
    background: rgba(108, 86, 137, 0.18); border-radius: 50%; font-size: 1.12rem;
    transition: all 0.3s; color: var(--warm-gold);
}
.social-links a:hover { background: var(--warm-gold); color: #3d1e54;}
.footer-bottom { text-align: center; padding-top: 2rem; border-top: 1px solid rgba(212,175,55,0.16); color: #d1c4e9; font-size: 0.81rem;}

/* Responsive */
@media (max-width: 768px) {
    .hamburger { display: flex; }
    .nav-menu {
        position: absolute; top: 100%; left: 0; width: 100%;
        background: #3d1e54; flex-direction: column; padding: 2rem; gap: 1.5rem; display: none; backdrop-filter: blur(10px);
    }
    .nav-menu.active { display: flex;}
    .hero h1 { font-size: 2.5rem;}
    .hero p { font-size: 1.1rem;}
    .about-content,.contact-content { grid-template-columns: 1fr; gap: 2.5rem;}
    .contact-info { grid-template-columns: 1fr;}
    .gallery-grid { grid-template-columns: 1fr;}
    section { padding: 4rem 1.5rem;}
    section h2 { font-size: 2rem;}
        .calendar { padding-left: 0; padding-right: 0; }
    .calendar .container { padding-left: 1rem; padding-right: 1rem; }
        .calendar-responsive {
      min-height: 500px;
    }
    
    .calendar-responsive iframe {
      height: 500px;
    }
}
@media (max-width: 480px) {
    .hero h1 { font-size: 2rem;}
    .cta-button { padding: 0.9rem 2rem; font-size: 0.85rem;}
    section { padding: 3rem 1rem;}
    section h2 { font-size: 1.7rem;}
    .setup-steps { flex-direction: column; gap: 1.5rem;}
}
