
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: #ffffff;
  color: #2d2d2d;
  scroll-behavior: smooth;
}

h1, h2 {
  font-family: 'Cormorant Garamond', serif;
  color: #000;
}

header.intro {
  background: url(../images/intro-image.jpg) center/cover no-repeat;
  height: 100vh;
  color: white;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.intro-overlay {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 2em;
  border-radius: 10px;
}

header h1 {
  font-size: 3em;
}

.intro-title {
  font-size: 2.8em;
  margin-bottom: 0.2em;
  color: #f9f6f0;
}

.intro-name {
  font-size: 3em;
  margin: 0.2em 0;
  font-weight: 700;
  color: #ffd700;
  /* златист акцент */
}

.intro-date {
  font-size: 1.5em;
  margin-bottom: 1em;
  color: #ffffff;
}

.intro-subtitle {
  font-size: 1.2em;
  max-width: 600px;
  margin: auto;
  color: #ffffff;
}

/* Анимация за плавно появяване и издигане */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
}

.delay-1 {
  animation-delay: 0.3s;
}

.delay-2 {
  animation-delay: 0.6s;
}

.delay-3 {
  animation-delay: 0.9s;
}

.section {
  padding: 4em 2em;
}

.section.alt {
  background: #ffd70050;
}

.section h2 {
  font-size: 2em;
  margin-bottom: 1em;
  text-align: center;
}

ul {
  list-style: none;
  padding-left: 0;
}

ul li {
  margin-bottom: 1em;
  font-size: 1.1em;
}

footer {
  text-align: center;
  padding: 2em 1em;
  background: #eee6dc;
  font-style: italic;
}

.map-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.two-column {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
}

.two-column .text {
  flex: 1 1 50%;
}

.two-column .image {
  flex: 1 1 45%;
}

.reverse {
  flex-direction: row-reverse;
}

img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  margin-top: 1em;
}

.gallery img {
  width: calc(50% - 0.5em);
  cursor: pointer;
  transition: transform 0.3s;
}

.gallery img:hover {
  transform: scale(1.03);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1em;
  margin-top: 2em;
}

.gallery-grid img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  cursor: zoom-in;
}

.gallery-grid img:hover {
  transform: scale(1.03);
}

.program {
  max-width: 400px;
  margin: 0 auto;
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
}

.program-title {
  font-size: 2.4em;
  margin-bottom: 1em;
  color: #000;
  position: relative;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 2.5em;
  position: relative;
  padding-left: 2em;
  border-left: 2px solid #ffd700;
  /* gold line */
}

.event {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1em;
  position: relative;
}

.event::before {
  content: '';
  width: 14px;
  height: 14px;
  background: #ffd700;
  border-radius: 50%;
  position: absolute;
  left: -8px;
  top: 0.4em;
}

.event-time {
  font-weight: bold;
  font-size: 1.3em;
  color: #000;
  min-width: 80px;
  text-align: right;
}

.event-desc {
  font-size: 1.1em;
  text-align: left;
  color: #000;
  /* dark brown */
}

.rsvp-section {
  background: #ffd70050;
  border-top: 2px solid #ffd700;
  padding-top: 4em;
  padding-bottom: 4em;
  text-align: center;
}

.rsvp-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2em;
  color: #000;
  margin-bottom: 1em;
}

.rsvp-text {
  font-size: 1.2em;
  color: #000;
  max-width: 700px;
  margin: 0.5em auto;
  line-height: 1.6;
}

.footer {
  background: #fff;
  text-align: center;
  padding: 3em 1em;
  font-family: 'Cormorant Garamond', serif;
  color: #3d2e1f;
  border-top: 1px solid #ffd700;
}

.footer-line {
  font-size: 1.4em;
  margin-bottom: 0.3em;
}

.footer-family {
  font-size: 1.6em;
  font-weight: 700;
  color: #000;
  margin-bottom: 0.5em;
}

.footer-note {
  font-size: 1.1em;
  color: #6b5844;
}
