/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Open Sans", sans-serif;
  line-height: 1.6;
  background: #111;
  color: #fff;
}

a {
  color: #ffd700;
  text-decoration: none;
}

/* Hero Section */
.hero {
  background: url("images/hero.webp") no-repeat center center/cover;
  background-color: #000;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  color: #ffd700;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 15px;
}

.hero h1 {
  font-family: "Great Vibes", cursive;
  font-size: 4rem;
}

.hero p {
  font-size: 1.7rem;
  margin-bottom: 20px;
}

.countdown {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 25px;
}

.arrow-down {
  width: 40px;
  height: 40px;
  border-left: 5px solid #ffd700;
  border-bottom: 5px solid #ffd700;
  transform: rotate(-45deg);
  margin: 40px auto 40px auto;
  animation: bounce 1.8s infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0) rotate(-45deg);
  }
  50% {
    transform: translateY(10px) rotate(-45deg);
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0) rotate(-45deg);
  }
  50% {
    transform: translateY(10px) rotate(-45deg);
  }
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  background: #ffd700;
  color: #000;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color 0.4s ease, background 0.4s ease;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #000;
  transition: left 0.4s ease;
  z-index: 0;
}

.btn:hover::before {
  left: 0;
}

.btn span {
  position: relative;
  z-index: 1;
  transition: color 0.4s ease;
}

.btn:hover span {
  color: #ffd700;
}

/* Sections */
section {
  padding: 70px 20px;
  text-align: center;
  background: #111;
}

section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #ffd700;
}

.welcome p {
  font-size: 1.2rem;
}

.we-caption {
  margin-top: 40px;
  font-size: 1.3rem;
  color: #ffd700;
  font-weight: 500;
  text-align: center;
  font-style: italic;
}

.we-photos {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 60px;
  flex-wrap: wrap;
}

.photo-frame {
  border: 5px solid #ffd700;
  padding: 10px;
  border-radius: 16px;
  background: #000;
  box-shadow: 0 0 40px rgba(255, 215, 0, 0.25);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  width: 100%;
  max-width: 470px;
}

.photo-frame img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

.photo-frame:hover {
  transform: scale(1.06);
  box-shadow: 0 0 60px rgba(255, 215, 0, 0.5);
}

/* Hotel Info */
.map-container {
  margin-top: 20px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(255, 215, 0, 0.1);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.gallery-grid img {
  width: 100%;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 6px rgba(255, 215, 0, 0.3);
  cursor: pointer;
}

.gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(255, 215, 0, 0.5);
}

/* Wedding Info and Hotel Conditions */
.schedule,
.hotel-terms {
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
  font-size: 1.1rem;
}

.schedule p,
.hotel-terms p {
  margin: 15px 0;
  line-height: 1.5;
}

.schedule strong {
  color: #ffd700;
  font-size: 1.2rem;
}

/* RSVP Form */
form {
  max-width: 600px;
  margin: 0 auto;
  background: #1a1a1a;
  color: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.15);
}

form input,
form textarea {
  width: 100%;
  padding: 12px;
  margin: 12px 0;
  background: #111;
  color: #ffd700;
  border: 1px solid #ffd700;
  border-radius: 8px;
  font-size: 1rem;
}

.radio-group {
  margin: 20px 0;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.radio-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  color: #ffd700;
}

.website-hotel {
  color: #ffd700;
  position: relative;
  display: inline-block;
  font-weight: 500;
  transition: color 0.3s ease;
  text-decoration: none;
}

.website-hotel::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  left: 0;
  bottom: -4px;
  background: #ffd700;
  transition: width 0.3s ease;
}

.website-hotel:hover {
  color: #fff;
}

.website-hotel:hover::after {
  width: 100%;
}

.dj-note {
  display: block;
  font-size: 0.95rem;
  color: #ffd700;
  margin-top: 5px;
}

.dj-link {
  color: #ffd700;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.dj-link:hover {
  color: #fff;
}

.partner-credit {
  margin-top: 40px;
  color: #ffd700;
  font-size: 1.4rem;
  font-style: italic;
  text-align: center;
}

.partner-link {
  color: #ffd700;
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.partner-link:hover {
  color: #fff;
}

/* Footer */
footer {
  background: #000;
  padding: 25px;
  text-align: center;
  font-size: 1rem;
  color: #ffd700;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.2rem;
  }

  section {
    padding: 50px 20px;
  }

  form {
    padding: 20px;
  }
}

/* Modal for Gallery */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.95);
}

.modal-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 80vh;
  border-radius: 12px;
  border: 3px solid #ffd700;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 40px;
  color: #ffd700;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.modal-close:hover {
  color: #fff;
}

.add-guest-btn {
  margin: 15px 0;
  background: transparent;
  color: #ffd700;
  border: 2px dashed #ffd700;
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.add-guest-btn:hover {
  background: #ffd700;
  color: black;
}
.radio-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.radio-group label {
  display: inline-block;
  cursor: pointer;
  border: 2px solid #ffd700;
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 1rem;
  color: #ffd700;
  background-color: transparent;
  transition: all 0.3s ease;
  user-select: none;
}

.radio-group input[type="radio"] {
  display: none;
}

.radio-group input[type="radio"]:checked + label,
.radio-group label.active {
  background-color: #ffd700;
  color: #000;
}

.radio-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.radio-group label {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 2px solid #ffd700;
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 1rem;
  color: #ffd700;
  background-color: transparent;
  transition: all 0.3s ease;
  user-select: none;
  min-width: 130px;
  text-align: center;
}

.radio-group input[type="radio"] {
  display: none;
}

.radio-group input[type="radio"]:checked + label,
.radio-group label:has(input[type="radio"]:checked) {
  background-color: #ffd700;
  color: #000;
}

.price-info {
  margin: 20px 0;
}

.calendar-button {
  display: inline-block;
  padding: 10px 16px;
  background-color: #fbbc04;
  color: #000;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  margin-top: 15px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s;
}

.calendar-button:hover {
  background-color: #e0a800;
}

.footer {
  text-align: center;
  padding: 30px 15px;
  font-size: 0.9rem;
  background: #111;
  color: #ccc;
  border-top: 1px solid #333;
}
.footer a {
  color: #ffcc00;
  text-decoration: underline;
}

.plus-one-wrapper {
  margin-bottom: 1rem;
  text-align: center;
}

.inline-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 0.5rem;
}

.inline-buttons label {
  flex: 1;
  max-width: 120px;
  text-align: center;
  border: 2px solid #ffd700;
  border-radius: 8px;
  padding: 10px;
  color: #ffd700;
  background-color: transparent;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

.inline-buttons input[type="radio"] {
  display: none;
}

.inline-buttons input[type="radio"]:checked + label {
  background-color: #ffd700;
  color: black;
}

input[type="radio"] {
  display: none;
}

input[type="radio"] + label {
  display: inline-block;
  padding: 10px 20px;
  border: 2px solid #ffd700;
  border-radius: 8px;
  color: #ffd700;
  background-color: transparent;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

input[type="radio"]:checked + label {
  background-color: #ffd700;
  color: #000;
}

.transport-group {
  margin: 1.5em 0;
  text-align: center;
}

.transport-group .inline-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 0.5rem;
}

.transport-group input[type="radio"] {
  display: none;
}

.transport-group label {
  flex: 1;
  max-width: 120px;
  text-align: center;
  border: 2px solid #ffd700;
  border-radius: 8px;
  padding: 10px;
  color: #ffd700;
  background-color: transparent;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

.transport-group input[type="radio"]:checked + label {
  background-color: #ffd700;
  color: #000;
}

.faq-section {
  max-width: 800px;
  margin: auto;
  padding: 2em 1em;
  background: #111;
  color: #fff;
  border-radius: 10px;
}

.faq-section h2 {
  text-align: center;
  color: #ffd700;
  margin-bottom: 1.5em;
}

.faq-item {
  border-bottom: 1px solid #333;
}

.faq-question {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 15px;
  font-size: 1.1rem;
  font-weight: bold;
  color: #ffd700;
  cursor: pointer;
  transition: background 0.3s;
}

.faq-question:hover {
  background: rgba(255, 215, 0, 0.1);
}

.faq-answer {
  display: none;
  padding: 0 15px 15px;
  color: #ddd;
  line-height: 1.5;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-question::after {
  content: "▼";
  float: right;
}

.faq-item.active .faq-question::after {
  content: "▲";
  float: right;
}

@media screen and (max-width: 767px) {
  .hotel-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .hotel-buttons .radio-button {
    width: 100%;
    display: inline-block;
    text-align: center;
  }

  .plus-one-wrapper {
    margin-bottom: 1rem;
    text-align: center;
  }

  .inline-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 0.5rem;
  }

  .inline-buttons label {
    flex: 1;
    max-width: 120px;
    text-align: center;
    border: 2px solid #ffd700;
    border-radius: 8px;
    padding: 10px;
    color: #ffd700;
    background-color: transparent;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
  }

  .inline-buttons input[type="radio"] {
    display: none;
  }

  .inline-buttons input[type="radio"]:checked + label {
    background-color: #ffd700;
    color: black;
  }
}

.language-bar {
  color: #ffd700;
  font-size: 2rem;
  padding: 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-bar button {
  background: transparent;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 4px;
}

.language-bar button:hover {
  transform: scale(1.1);
}

.lang-switch img {
  max-width: 70px;
  cursor: pointer;
}

.radio-button {
  border: 2px solid yellow;
  border-radius: 8px;
  padding: 10px 20px;
  margin: 5px;
  cursor: pointer;
  display: inline-block;
  color: yellow;
  background-color: transparent;
  transition: 0.3s ease;
}

.radio-button input:checked + .radio-label,
.radio-button.active {
  color: black;
}

.radio-button input[type="radio"] {
  display: none;
}

.attendance-wrapper {
  margin: 20px;
}
