/* ============================================
   HOLY SHIT FESTIVAL - STATIC WEBSITE
   Color Palette:
   - Red: #A31D31
   - Beige: #F2E8D5
   - Green: #006B3E
   - Black: #1a1a1a
   ============================================ */

/* RESET & BASE STYLES */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #1a1a1a;
  background-color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Bebas Neue', 'Arial Black', sans-serif;
  font-weight: 900;
  letter-spacing: 0.05em;
}

p {
  font-size: 1rem;
  line-height: 1.8;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  text-decoration: none;
}

.btn-primary {
  background-color: #A31D31;
  color: #F2E8D5;
  border: 3px dashed #1a1a1a;
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(163, 29, 49, 0.3);
}

.btn-secondary {
  background-color: #F2E8D5;
  color: #A31D31;
  border: 3px dashed #A31D31;
}

.btn-secondary:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(242, 232, 213, 0.5);
}

.btn-cta-primary {
  background-color: #F2E8D5;
  color: #A31D31;
  border: 3px dashed #F2E8D5;
}

.btn-cta-primary:hover {
  transform: scale(1.05);
}

.btn-cta-secondary {
  background-color: #006B3E;
  color: #F2E8D5;
  border: 3px dashed #F2E8D5;
}

.btn-cta-secondary:hover {
  transform: scale(1.05);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #F2E8D5;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 2rem;
  animation: fadeInUp 1s ease-out;
}

.hero-text {
  max-width: 600px;
  margin: 0 auto;
}

.hero-title {
  font-size: clamp(3rem, 10vw, 7rem);
  color: #A31D31;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
  font-size: clamp(1.5rem, 5vw, 3rem);
  color: #1a1a1a;
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: 1.2rem;
  color: #1a1a1a;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  font-size: 2rem;
  animation: bounce 2s infinite;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
  width: 100%;
  padding: 4rem 0;
  background-color: #006B3E;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-image {
  animation: slideInLeft 0.8s ease-out;
}

.about-content {
  animation: slideInRight 0.8s ease-out;
}

.section-image {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.section-title {
  font-size: clamp(2rem, 6vw, 3.5rem);
  color: #F2E8D5;
  margin-bottom: 1.5rem;
}

.section-title-center {
  text-align: center;
}

.section-text {
  font-size: 1.1rem;
  color: #F2E8D5;
  margin-bottom: 1.5rem;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.feature-item h3 {
  font-size: 1.2rem;
  color: #F2E8D5;
  margin-bottom: 0.5rem;
}

.feature-item p {
  color: #F2E8D5;
  font-size: 0.95rem;
}

/* ============================================
   PARTY SECTION
   ============================================ */
.party-section {
  width: 100%;
  padding: 4rem 0;
  background-color: #F2E8D5;
}

.party-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .party-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.party-content {
  animation: fadeInUp 0.8s ease-out;
}

.party-content .section-title {
  color: #A31D31;
}

.party-content .section-text {
  color: #1a1a1a;
}

.party-image {
  animation: slideInRight 0.8s ease-out;
}

.timetable-box {
  background-color: #ffffff;
  padding: 1.5rem;
  border-radius: 0.5rem;
  border: 4px solid #A31D31;
  text-align: center;
  margin-top: 1.5rem;
}

.timetable-box p {
  font-size: 1.1rem;
  font-weight: 700;
  color: #A31D31;
}

/* ============================================
   VIBES SECTION
   ============================================ */
.vibes-section {
  width: 100%;
  padding: 4rem 0;
  background-color: #006B3E;
}

.vibes-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.vibes-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 2rem 0;
}

.vibe-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.vibe-item:hover {
  background-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.vibe-icon {
  font-size: 2.5rem;
}

.vibe-item p {
  font-size: 1rem;
  color: #F2E8D5;
  font-weight: 600;
  line-height: 1.4;
}

.vibes-tagline {
  font-size: 1rem;
  color: #F2E8D5;
  margin-top: 2rem;
  font-style: italic;
  opacity: 0.9;
}

/* ============================================
   SHOPPING SECTION
   ============================================ */
.shopping-section {
  width: 100%;
  padding: 4rem 0;
  background-color: #F2E8D5;
}

.shopping-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .shopping-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.shopping-image {
  animation: slideInLeft 0.8s ease-out;
}

.shopping-content {
  animation: fadeInUp 0.8s ease-out;
}

.shopping-content .section-title {
  color: #A31D31;
}

.shopping-content .section-text {
  color: #1a1a1a;
}

.shopping-highlight {
  font-size: 1.1rem;
  font-weight: 700;
  color: #006B3E;
  margin-top: 1rem;
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */
.final-cta-section {
  width: 100%;
  padding: 4rem 0;
  background-color: #A31D31;
  text-align: center;
}

.cta-title {
  font-size: clamp(2.5rem, 8vw, 5rem);
  color: #F2E8D5;
  margin-bottom: 2rem;
}

.cta-info {
  margin: 2rem 0;
}

.cta-date,
.cta-location,
.cta-time {
  font-size: clamp(1.2rem, 4vw, 1.8rem);
  color: #F2E8D5;
  font-weight: 700;
  margin: 0.5rem 0;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .cta-buttons {
    flex-direction: row;
  }
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
  width: 100%;
  padding: 4rem 0;
  background-color: #F2E8D5;
}

.contact-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 0.5rem;
  margin: 2rem auto;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .contact-info {
    grid-template-columns: repeat(3, 1fr);
  }
}

.contact-item {
  padding: 1.5rem;
  background-color: #ffffff;
  border-radius: 0.5rem;
  text-align: center;
}

.contact-label {
  font-size: 0.9rem;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.contact-link {
  font-size: 1.1rem;
  font-weight: 700;
  color: #A31D31;
  display: block;
}

.contact-link:hover {
  text-decoration: underline;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
  .hero-buttons,
  .cta-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

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

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

  .cta-title {
    font-size: 2.5rem;
  }

  .container {
    padding: 0 1rem;
  }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center {
  text-align: center;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.py-1 { padding: 0.5rem 0; }
.py-2 { padding: 1rem 0; }
.py-3 { padding: 1.5rem 0; }
.py-4 { padding: 2rem 0; }
