@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Inter:wght@300;400;500;600&display=swap");

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #1a1a1a;
  color: white;
  font-family: "Inter", sans-serif;
  line-height: 1.6;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg-image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(
    to right,
    rgba(26, 26, 26, 0.3),
    rgba(26, 26, 26, 0.85)
  );
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 1rem;
  max-width: 42rem;
  margin: 0 auto;
}

.hero-main {
  margin-bottom: 2rem;
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: 4.5rem;
  line-height: 1;
  font-weight: 900;
  color: #ffd700;
  /* add Text border of black */
  text-shadow: 0 0 0.5rem #1a1a1a;
  margin-bottom: 1rem;
  letter-spacing: -0.025em;
}

.hero-subtitle {
  font-family: "Playfair Display", serif;
  font-size: 2.25rem;
  line-height: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

.hero-divider-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.hero-divider {
  height: 1px;
  background-color: #ffd700;
  flex: 1;
  max-width: 5rem;
}

.hero-boss-text {
  font-family: "Inter", sans-serif;
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 300;
  color: #ffd700;
  letter-spacing: 0.1em;
}

.hero-badge {
  background-color: #ffd700;
  color: #1a1a1a;
  padding: 1rem 2rem;
  border-radius: 9999px;
  display: inline-block;
  cursor: pointer;
}

.hero-badge-text {
  font-family: "Playfair Display", serif;
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 900;
}

.hero-description {
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  line-height: 1.75rem;
  color: #d1d5db;
  max-width: 42rem;
  margin: 0 auto;
  line-height: 1.625;
}

/* Decorative Elements */
.decorative-element {
  position: absolute;
}

.decorative-1 {
  top: 2.5rem;
  left: 2.5rem;
  width: 5rem;
  height: 5rem;
  border: 2px solid #ffd700;
  border-radius: 50%;
  opacity: 0.3;
}

.decorative-2 {
  bottom: 5rem;
  right: 2.5rem;
  width: 4rem;
  height: 4rem;
  background-color: #ffd700;
  border-radius: 50%;
  opacity: 0.2;
}

.decorative-3 {
  top: 33.333333%;
  right: 5rem;
  width: 2rem;
  height: 2rem;
  background-color: white;
  border-radius: 50%;
  opacity: 0.4;
}

/* Photo Gallery Section */
.gallery-section {
  padding: 5rem 1rem;
}

.gallery-container {
  max-width: 72rem;
  margin: 0 auto;
}

.gallery-header {
  text-align: center;
  margin-bottom: 4rem;
}

.gallery-title {
  font-family: "Playfair Display", serif;
  font-size: 2.25rem;
  line-height: 2.5rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 1rem;
}

.gallery-divider {
  width: 6rem;
  height: 0.25rem;
  background-color: #ffd700;
  margin: 0 auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  background-color: #2d2d2d;
  border: 2px solid rgba(255, 215, 0, 0.2);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover {
  border-color: #ffd700;
}

.gallery-image {
  width: 100%;
  height: 20rem;
  object-fit: cover;
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover .gallery-image {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(to top, rgba(26, 26, 26, 0.8), transparent);
  opacity: 0;
  transition: opacity 300ms cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay-content {
  text-align: center;
  color: white;
}

.gallery-overlay-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.5rem;
}

.gallery-overlay-text {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #ffd700;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Add cursor pointer to gallery items */
.gallery-item {
  cursor: pointer;
}

/* Monthly Gallery Section */
.monthly-gallery-section {
  padding: 5rem 1rem;
  background-color: #1a1a1a;
}

.monthly-gallery-container {
  max-width: 80rem;
  margin: 0 auto;
}

.monthly-gallery-header {
  text-align: center;
  margin-bottom: 4rem;
}

.monthly-gallery-title {
  font-family: "Playfair Display", serif;
  font-size: 2.25rem;
  line-height: 2.5rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 1rem;
}

.monthly-gallery-divider {
  width: 10rem;
  height: 0.25rem;
  background-color: #ffd700;
  margin: 0 auto 1rem auto;
}

.monthly-gallery-subtitle {
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  color: #d1d5db;
  font-weight: 300;
}

/* Monthly Section Groupings */
.monthly-section {
  margin-bottom: 4rem;
}

.monthly-section-title {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffd700;
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(255, 215, 0, 0.3);
}

.monthly-section.finale .monthly-section-title.finale-title {
  font-size: 2rem;
  color: #ffd700;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
  animation: finale-glow 2s ease-in-out infinite alternate;
}

@keyframes finale-glow {
  from {
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
  }
  to {
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
  }
}

.monthly-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.monthly-gallery-grid.quarter {
  grid-template-columns: repeat(3, 1fr);
}

.monthly-gallery-grid.finale-grid {
  grid-template-columns: 1fr;
  max-width: 600px;
  margin: 0 auto;
}

.monthly-gallery-item {
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  background-color: #2d2d2d;
  border: 2px solid rgba(255, 215, 0, 0.1);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.monthly-gallery-item:hover {
  border-color: rgba(255, 215, 0, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(255, 215, 0, 0.15);
}

.monthly-gallery-item.featured {
  border-color: #ffd700;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.monthly-gallery-item.featured:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(255, 215, 0, 0.25);
}

.monthly-gallery-item.featured-large {
  border: 3px solid #ffd700;
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
  transform: scale(1.05);
}

.monthly-gallery-item.featured-large:hover {
  transform: scale(1.08) translateY(-8px);
  box-shadow: 0 20px 50px rgba(255, 215, 0, 0.3);
}

.monthly-gallery-item.featured-large .monthly-gallery-image-container {
  height: 400px;
}

.monthly-gallery-item.featured-large .monthly-gallery-month {
  font-size: 2rem;
}

.monthly-gallery-item.featured-large .monthly-gallery-age {
  font-size: 1.25rem;
}

.monthly-gallery-image-container {
  position: relative;
  width: 100%;
  height: 250px;
}

.monthly-gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.monthly-gallery-item:hover .monthly-gallery-image {
  transform: scale(1.05);
}

.monthly-gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    to top,
    rgba(26, 26, 26, 0.95),
    rgba(26, 26, 26, 0.7)
  );
  padding: 1.5rem;
  transform: translateY(100%);
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(5px);
}

.monthly-gallery-item:hover .monthly-gallery-overlay {
  transform: translateY(0);
}

.monthly-gallery-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.monthly-gallery-month {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffd700;
}

.monthly-gallery-age {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  color: #d1d5db;
  font-weight: 300;
}

.monthly-gallery-crown {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 2rem;
  animation: crown-bounce 2s ease-in-out infinite;
}

@keyframes crown-bounce {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-5px) rotate(5deg);
  }
}

/* Image Modal */
.image-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  animation: fadeIn 0.3s ease;
}

.image-modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-modal-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.image-modal-close {
  position: absolute;
  top: -50px;
  right: 0;
  color: #ffd700;
  font-size: 3rem;
  font-weight: bold;
  cursor: pointer;
  z-index: 2001;
  transition: color 0.3s ease;
}

.image-modal-close:hover {
  color: white;
}

.image-modal-image {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 0.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.image-modal-info {
  text-align: center;
  margin-top: 2rem;
  padding: 1rem;
  background-color: rgba(26, 26, 26, 0.8);
  border-radius: 0.5rem;
  backdrop-filter: blur(10px);
}

.image-modal-month {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffd700;
  margin: 0 0 0.5rem 0;
}

.image-modal-age {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: #d1d5db;
  margin: 0;
}

.image-modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.image-modal-nav-btn {
  background-color: rgba(255, 215, 0, 0.8);
  color: #1a1a1a;
  border: none;
  font-size: 2rem;
  font-weight: bold;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-modal-nav-btn:hover {
  background-color: #ffd700;
  transform: scale(1.1);
}

.image-modal-nav-btn.prev {
  margin-left: -4rem;
}

.image-modal-nav-btn.next {
  margin-right: -4rem;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Monthly gallery items: hover for details, click for full-size modal */
.monthly-gallery-item {
  cursor: pointer;
}

/* Event Details Section */
.event-section {
  padding: 5rem 1rem;
  background-color: #2d2d2d;
}

.event-container {
  max-width: 56rem;
  margin: 0 auto;
}

.event-header {
  text-align: center;
  margin-bottom: 4rem;
}

.event-title {
  font-family: "Playfair Display", serif;
  font-size: 2.25rem;
  line-height: 2.5rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 1rem;
}

.event-divider {
  width: 12rem;
  height: 0.25rem;
  background-color: #ffd700;
  margin: 0 auto 1rem auto;
}

.event-subtitle {
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  color: #d1d5db;
  font-weight: 300;
}

.event-details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.event-card {
  background-color: #1a1a1a;
  border-radius: 0.75rem;
  padding: 2rem;
  border: 2px solid rgba(255, 215, 0, 0.2);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  text-align: left;
}

.event-card:hover {
  border-color: rgba(255, 215, 0, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.1);
}

.event-icon {
  font-size: 3rem;
  width: 5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 215, 0, 0.1);
  border-radius: 50%;
  flex-shrink: 0;
}

.event-info {
  flex: 1;
}

.event-label {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 0.5rem;
}

.event-value {
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.25rem;
}

.event-time,
.event-location,
.event-note {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: #d1d5db;
  margin: 0;
}

/* Map Section */
.map-section {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.map-header {
  text-align: center;
  margin-bottom: 2rem;
}

.map-title {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 0.5rem;
}

.map-subtitle {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: #d1d5db;
  margin: 0;
}

.map-container {
  border-radius: 0.75rem;
  overflow: hidden;
  border: 2px solid rgba(255, 215, 0, 0.2);
  margin-bottom: 2rem;
  transition: border-color 300ms ease;
}

.map-container:hover {
  border-color: rgba(255, 215, 0, 0.4);
}

.map-iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
}

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

.map-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #ffd700;
  color: #1a1a1a;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid #ffd700;
}

.map-button:hover {
  background-color: transparent;
  color: #ffd700;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.map-button.directions {
  background-color: transparent;
  color: #ffd700;
  border: 2px solid #ffd700;
}

.map-button.directions:hover {
  background-color: #ffd700;
  color: #1a1a1a;
}

.map-button-icon {
  font-size: 1rem;
}

/* Stats Section */
.stats-section {
  padding: 5rem 1rem;
  background-color: #1a1a1a;
}

.stats-container {
  max-width: 56rem;
  margin: 0 auto;
}

.stats-header {
  text-align: center;
  margin-bottom: 4rem;
}

.stats-title {
  font-family: "Playfair Display", serif;
  font-size: 2.25rem;
  line-height: 2.5rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 1rem;
}

.stats-divider {
  width: 6rem;
  height: 0.25rem;
  background-color: #ffd700;
  margin: 0 auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.stats-item {
  text-align: center;
  padding: 2rem;
  background-color: #1a1a1a;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.stats-number {
  font-size: 3rem;
  line-height: 1;
  font-family: "Playfair Display", serif;
  font-weight: 900;
  color: #ffd700;
  margin-bottom: 1rem;
}

.stats-label {
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-family: "Inter", sans-serif;
  color: white;
}

/* Guidelines Section */
.guidelines-section {
  padding: 5rem 1rem;
  background-color: #2d2d2d;
}

.guidelines-container {
  max-width: 72rem;
  margin: 0 auto;
}

.guidelines-header {
  text-align: center;
  margin-bottom: 4rem;
}

.guidelines-title {
  font-family: "Playfair Display", serif;
  font-size: 2.25rem;
  line-height: 2.5rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 1rem;
}

.guidelines-divider {
  width: 8rem;
  height: 0.25rem;
  background-color: #ffd700;
  margin: 0 auto 1rem auto;
}

.guidelines-subtitle {
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  color: #d1d5db;
  font-weight: 300;
}

.guidelines-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.guidelines-column {
  background-color: #1a1a1a;
  border-radius: 0.75rem;
  padding: 2rem;
  border: 2px solid rgba(255, 215, 0, 0.1);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.guidelines-column:hover {
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.1);
}

.guidelines-column-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.guidelines-icon {
  font-size: 2rem;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.guidelines-icon.do {
  background-color: rgba(16, 185, 129, 0.2);
}

.guidelines-icon.dont {
  background-color: rgba(239, 68, 68, 0.2);
}

.guidelines-column-title {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffd700;
  margin: 0;
}

.guidelines-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.guideline-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.guideline-bullet {
  color: #ffd700;
  font-weight: bold;
  font-size: 1.25rem;
  line-height: 1.5;
  flex-shrink: 0;
}

.guideline-text {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: #d1d5db;
  line-height: 1.5;
  margin: 0;
}

/* Achievements Section */
.achievements-section {
  padding: 5rem 1rem;
  background-color: #1a1a1a;
}

.achievements-container {
  max-width: 72rem;
  margin: 0 auto;
}

.achievements-header {
  text-align: center;
  margin-bottom: 4rem;
}

.achievements-title {
  font-family: "Playfair Display", serif;
  font-size: 2.25rem;
  line-height: 2.5rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 1rem;
}

.achievements-divider {
  width: 10rem;
  height: 0.25rem;
  background-color: #ffd700;
  margin: 0 auto 1rem auto;
}

.achievements-subtitle {
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  color: #d1d5db;
  font-weight: 300;
}

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

.achievement-item {
  background-color: #2d2d2d;
  border-radius: 0.75rem;
  padding: 1.5rem;
  border: 2px solid rgba(255, 215, 0, 0.1);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.achievement-item:hover {
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.1);
}

.achievement-icon {
  font-size: 2.5rem;
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 215, 0, 0.1);
  border-radius: 50%;
  flex-shrink: 0;
}

.achievement-content {
  flex: 1;
  position: relative;
}

.achievement-name {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 0.5rem;
}

.achievement-description {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  color: #d1d5db;
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.achievement-badge {
  display: inline-block;
  background-color: #ffd700;
  color: #1a1a1a;
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.achievement-badge.new {
  background-color: #10b981;
  color: white;
  animation: pulse-achievement 2s ease-in-out infinite;
}

@keyframes pulse-achievement {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}

/* Gift Section */
.gift-section {
  padding: 5rem 1rem;
  background-color: #2d2d2d;
  color: white;
}

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

.gift-header {
  text-align: center;
  margin-bottom: 3rem;
}

.gift-title {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 1rem;
}

.gift-divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #ffd700, #ffed4e);
  margin: 0 auto 1.5rem;
  border-radius: 2px;
}

.gift-subtitle {
  font-size: 1.1rem;
  color: #cccccc;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.gift-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.gift-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  border: 1px solid rgba(255, 215, 0, 0.1);
  transition: all 300ms ease;
}

.gift-item:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 215, 0, 0.3);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.1);
}

.gift-item.special {
  border-color: rgba(255, 215, 0, 0.3);
  background: rgba(255, 215, 0, 0.1);
}

.gift-item.special:hover {
  border-color: rgba(255, 215, 0, 0.5);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

.gift-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 50%;
  border: 2px solid rgba(255, 215, 0, 0.2);
}

.gift-content {
  flex: 1;
}

.gift-name {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffd700;
  margin-bottom: 0.5rem;
}

.gift-description {
  color: #cccccc;
  line-height: 1.6;
  font-size: 0.95rem;
}

.gift-note {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.gift-note-text {
  color: #ffd700;
  font-size: 1rem;
  margin: 0;
  line-height: 1.6;
}

.qr-code {
  max-width: 200px;
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  border: 2px solid rgba(255, 215, 0, 0.3);
  margin-top: 1rem;
  display: block;
}

/* Footer */
.footer-section {
  padding: 4rem 1rem;
  text-align: center;
}

.footer-container {
  max-width: 42rem;
  margin: 0 auto;
}

.footer-main {
  margin-bottom: 2rem;
}

.footer-avatar {
  width: 4rem;
  height: 4rem;
  background-color: #ffd700;
  border-radius: 50%;
  margin: 0 auto 1.5rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-initials {
  font-size: 1.5rem;
  line-height: 2rem;
  font-family: "Playfair Display", serif;
  font-weight: 900;
  color: #1a1a1a;
}

.footer-title {
  font-family: "Playfair Display", serif;
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 1rem;
}

.footer-description {
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  line-height: 1.75rem;
  color: #d1d5db;
  line-height: 1.625;
}

.footer-divider {
  border-top: 1px solid rgba(255, 215, 0, 0.2);
  padding-top: 2rem;
}

.footer-credit {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: #9ca3af;
}

/* Confetti Animation */
#confetti-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1000;
  overflow: hidden;
}

.confetti {
  position: absolute;
  width: 10px;
  height: 10px;
  background: #ffd700;
  top: -10px;
  animation: confetti-fall linear forwards;
}

.confetti.gold {
  background: #ffd700;
}

.confetti.white {
  background: #ffffff;
}

.confetti.black {
  background: #1a1a1a;
}

@keyframes confetti-fall {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translateY(100vh) rotate(720deg);
    opacity: 0;
  }
}

/* Responsive Design */
@media (min-width: 768px) {
  .hero-bg-image {
    margin-left: -40vw;
  }

  .hero-section {
    justify-content: flex-end;
  }

  .hero-content {
    margin-right: 2rem;
  }

  .hero-title {
    font-size: 6rem;
  }

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

  .hero-boss-text {
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .hero-badge-text {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }

  .hero-description {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }

  .gallery-title {
    font-size: 3rem;
    line-height: 1;
  }

  .stats-title {
    font-size: 3rem;
    line-height: 1;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto;
  }

  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .achievements-title {
    font-size: 3rem;
    line-height: 1;
  }

  .achievements-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .achievement-icon {
    font-size: 3rem;
    width: 5rem;
    height: 5rem;
  }

  .achievement-name {
    font-size: 1.5rem;
  }

  .achievement-description {
    font-size: 1rem;
  }

  .event-title {
    font-size: 3rem;
    line-height: 1;
  }

  .event-details {
    grid-template-columns: repeat(2, 1fr);
  }

  .event-card {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .event-value {
    font-size: 1.25rem;
  }

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

  .map-subtitle {
    font-size: 1.125rem;
  }

  .map-iframe {
    height: 450px;
  }

  .map-actions {
    gap: 1.5rem;
  }

  .map-button {
    font-size: 1rem;
    padding: 1rem 2rem;
  }

  .guidelines-title {
    font-size: 3rem;
    line-height: 1;
  }

  .guidelines-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .guidelines-column-title {
    font-size: 1.75rem;
  }

  .guideline-text {
    font-size: 1.125rem;
  }

  .monthly-gallery-title {
    font-size: 3rem;
    line-height: 1;
  }

  .monthly-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .monthly-gallery-grid.quarter {
    grid-template-columns: repeat(3, 1fr);
  }

  .monthly-section-title {
    font-size: 1.75rem;
  }

  .monthly-section.finale .monthly-section-title.finale-title {
    font-size: 2.5rem;
  }

  .monthly-gallery-image-container {
    height: 300px;
  }

  .monthly-gallery-month {
    font-size: 1.5rem;
  }

  .monthly-gallery-age {
    font-size: 1rem;
  }

  .gift-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gift-title {
    font-size: 3rem;
  }

  .qr-code {
    max-width: 180px;
  }
}

@media (min-width: 1024px) {
  .monthly-gallery-grid.quarter {
    grid-template-columns: repeat(3, 1fr);
  }

  .monthly-gallery-image-container {
    height: 280px;
  }

  .monthly-gallery-item.featured-large .monthly-gallery-image-container {
    height: 500px;
  }
}

/* Mobile responsive for monthly sections */
@media (max-width: 768px) {
  .monthly-gallery-grid.quarter {
    grid-template-columns: 1fr;
  }

  .monthly-section-title {
    font-size: 1.25rem;
  }

  .monthly-section.finale .monthly-section-title.finale-title {
    font-size: 1.75rem;
  }

  .monthly-gallery-item.featured-large .monthly-gallery-image-container {
    height: 350px;
  }
}

/* Move hero content to bottom at 770px */
@media (min-width: 408px) {
  .hero-section {
    align-items: flex-end;
    justify-content: center;
  }

  .hero-content {
    margin: 0 auto 2rem auto;
  }
}

/* Revert hero content to center at 850px */
@media (min-width: 850px) {
  .hero-section {
    align-items: center;
    justify-content: flex-end;
  }

  .hero-content {
    margin: 0 2rem 0 auto;
  }
}

@media (min-width: 1024px) {
  .hero-bg-image {
    background-position: 15% center;
  }

  .hero-content {
    margin-right: 4rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto;
  }

  .gallery-item.wide {
    grid-column: span 2;
  }

  .gift-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gift-title {
    font-size: 3.5rem;
  }

  .qr-code {
    max-width: 160px;
  }
}

/* Large desktop screens - move hero content more toward center */
@media (min-width: 1800px) {
  .hero-content {
    margin-right: 8rem;
  }
}

/* Small mobile devices - move greetings to bottom */
@media (max-width: 480px) {
  .hero-section {
    align-items: flex-end;
    justify-content: center;
  }

  .hero-content {
    margin: 0 auto 2rem auto;
    padding: 0 1rem;
  }

  .hero-overlay {
    background: linear-gradient(
      to top,
      rgba(26, 26, 26, 0.85),
      rgba(26, 26, 26, 0.3)
    );
  }
}
