* {
  border: 0;
  font-size: 100%;
  margin: 0;
  outline: none;
  padding: 0;
  vertical-align: baseline;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
  min-height: 100vh;
}

ol,
ul {
  list-style: none;
}

a {
  font-family: inherit;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

tr,
td {
  margin: 0;
  padding: 0;
  vertical-align: middle;
}

video {
  max-width: 100%;
}

body {
  font-family: "Inter", "Arial", sans-serif;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d1b1b 50%, #1a1a1a 100%);
  color: #ffffff;
  overflow-x: hidden;
}

/* Navigation */
#navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid #ff4444;
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 0;
  gap: 10px;
  text-transform: uppercase;
}

.nav-link {
  color: #cccccc;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  background: rgba(255, 68, 68, 0.1);
}

.nav-link:hover,
.nav-link.active {
  color: #ffffff;
  background: linear-gradient(45deg, #ff4444, #cc0000);
  border-color: #ff4444;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 68, 68, 0.3);
}

/* Sections */
.section {
  min-height: 100vh;
  padding: 100px 0 50px;
  position: relative;
}

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

/* Hero Section */
#hero {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background-image: radial-gradient(circle at 20% 80%, rgba(26, 26, 26, 0.5) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(26, 26, 26, 0.5) 0%, transparent 50%), linear-gradient(135deg, rgba(26, 26, 26, 0.5) 0%, rgba(45, 27, 27, 0.5) 50%, rgba(26, 26, 26, 0.5) 100%), url("../images/cover.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
.hero-title {
  font-family: "Metal Mania", cursive;
  font-size: clamp(3rem, 8vw, 8rem);
  font-weight: 400;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 0 0 10px #ff4444;
  line-height: 0.9;
}

.name-her,
.name-him {
  display: block;
}

.ampersand {
  color: #ffffff;
  font-size: 0.6em;
  display: block;
  margin: 10px 0;
}

.subtitle {
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 40px;
  color: #cccccc;
}

.lightning {
  color: #FF0;
  animation: flicker 1.5s ease-in-out infinite alternate;
}

@keyframes flicker {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
.event-details {
  max-width: 600px;
  margin: 40px auto;
}

.detail-card {
  align-items: center;
  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.7);
  border-radius: 15px;
  border: 2px solid #ff4444;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 40px;
  padding: 40px;
}
.detail-card h3 {
  color: #ff4444;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
}
.detail-card p {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 2px solid;
  cursor: pointer;
  text-align: center;
  text-transform: uppercase;
}

.btn-primary {
  background: linear-gradient(45deg, #ff4444, #cc0000);
  color: #ffffff;
  border-color: #ff4444;
  box-shadow: 0 5px 15px rgba(255, 68, 68, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 68, 68, 0.5);
  background: linear-gradient(45deg, #ff6666, #ff4444);
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

.btn-ticket {
  background: linear-gradient(45deg, #ffaa00, #ff6600);
  color: #000;
  border-color: #ffaa00;
  font-size: 1.2rem;
  padding: 20px 40px;
  margin: 20px 0;
}

.btn-ticket:hover {
  background: linear-gradient(45deg, #ffcc00, #ffaa00);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 170, 0, 0.5);
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-badge {
  display: inline-block;
  background: rgba(255, 68, 68, 0.2);
  border: 2px solid #ff4444;
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #ff4444;
  text-transform: uppercase;
}

.section h2 {
  font-family: "Metal Mania", cursive;
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: #ffffff;
  margin-bottom: 15px;
  text-shadow: 0 0 10px #ff4444;
  text-transform: uppercase;
}

.section p {
  font-size: 1.2rem;
  color: #cccccc;
  margin-bottom: 0.5em;
}

/* RSVP Section */
.countdown {
  display: flex;
  margin-top: 1rem;
  gap: 16px;
  justify-content: center;
}
.countdown .unit {
  flex: 0 0 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-top: 8px;
}
.countdown span {
  font-size: 2rem;
}
.countdown small {
  color: #cccccc;
  font-size: 1rem;
}

.rsvp-card {
  max-width: 600px;
  margin: 0 auto;
}

.address {
  background: rgba(255, 68, 68, 0.1);
  border: 1px solid #ff4444;
  border-radius: 10px;
  padding: 15px;
  margin: 20px 0;
}

.ticket-design {
  background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
  border-radius: 20px;
  border: 3px solid #ff4444;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  padding: 40px;
  position: relative;
}

.ticket-design::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background: #1a1a1a;
  border: 3px solid #ff4444;
  border-radius: 50%;
}

.ticket-design::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background: #1a1a1a;
  border: 3px solid #ff4444;
  border-radius: 50%;
}

.ticket-header {
  text-align: center;
  border-bottom: 2px dashed #ff4444;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.ticket-header h3 {
  color: #ff4444;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.ticket-date {
  color: #ffaa00;
  font-weight: 700;
  font-size: 1.2rem;
}

.ticket-body {
  text-align: center;
  margin: 30px 0;
}

.ticket-body p {
  margin-bottom: 15px;
  color: #cccccc;
}

.ticket-footer {
  display: flex;
  justify-content: space-between;
  border-top: 2px dashed #ff4444;
  padding-top: 20px;
  margin-top: 30px;
  font-size: 0.9rem;
  color: #999;
}

.travel-info ul {
  list-style: none;
  margin: 20px 0;
}

.travel-info li {
  padding: 8px 0;
  color: #cccccc;
}

.warning-box {
  background: linear-gradient(45deg, rgba(255, 170, 0, 0.2), rgba(255, 102, 0, 0.2));
  border: 2px solid #ffaa00;
  border-radius: 10px;
  padding: 15px;
  margin-top: 20px;
}

.warning-box p {
  color: #ffcc00;
  font-weight: 700;
  margin: 0;
}

/* Dress Code Section */
.dresscode-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.dresscode-card {
  background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
  border: 3px solid #ff4444;
  border-radius: 20px;
  padding: 0;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
  transition: transform 0.3s ease;
}

.dresscode-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(255, 68, 68, 0.3);
}

.dresscode-card.men {
  border-color: #4a90e2;
}

.dresscode-card.women {
  border-color: #e24a90;
}

.dresscode-header {
  padding: 25px 30px;
  text-align: center;
  position: relative;
}

.dresscode-header h3 {
  color: #fff;
  font-size: 1.8rem;
  margin-bottom: 10px;
  font-weight: bold;
}

.dresscode-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  font-style: italic;
}

.dresscode-content {
  padding: 30px;
}

.outfit-examples {
  margin-bottom: 30px;
}

.outfit-option {
  border-radius: 15px;
  margin-bottom: 40px;
}
.outfit-option h4 {
  color: #ff4444;
  font-size: 1.2rem;
  margin-bottom: 15px;
  font-weight: bold;
}
.outfit-option ul {
  list-style: none;
  margin: 0;
  padding: 25px;
  border-left: 4px solid #ff4444;
}
.outfit-option li, .outfit-option p {
  color: #ccc;
  padding: 8px 0;
  font-size: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.outfit-option li:last-child, .outfit-option p:last-child {
  border-bottom: none;
}
.outfit-option p {
  line-height: 1.5;
}

.dresscode-footer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.weather-info {
  background: rgba(0, 0, 0, 0.7);
  border: 2px solid #333;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
}

.weather-info h3 {
  color: #ffaa00;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.weather-info p {
  color: #ccc;
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.5;
}

.weather-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.weather-item {
  background: rgba(255, 170, 0, 0.1);
  border: 1px solid rgba(255, 170, 0, 0.3);
  color: #ffcc00;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: bold;
}

.tag {
  background: linear-gradient(45deg, #ff4444, #cc0000);
  color: #fff;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: bold;
}

/* Schedule Section */
.schedule-timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.schedule-timeline::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, #ff4444, #cc0000);
  border-radius: 2px;
}

.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  position: relative;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: 22px;
  width: 20px;
  height: 20px;
  background: #ff4444;
  border: 4px solid #1a1a1a;
  border-radius: 50%;
  z-index: 1;
}

.timeline-item.headliner::before {
  background: #ffaa00;
  box-shadow: 0 0 20px #ffaa00;
}

.time {
  min-width: 100px;
  font-weight: 700;
  color: #ff4444;
  font-size: 1.2rem;
}

.event {
  display: flex;
  background: rgba(0, 0, 0, 0.7);
  border: 2px solid #333;
  border-radius: 15px;
  padding: 20px;
  margin-left: 60px;
  flex: 1;
  position: relative;
}

.event .headliner .event {
  border-color: #ffaa00;
  background: rgba(255, 170, 0, 0.1);
}

.event h3 {
  color: #ffffff;
  font-size: 1.3rem;
}

.event p {
  color: #cccccc;
  margin-top: 10px;
  margin: 0;
}

.headliner-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: linear-gradient(45deg, #ffaa00, #ff6600);
  color: #000;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
}

/* Transportation Section */
.transport-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.bus-route {
  background: rgba(0, 0, 0, 0.7);
  border: 2px solid #ff4444;
  border-radius: 15px;
  padding: 30px;
  backdrop-filter: blur(10px);
}

.bus-route h3 {
  color: #ff4444;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.route-stops {
  margin-bottom: 25px;
  padding: 15px;
  background: rgba(255, 68, 68, 0.1);
  border-radius: 10px;
}

.route-stops p {
  margin: 0;
  color: #cccccc;
}

.schedule-list {
  space-y: 15px;
}

.schedule-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  margin-bottom: 10px;
  flex-wrap: wrap;
  gap: 10px;
}

.departure, .arrival {
  font-weight: 700;
  color: #ffffff;
  min-width: 70px;
}

.arrow {
  color: #ff4444;
  font-weight: 700;
}

.note {
  color: #cccccc;
  font-style: italic;
  flex: 1;
  text-align: right;
}

.transport-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.info-card {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid #333;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
}

.info-card h4 {
  color: #ff4444;
  margin-bottom: 10px;
}

.info-card p {
  color: #cccccc;
  margin: 0;
}

/* Gallery Section */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
  border: 2px solid #333;
}

.gallery-item:hover {
  transform: scale(1.05);
  border-color: #ff4444;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: filter 0.3s ease;
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: #ffffff;
  padding: 20px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

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

.gallery-item:hover img {
  filter: brightness(0.7);
}

.share-section {
  text-align: center;
  background: rgba(0, 0, 0, 0.7);
  border: 2px solid #ff4444;
  border-radius: 20px;
  padding: 40px;
}

.share-section h3 {
  color: #ff4444;
  margin-bottom: 15px;
}

.hashtags {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.hashtag {
  background: linear-gradient(45deg, #ff4444, #cc0000);
  color: #ffffff;
  padding: 8px 20px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 0.9rem;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(5px);
}

.lightbox-content {
  position: relative;
  margin: auto;
  padding: 20px;
  width: 90%;
  max-width: 800px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 10px;
}

.close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #ffffff;
  font-size: 40px;
  font-weight: 700;
  cursor: pointer;
  z-index: 2001;
}

.close:hover {
  color: #ff4444;
}

.lightbox-caption {
  color: #ffffff;
  text-align: center;
  margin-top: 20px;
  font-size: 1.2rem;
  background: rgba(0, 0, 0, 0.7);
  padding: 15px 30px;
  border-radius: 25px;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 68, 68, 0.8);
  color: #ffffff;
  border: none;
  padding: 15px 20px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.lightbox-nav:hover {
  background: #ff4444;
  transform: translateY(-50%) scale(1.1);
}

.prev {
  left: 20px;
}

.next {
  right: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    flex-wrap: wrap;
    gap: 5px;
  }
  .nav-link {
    padding: 8px 15px;
    font-size: 12px;
  }
  .hero-title {
    font-size: 3rem;
  }
  .event-details {
    grid-template-columns: 1fr;
  }
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .location-grid,
  .transport-grid {
    grid-template-columns: 1fr;
  }
  .schedule-timeline::before {
    left: 15px;
  }
  .timeline-item::before {
    left: 7px;
  }
  .time {
    min-width: 80px;
    font-size: 1rem;
  }
  .event {
    margin-left: 45px;
  }
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .hashtags {
    flex-direction: column;
    align-items: center;
  }
  .schedule-item {
    flex-direction: column;
    text-align: center;
  }
  .note {
    text-align: center;
  }
  .dresscode-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .dresscode-card {
    margin: 0 10px;
  }
  .dresscode-content {
    padding: 20px;
  }
  .notes-grid {
    grid-template-columns: 1fr;
  }
  .dresscode-footer {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .weather-items {
    flex-direction: column;
    align-items: center;
  }
  .inspiration-tags {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  .detail-card,
  .location-card,
  .bus-route {
    padding: 20px;
  }
  .ticket-design {
    padding: 25px;
  }
  .lightbox-nav {
    padding: 10px 15px;
    font-size: 20px;
  }
  .dresscode-header {
    padding: 20px;
  }
  .dresscode-header h3 {
    font-size: 1.5rem;
  }
  .outfit-option {
    padding: 20px;
  }
  .weather-info,
  .inspiration-box {
    padding: 20px;
  }
}

/*# sourceMappingURL=main.css.map */