/*
Theme Name: Your Host V
Theme URI: https://yourhostv.com
Author: NextSiteRise
Author URI: https://www.nextsiterise.com/
Description: A custom WordPress theme for Your Host V - Event Planning and Party Hosting Services
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: yourhostv
*/

/* ===== CSS Variables ===== */
:root {
  --color-black: #0a0a0a;
  --color-dark: #1a1a1a;
  --color-gold: #d4af37;
  --color-gold-light: #e6c068;
  --color-pink: #e91e8c;
  --color-pink-light: #f472b6;
  --color-cyan: #4ecdc4;
  --color-white: #ffffff;
  --color-gray: #888888;
  --color-light-gray: #f5f5f5;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
  --transition: all 0.3s ease;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --shadow-dark: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-dark);
  background-color: var(--color-white);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ===== Page Loader ===== */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-black);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.loaded {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  text-align: center;
}

.loader-logo {
  margin-bottom: 30px;
  animation: pulse 1.5s ease-in-out infinite;
}

.loader-logo img {
  width: 100px;
  border-radius: 10px;
}

.loader-spinner {
  width: 50px;
  height: 50px;
  margin: 0 auto;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-top-color: var(--color-pink);
  border-right-color: var(--color-gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* ===== Utility Classes ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-dark);
}

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

.section-subtitle {
  text-align: center;
  color: var(--color-gray);
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.highlight {
  color: var(--color-pink);
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-pink), var(--color-gold));
  color: var(--color-white);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-dark);
}

.btn-secondary {
  background: var(--color-gray);
  color: var(--color-white);
}

.btn-full {
  width: 100%;
}

/* ===== Navigation ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 15px 0;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  padding: 10px 0;
  box-shadow: var(--shadow);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  width: 100px;
  border-radius: 8px;
  transition: var(--transition);
}

.navbar.scrolled .logo img {
  width: 60px;
}

.nav-menu {
  display: flex;
  gap: 30px;
}

.nav-link {
  color: var(--color-white);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 5px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, var(--color-pink), var(--color-gold));
  transition: var(--transition);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.hamburger {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--color-white);
  position: relative;
  transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 2px;
  background: var(--color-white);
  transition: var(--transition);
}

.hamburger::before { top: -8px; }
.hamburger::after { top: 8px; }

.nav-toggle.active .hamburger { background: transparent; }
.nav-toggle.active .hamburger::before { top: 0; transform: rotate(45deg); }
.nav-toggle.active .hamburger::after { top: 0; transform: rotate(-45deg); }

/* ===== Hero Section ===== */
.hero {
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: var(--color-black);
  background-position: center 50%;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.85), rgba(233, 30, 140, 0.3));
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--color-white);
  padding: 0 20px;
  max-width: 800px;
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Hero Animations */
.hero-content h1,
.hero-content p,
.hero-content .btn {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.hero-content.animate h1 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.hero-content.animate p {
  opacity: 0.9;
  transform: translateY(0);
  transition-delay: 0.4s;
}

.hero-content.animate .btn {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}

/* Shimmer effect for highlight text */
.shimmer {
  background: linear-gradient(
    90deg,
    var(--color-pink) 0%,
    var(--color-gold) 25%,
    var(--color-pink) 50%,
    var(--color-gold) 75%,
    var(--color-pink) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* Glowing button effect */
.btn-glow {
  position: relative;
  overflow: hidden;
}

.btn-glow::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transform: rotate(45deg);
  animation: btnGlow 3s ease-in-out infinite;
}

@keyframes btnGlow {
  0% { transform: translateX(-100%) rotate(45deg); }
  50%, 100% { transform: translateX(100%) rotate(45deg); }
}

/* Floating particles */
.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.particle {
  position: absolute;
  bottom: -10px;
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, var(--color-pink), var(--color-gold));
  border-radius: 50%;
  opacity: 0.6;
  animation: float-up linear infinite;
}

.particle:nth-child(odd) {
  width: 6px;
  height: 6px;
  opacity: 0.4;
}

.particle:nth-child(3n) {
  width: 4px;
  height: 4px;
  opacity: 0.8;
}

@keyframes float-up {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(-100vh) rotate(360deg);
    opacity: 0;
  }
}

/* ===== Latest Event Section ===== */
.latest-event {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--color-black), var(--color-dark));
}

.latest-event .section-title,
.latest-event .section-subtitle {
  color: var(--color-white);
}

.latest-event-showcase {
  max-width: 800px;
  margin: 0 auto;
}

.latest-event-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.latest-event-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.latest-event-images .main {
  grid-column: span 3;
  max-height: 600px;
  overflow: hidden;
}

.latest-event-image {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
}

.latest-event-image:hover {
  transform: scale(1.02);
}

.latest-event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 600px;
}

.latest-event-overlay {
  position: absolute;
  top: 15px;
  right: 15px;
}

.new-badge {
  display: inline-block;
  padding: 6px 16px;
  background: linear-gradient(135deg, var(--color-pink), var(--color-gold));
  color: var(--color-white);
  font-weight: 600;
  font-size: 0.8rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: pulse 2s ease-in-out infinite;
}

.latest-event-info {
  color: var(--color-white);
}

.latest-event-info h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: var(--color-gold);
}

.latest-event-info .event-meta {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.8);
}

.latest-event-info .event-meta i {
  color: var(--color-pink);
  margin-right: 10px;
  width: 20px;
}

.latest-event-info .event-description {
  margin-top: 20px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
}

/* Event Carousel */
.event-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Event Slider */
.event-slider-container {
  flex: 1;
  overflow: hidden;
  border-radius: 20px;
}

.event-slider-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.event-slide {
  min-width: 100%;
  flex-shrink: 0;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, var(--color-pink), var(--color-gold));
  color: var(--color-white);
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 5px 20px rgba(233, 30, 140, 0.4);
}

.carousel-btn.prev {
  left: -25px;
}

.carousel-btn.next {
  right: -25px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--color-pink);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
}

.carousel-dot.active {
  background: linear-gradient(135deg, var(--color-pink), var(--color-gold));
}

.carousel-dot:hover {
  background: var(--color-pink);
}

@media (max-width: 768px) {
  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .carousel-btn.prev {
    left: -10px;
  }

  .carousel-btn.next {
    right: -10px;
  }
}

/* ===== About Section ===== */
.about {
  padding: 100px 0;
  background: var(--color-white);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  border-radius: 20px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.about-image:hover img {
  transform: scale(1.02);
}

.about-image::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--color-pink);
  border-radius: 20px;
  z-index: -1;
  transition: var(--transition);
}

.about-image:hover::before {
  top: -10px;
  left: -10px;
}

.about-text .lead {
  font-size: 1.2rem;
  color: var(--color-pink);
  margin-bottom: 1rem;
}

.about-text p {
  margin-bottom: 1rem;
  color: var(--color-gray);
}

.about-features {
  display: flex;
  gap: 30px;
  margin-top: 2rem;
}

.feature {
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature i {
  color: var(--color-gold);
  font-size: 1.2rem;
}

.feature span {
  font-weight: 500;
  color: var(--color-dark);
}

/* ===== Services Section ===== */
.services {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--color-black), var(--color-dark));
}

.services .section-title,
.services .section-subtitle {
  color: var(--color-white);
}

.services .highlight {
  color: var(--color-gold);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-pink);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-pink), var(--color-gold));
  border-radius: 50%;
}

.service-icon i {
  font-size: 2rem;
  color: var(--color-white);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--color-white);
  margin-bottom: 15px;
}

.service-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

/* ===== Gallery Section ===== */
.gallery {
  padding: 100px 0;
  background: var(--color-white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  aspect-ratio: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(233, 30, 140, 0.8), rgba(212, 175, 55, 0.8));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-overlay i {
  color: var(--color-white);
  font-size: 1.5rem;
  transform: scale(0);
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

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

.gallery-item:hover .gallery-overlay i {
  transform: scale(1);
}

/* ===== Contact Section ===== */
.contact {
  padding: 100px 0;
  background: var(--color-light-gray);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.contact-card {
  background: var(--color-white);
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.contact-card:hover {
  transform: translateY(-5px);
}

.contact-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-pink), var(--color-gold));
  border-radius: 50%;
}

.contact-icon i {
  font-size: 1.2rem;
  color: var(--color-white);
}

.contact-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--color-dark);
  margin-bottom: 8px;
}

.contact-card a {
  color: var(--color-gray);
  font-size: 0.9rem;
}

.contact-card a:hover {
  color: var(--color-pink);
}

.contact-form-container {
  background: var(--color-white);
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

/* Contact Form 7 Styles */
.contact-form .form-group,
.wpcf7-form p {
  margin-bottom: 20px;
}
.wpcf7-form p:last-of-type {
  margin-bottom: 0px;
} 

.contact-form input,
.contact-form select,
.contact-form textarea,
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form select,
.wpcf7-form textarea {
  width: 100%;
  padding: 8px 4px;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 2px solid #eee;
  border-radius: 10px;
  transition: var(--transition);
  background: var(--color-white);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.wpcf7-form input:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus {
  outline: none;
  border-color: var(--color-pink);
}

.contact-form textarea,
.wpcf7-form textarea {
  resize: vertical;
  min-height: 120px;
}

.wpcf7-form input[type="submit"] {
  display: inline-block;
  width: 100%;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  background: linear-gradient(135deg, var(--color-pink), var(--color-gold));
  color: var(--color-white);
  margin-bottom: 0px;
}

.wpcf7-form input[type="submit"]:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-dark);
}

.wpcf7-response-output {
  padding: 12px 16px !important;
  border-radius: 10px !important;
  margin: 20px 0 0 0 !important;
}

.wpcf7-mail-sent-ok {
  background: rgba(46, 204, 113, 0.1) !important;
  border: 1px solid rgba(46, 204, 113, 0.3) !important;
  color: #27ae60 !important;
}

.wpcf7-validation-errors,
.wpcf7-mail-sent-ng {
  background: rgba(255, 107, 107, 0.1) !important;
  border: 1px solid rgba(255, 107, 107, 0.3) !important;
  color: #ff6b6b !important;
}

.form-status {
  padding: 12px 16px;
  border-radius: 10px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
}

.form-status.success {
  background: rgba(46, 204, 113, 0.1);
  border: 1px solid rgba(46, 204, 113, 0.3);
  color: #27ae60;
}

.form-status.error {
  background: rgba(255, 107, 107, 0.1);
  border: 1px solid rgba(255, 107, 107, 0.3);
  color: #ff6b6b;
}

.form-status i {
  font-size: 1.1rem;
}

/* ===== Footer ===== */
.footer {
  background: var(--color-black);
  color: var(--color-white);
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  width: 100px;
  border-radius: 10px;
  margin-bottom: 15px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--color-gold);
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
  color: var(--color-pink);
}

.footer-contact p {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
  color: var(--color-pink);
  margin-right: 10px;
  width: 20px;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact a:hover {
  color: var(--color-pink);
}

.social-links {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  background: linear-gradient(135deg, var(--color-pink), var(--color-gold));
  border-radius: 50px;
  color: var(--color-white) !important;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
}

.social-links a:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(233, 30, 140, 0.4);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.footer-bottom .divider {
  margin: 0 10px;
  color: rgba(255, 255, 255, 0.3);
}

.footer-bottom a {
  color: var(--color-pink);
  font-weight: 500;
}

.footer-bottom a:hover {
  color: var(--color-gold);
}

/* ===== Lightbox ===== */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-image {
  max-width: 90%;
  max-height: 90vh;
  border-radius: 10px;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: none;
  border: none;
  color: var(--color-white);
  font-size: 2rem;
  cursor: pointer;
  transition: var(--transition);
  padding: 10px;
}

.lightbox-close {
  top: 20px;
  right: 30px;
  font-size: 3rem;
}

.lightbox-prev { left: 30px; }
.lightbox-next { right: 30px; }

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  color: var(--color-pink);
}

/* ===== No Events State ===== */
.no-events {
  text-align: center;
  padding: 60px 20px;
  color: rgba(255, 255, 255, 0.7);
}

.no-events i {
  font-size: 4rem;
  margin-bottom: 20px;
  opacity: 0.3;
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .latest-event-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    background: var(--color-black);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transition: var(--transition);
  }

  .nav-menu.active {
    right: 0;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

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

  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image::before {
    display: none;
  }

  .about-features {
    flex-wrap: wrap;
    gap: 15px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-content {
    grid-template-columns: 1fr;
  }

  .contact-info {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand p {
    margin: 0 auto;
  }

  .social-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }

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

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-info {
    grid-template-columns: 1fr;
  }

  .contact-form-container {
    padding: 25px;
  }

  .latest-event-images {
    grid-template-columns: 1fr;
  }

  .latest-event-images .main {
    grid-column: span 1;
  }
}
