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

body, html {
  height: 100%;
  font-family: 'Arial', sans-serif;
}

.hero {
  height: 100vh;
  background: linear-gradient(to bottom, #ff5a2c, #c90029);
  position: relative;
  color: white;
  display: flex;
  flex-direction: column;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url('../img/bgd.jpeg');
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 60px;
  background: rgba(0, 0, 0, 0.2);
}

.logo {
  font-size: 32px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo span {
  line-height: 1;
  font-size: 28px;
  font-weight: 800;
}

nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

nav ul li a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  padding: 6px 0;
  position: relative;
}

nav ul li a.active::before {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: white;
  border-radius: 2px;
}

.newsletter-btn {
  margin-left: 20px;
  padding: 6px 14px;
  border: 1px solid white;
  border-radius: 16px;
  text-decoration: none;
  color: white;
  font-size: 14px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: auto;
  margin-bottom: 80px;
}

.cta-button {
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 12px 24px;
  border: 1px solid white;
  border-radius: 8px;
  margin-bottom: 20px;
  cursor: pointer;
  font-weight: bold;
}

.social-icons {
  display: flex;
  gap: 20px;
  font-size: 24px;
}

.social-icons a {
  color: white;
}

.social-icons i {
  transition: transform 0.2s ease;
  cursor: pointer;
}

.social-icons i:hover {
  transform: scale(1.2);
}

.latest {
  margin-top: 40px;
  text-align: center;
  font-size: 14px;
  opacity: 0.8;
}

/* Merch */

.merch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  padding: 80px 60px;
  text-align: center;
  align-items: center;
}

.item img {
  width: 160px;
  height: auto;
  object-fit: contain;
  margin-bottom: 12px;
}

.label {
  font-weight: bold;
  font-size: 14px;
  opacity: 0.9;
}

.logo-center {
  font-size: 40px;
  font-weight: 900;
  text-align: center;
  line-height: 1.2;
  letter-spacing: 1px;
  text-shadow: 2px 2px 0 black;
}

/* Tour */

.tour-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 60px;
  padding: 60px;
}

.month {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 30px 40px;
  width: 300px;
  height: 550px;
}

.month h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.month ul {
  list-style: none;
  font-size: 15px;
  line-height: 1.8;
}

.month li span {
  display: inline-block;
  width: 30px;
  font-weight: bold;
  color: #fff;
}

/* Newsletter */

.newsletter-modal {
  position: relative;
  max-width: 400px;
  padding: 30px 25px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
  color: white;
  text-align: center;
}

.newsletter-modal h2 {
  margin-top: 0;
  font-size: 24px;
  letter-spacing: 1px;
}

.newsletter-modal p {
  font-size: 14px;
  color: #ddd;
  margin-bottom: 20px;
  line-height: 1.4;
}

.input-group {
  position: relative;
  margin-bottom: 15px;
}

.input-group input {
  width: 100%;
  padding: 12px 40px 12px 15px;
  border: none;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.input-group .icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #ccc;
}

.checkbox {
  display: flex;
  align-items: center;
  font-size: 12px;
  color: #ccc;
  margin: 8px 0;
}

.checkbox input {
  margin-right: 8px;
}

.submit-btn {
  width: 100%;
  padding: 12px;
  border: none;
  background: linear-gradient(90deg, #ff6f61, #ff9966);
  border-radius: 10px;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-top: 15px;
}

.submit-btn:hover {
  background: linear-gradient(90deg, #ff9966, #ff6f61);
}

.close-btn {
  position: absolute;
  top: 12px;
  right: 15px;
  background: none;
  border: none;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
}