/* ============================================
   OWNYOURWEB — Wedding Template Style 8
   Sunflower Summer Bright
   ============================================ */

:root {
  --color-bg: #fffdf5;
  --color-surface: #ffffff;
  --color-text: #3d3d29;
  --color-text-muted: #7a7a5f;
  --color-accent: #f4a900;
  --color-accent-hover: #ffc107;
  --color-sunflower: #f4a900;
  --color-sunflower-light: #ffe066;
  --color-leaf: #7cb342;
  --color-leaf-light: #aed581;
  --font-display: 'Amatic SC', Georgia, serif;
  --font-body: 'Nunito', -apple-system, sans-serif;
}

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

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}

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

/* ============================================
   HEADER
   ============================================ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--color-surface);
  box-shadow: 0 2px 20px rgba(244,169,0,0.1);
}

.logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-sunflower);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-sunflower);
  display: block;
  margin: 4px 0;
}

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

.nav-menu a{
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--color-text-muted);
}

.nav-menu a.active{
  color: var(--color-sunflower);
}

@media (max-width: 768px) {
  .nav-toggle{
    display: block;
  }
  .nav-menu{
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-surface);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    box-shadow: 0 10px 30px rgba(244,169,0,0.1);
  }
  .nav-menu.open{
    display: flex;
  }
}

/* ============================================
   HERO
   ============================================ */

.hero{
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}

.hero::before{
  content: '🌻';
  position: absolute;
  font-size: 30rem;
  opacity: 0.08;
  top: 5%;
  left: -5%;
  pointer-events: none;
}

.hero::after{
  content: '🌻';
  position: absolute;
  font-size: 40rem;
  opacity: 0.05;
  bottom: -10%;
  right: -5%;
  pointer-events: none;
}

.hero-content{
  position: relative;
  z-index: 1;
}

.hero-sunflower{
  font-size: 5rem;
  margin-bottom: 1rem;
  display: block;
}

.hero-hashtag{
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-sunflower);
  margin-bottom: 2rem;
}

.hero-names{
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 1rem;
  color: var(--color-text);
}

.hero-ampersand{
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--color-sunflower);
  display: block;
  margin: 0.5rem 0;
}

.hero-date{
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
  color: var(--color-text-muted);
}

.hero-location{
  font-size: 1rem;
  letter-spacing: 0.08em;
  margin-bottom: 3rem;
  color: var(--color-text-muted);
}

.hero-countdown{
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
}

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

.countdown-number{
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  display: block;
  color: var(--color-sunflower);
}

.countdown-label{
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-text-muted);
}

.btn{
  display: inline-block;
  padding: 1rem 2.5rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  border: 2px solid var(--color-sunflower);
  background: transparent;
  color: var(--color-sunflower);
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 0;
}

.btn:hover{
  background: var(--color-sunflower);
  color: var(--color-bg);
}

.btn-primary{
  background: var(--color-sunflower);
  color: var(--color-bg);
}

/* ============================================
   SECTION
   ============================================ */

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

.section-title{
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  letter-spacing: 0.05em;
  color: var(--color-text);
}

.section-title::before{
  content: '🌻 ';
}

.section-title::after{
  content: ' 🌻';
}

/* ============================================
   SCHEDULE
   ============================================ */

.event-card{
  background: var(--color-surface);
  padding: 3.5rem;
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
  box-shadow: 0 5px 30px rgba(244,169,0,0.1);
  border: 2px solid var(--color-sunflower-light);
}

.event-title{
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.event-time{
  color: var(--color-sunflower);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}

.event-venue{
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.event-address{
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.event-actions{
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.btn-small{
  padding: 0.8rem 1.5rem;
  font-size: 0.8rem;
}

/* ============================================
   TRAVEL
   ============================================ */

.hotels-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.hotel-card{
  background: var(--color-surface);
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(244,169,0,0.1);
  border-left: 4px solid var(--color-sunflower);
}

.hotel-icon{
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hotel-name{
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.hotel-address{
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.hotel-phone{
  color: var(--color-sunflower);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.hotel-note{
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-style: italic;
  margin-bottom: 1rem;
}

/* ============================================
   REGISTRY
   ============================================ */

.registry-card{
  background: var(--color-surface);
  padding: 4rem 3rem;
  text-align: center;
  max-width: 450px;
  margin: 0 auto;
  box-shadow: 0 5px 30px rgba(244,169,0,0.1);
  border: 2px solid var(--color-sunflower-light);
}

.registry-icon{
  font-size: 4rem;
  margin-bottom: 2rem;
}

.registry-title{
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.registry-note{
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.registry-group{
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: 1.5rem;
}

/* ============================================
   WEDDING PARTY
   ============================================ */

.party-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.party-card{
  background: var(--color-surface);
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 20px rgba(244,169,0,0.1);
  border-bottom: 4px solid var(--color-sunflower-light);
}

.party-photo{
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-sunflower-light) 0%, var(--color-sunflower) 100%);
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--color-bg);
  font-weight: 600;
}

.party-name{
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.party-role{
  color: var(--color-sunflower);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

/* ============================================
   FAQ
   ============================================ */

.faq-list{
  max-width: 700px;
  margin: 0 auto;
}

.faq-item{
  background: var(--color-surface);
  margin-bottom: 1rem;
  padding: 2rem;
  border-left: 4px solid var(--color-sunflower);
}

.faq-question{
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.faq-answer{
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ============================================
   RSVP
   ============================================ */

.rsvp-form{
  background: var(--color-surface);
  padding: 3rem;
  max-width: 450px;
  margin: 0 auto;
  box-shadow: 0 5px 30px rgba(244,169,0,0.1);
  border: 2px solid var(--color-sunflower-light);
}

.rsvp-intro{
  text-align: center;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.form-group{
  margin-bottom: 1.5rem;
}

.form-label{
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-sunflower);
}

.form-input{
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  border: 2px solid var(--color-sunflower-light);
  font-family: var(--font-body);
  background: var(--color-bg);
  transition: border-color 0.3s;
}

.form-input:focus{
  outline: none;
  border-color: var(--color-sunflower);
}

.form-hint{
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: 0.5rem;
  font-style: italic;
}

/* ============================================
   FOOTER
   ============================================ */

.footer{
  background: var(--color-surface);
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 -2px 20px rgba(244,169,0,0.1);
}

.footer-tagline{
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-sunflower);
  margin-bottom: 2rem;
}

.footer-links{
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.footer-links a{
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--color-text-muted);
}

.footer-links a:hover{
  color: var(--color-sunflower);
}

.footer-copyright{
  font-size: 0.85rem;
  color: var(--color-text-muted);
  opacity: 0.7;
}

.footer-powered{
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  opacity: 0.5;
}

.footer-powered a{
  color: var(--color-sunflower);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
  .hero-names{
    font-size: 3.5rem;
  }
  .hero-countdown{
    gap: 1.5rem;
  }
  .countdown-number{
    font-size: 2rem;
  }
  .section{
    padding: 4rem 1.5rem;
  }
  .section-title{
    font-size: 2rem;
  }
  .header{
    padding: 1rem 1.5rem;
  }
}
