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

/* CONTAINER */
.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

/* BODY DEFAULT + DAY/NIGHT */
body {
  background: black;
  color: gold;
  font-family: Georgia, serif;
}

body.day {
  background: white;
  color: black;
}

body.night {
  background: black;
  color: gold;
}

/* HEADER */
header {
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  background: black;
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

body.day header {
  background: white;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav a {
  margin-left: 20px;
  color: inherit;
  text-decoration: none;
}

.logo {
  height: 50px;
}

.btn {
  background: gold;
  color: black;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  font-weight: bold;
  border-radius: 4px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.btn:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

/* HERO */
.hero {
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: background 0.7s ease;
}

.hero h2 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.hero.day {
  background: url('image.png') center/cover no-repeat;
  color: black;
}

.hero.night {
  background: url('black1.PNG') center/cover no-repeat;
  color: white;
}

/* SECTIONS */
section {
  padding: 80px 0;
}

section:nth-child(even) {
  background: inherit;
}

/* MUSIC */
#music audio, #music iframe {
  width: 100%;
  max-width: 500px;
  margin-top: 20px;
  border-radius: 8px;
}

/* GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border: 1px solid gold;
  aspect-ratio: 9/16;
  background: black;
  cursor: pointer;
}

.gallery-item video,
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease, filter 0.4s ease;
  filter: brightness(0.85);
}

.gallery-item:hover video,
.gallery-item:hover img {
  transform: scale(1.04);
  filter: brightness(1);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.gallery-overlay span {
  color: gold;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* FORMS */
form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

form input, form textarea, form select {
  width: 100%;
  max-width: 500px;
  margin: 10px 0;
  padding: 12px;
}

/* CONTACT LINKS */
#contact a {
  color: gold;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 215, 0, 0.4);
  transition: border-color 0.2s ease, opacity 0.2s ease;
}

#contact a:hover {
  opacity: 0.75;
  border-bottom-color: gold;
}

body.day #contact a {
  color: black;
  border-bottom-color: rgba(0, 0, 0, 0.3);
}

/* FOOTER */
footer {
  padding: 20px;
  text-align: center;
}
.packages {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
}

.card {
  background: rgba(255, 215, 0, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.3);
  padding: 30px 25px;
  border-radius: 8px;
  text-align: center;
  min-width: 220px;
  flex: 1;
  max-width: 300px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(255, 215, 0, 0.15);
}

.card h3 {
  margin-bottom: 10px;
}

.card p {
  margin-bottom: 10px;
  opacity: 0.8;
}

.card h4 {
  margin-bottom: 15px;
  font-size: 1.5rem;
  color: gold;
}

body.day .card {
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.15);
}
body, .hero {
  transition: background 1s ease, color 1s ease;
}
body.night .btn {
  background: gold;
  color: black;
  box-shadow: 0 0 20px gold;
  transition: all 0.5s ease;
}
.card:nth-child(2) {
  transform: scale(1.05);
  border: 2px solid gold;
}