/* Base Styles */
:root {
  --primary-color: #e63946;
  --secondary-color: #1d3557;
  --accent-color: #457b9d;
  --light-color: #f1faee;
  --dark-color: #1d3557;
  --text-color: #333;
  --body-font: "Poppins", sans-serif;
  --heading-font: "Playfair Display", serif;
  --script-font: "Dancing Script", cursive;
  --transition: all 0.3s ease;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --border-radius: 8px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--body-font);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: var(--border-radius);
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
}

.btn-primary:hover {
  background-color: #d32836;
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: white;
}

.btn-secondary:hover {
  background-color: #152a45;
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: white;
}

.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2.5rem;
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
}

.section-title h2:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--primary-color);
}

.section-title p {
  max-width: 700px;
  margin: 0 auto;
  color: #666;
}

/* Header Styles */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: white;
  box-shadow: var(--shadow);
  padding: 15px 0;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo h1 {
  font-family: var(--script-font);
  font-size: 2rem;
  margin: 0;
  color: var(--primary-color);
}

.main-nav ul {
  display: flex;
  gap: 30px;
}

.main-nav a {
  font-weight: 500;
  position: relative;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--primary-color);
}

.main-nav a:after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.main-nav a:hover:after,
.main-nav a.active:after {
  width: 100%;
}

.header-buttons {
  display: flex;
  align-items: center;
  gap: 15px;
}

.btn-login,
.btn-register {
  padding: 8px 20px;
  border-radius: var(--border-radius);
  font-weight: 500;
  transition: var(--transition);
}

.btn-login {
  background-color: transparent;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-login:hover {
  background-color: var(--primary-color);
  color: white;
}

.btn-register {
  background-color: var(--primary-color);
  color: white;
}

.btn-register:hover {
  background-color: #d32836;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: 3px;
  transition: var(--transition);
}

/* Hero Slider */
.hero-slider {
  position: relative;
  overflow: hidden;
  height: 600px;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.slide.active {
  opacity: 1;
}

.slide-content {
  max-width: 600px;
  padding: 0 20px;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-content h2 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.slide-content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.slider-nav {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--transition);
}

.slider-dot.active {
  background-color: white;
}

.slider-arrows {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 30px;
  z-index: 10;
}

.slider-arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.slider-arrow:hover {
  background-color: rgba(255, 255, 255, 0.8);
}

.slider-arrow svg {
  width: 24px;
  height: 24px;
  color: var(--dark-color);
}

/* Features Section */
.features {
  background-color: var(--light-color);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-card {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--light-color);
  border-radius: 50%;
  color: var(--primary-color);
}

.feature-icon svg {
  width: 35px;
  height: 35px;
}

.feature-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

/* Products Section */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.product-card {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  background-color: white;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.product-image {
  height: 200px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-content {
  padding: 20px;
}

.product-title {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.product-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.price {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-color);
}

.original-price {
  text-decoration: line-through;
  color: #999;
  font-size: 0.9rem;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #eee;
  padding-top: 15px;
  font-size: 0.9rem;
  color: #666;
}

/* Price List Section */
.price-list-section {
  background-color: var(--light-color);
}

.price-list-container {
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.price-list-header {
  background-color: var(--secondary-color);
  color: white;
  padding: 20px;
  text-align: center;
}

.price-list-header h3 {
  margin-bottom: 5px;
}

.price-list-body {
  padding: 0;
}

.price-list-item {
  display: flex;
  justify-content: space-between;
  padding: 15px 20px;
  border-bottom: 1px solid #eee;
}

.price-list-item:last-child {
  border-bottom: none;
}

.item-name {
  font-weight: 500;
}

.item-price {
  font-weight: 600;
  color: var(--primary-color);
}

/* Testimonials Section */
.testimonials {
  background-color: white;
}

.testimonials-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-slide {
  text-align: center;
  padding: 30px;
  display: none;
}

.testimonial-slide.active {
  display: block;
}

.testimonial-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 5px solid var(--light-color);
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-content {
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
}

.testimonial-content:before,
.testimonial-content:after {
  content: '"';
  font-size: 50px;
  color: #eee;
  position: absolute;
  font-family: Georgia, serif;
}

.testimonial-content:before {
  top: -20px;
  left: -10px;
}

.testimonial-content:after {
  bottom: -40px;
  right: -10px;
}

.testimonial-author {
  font-weight: 600;
  color: var(--secondary-color);
}

.testimonial-role {
  font-size: 0.9rem;
  color: #666;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd;
  cursor: pointer;
  transition: var(--transition);
}

.testimonial-dot.active {
  background-color: var(--primary-color);
}

/* Add this after the testimonials section styles and before the CTA section styles */

/* Event Reels Section */
.event-reels {
  background-color: var(--light-color);
  padding: 80px 0;
}

.reels-container {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 20px 0;
  scroll-snap-type: x mandatory;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

.reels-container::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.reel-item {
  flex: 0 0 auto;
  width: 300px;
  height: 534px; /* 16:9 aspect ratio similar to Instagram reels */
  border-radius: var(--border-radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
  scroll-snap-align: start;
  background-color: #000;
}

.reel-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reel-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: white;
}

.reel-title {
  font-size: 1rem;
  margin-bottom: 5px;
  font-weight: 600;
}

.reel-date {
  font-size: 0.8rem;
  opacity: 0.8;
}

.reel-controls {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.reel-item:hover .reel-controls {
  opacity: 1;
}

.reel-controls svg {
  width: 30px;
  height: 30px;
  color: white;
}

.reels-nav {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

.reels-nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.reels-nav-btn:hover {
  background-color: var(--primary-color);
  color: white;
}

.reels-nav-btn svg {
  width: 24px;
  height: 24px;
}

/* Responsive styles for reels */
@media (max-width: 768px) {
  .reel-item {
    width: 250px;
    height: 445px;
  }

  .reels-nav {
    margin-top: 20px;
  }
}

@media (max-width: 576px) {
  .reel-item {
    width: 220px;
    height: 392px;
  }

  .reel-controls {
    width: 50px;
    height: 50px;
  }

  .reel-controls svg {
    width: 25px;
    height: 25px;
  }
}

/* CTA Section */
.cta-section {
  background-color: var(--secondary-color);
  color: white;
  text-align: center;
  padding: 80px 0;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-text {
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Video Section */
.video-section {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: white;
  text-align: center;
  padding: 0 20px;
}

.video-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.video-text {
  max-width: 700px;
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.play-button {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.play-button:hover {
  transform: scale(1.1);
  background-color: #d32836;
}

.play-button svg {
  width: 30px;
  height: 30px;
  color: white;
}

/* Footer Styles */
.site-footer {
  background-color: var(--dark-color);
  color: white;
}

.footer-top {
  padding: 80px 0 50px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

.footer-widget h3 {
  font-size: 1.3rem;
  margin-bottom: 25px;
  position: relative;
}

.footer-widget h3:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
}

.footer-logo h2 {
  font-family: var(--script-font);
  font-size: 2rem;
  margin-bottom: 20px;
  color: white;
}

.footer-about {
  margin-bottom: 20px;
  color: #ccc;
  line-height: 1.8;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--primary-color);
}

.social-links svg {
  color: white;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #ccc;
  transition: var(--transition);
}

.footer-links a:hover {
  color: white;
  padding-left: 5px;
}

.contact-info li {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  color: #ccc;
}

.contact-info svg {
  color: var(--primary-color);
  flex-shrink: 0;
  margin-top: 5px;
}

.footer-middle {
  padding: 40px 0;
  background-color: rgba(0, 0, 0, 0.1);
}

.newsletter-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.newsletter-content h3 {
  margin-bottom: 10px;
}

.newsletter-content p {
  color: #ccc;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  flex: 1;
  max-width: 500px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 15px;
  border-radius: var(--border-radius);
  border: none;
  font-family: var(--body-font);
}

.footer-bottom {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 20px 0;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright {
  color: #ccc;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: #ccc;
  font-size: 0.9rem;
}

.footer-bottom-links a:hover {
  color: white;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: #d32836;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .section {
    padding: 60px 0;
  }

  .slide-content h2 {
    font-size: 2.5rem;
  }

  .hero-slider {
    height: 500px;
  }
}

@media (max-width: 768px) {
  .site-header .container {
    flex-wrap: wrap;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: white;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    z-index: 1000;
    padding: 80px 20px 30px;
    overflow-y: auto;
  }

  .main-nav.active {
    right: 0;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 15px;
  }

  .menu-toggle {
    display: flex;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  .hero-slider {
    height: 400px;
  }

  .slide-content {
    max-width: 100%;
    text-align: center;
  }

  .slide-content h2 {
    font-size: 2rem;
  }

  .newsletter-container {
    flex-direction: column;
    text-align: center;
  }

  .newsletter-form {
    max-width: 100%;
  }

  .footer-bottom-content {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .cta-buttons .btn {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .section-title h2 {
    font-size: 2rem;
  }

  .hero-slider {
    height: 350px;
  }

  .slide-content h2 {
    font-size: 1.8rem;
  }

  .slide-content p {
    font-size: 1rem;
  }

  .slider-arrows {
    display: none;
  }

  .feature-card {
    padding: 20px;
  }

  .feature-icon {
    width: 60px;
    height: 60px;
  }

  .feature-icon svg {
    width: 30px;
    height: 30px;
  }

  .feature-title {
    font-size: 1.3rem;
  }

  .video-title {
    font-size: 1.8rem;
  }

  .play-button {
    width: 60px;
    height: 60px;
  }

  .play-button svg {
    width: 25px;
    height: 25px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    flex-direction: column;
    gap: 15px;
  }

  .newsletter-form button {
    width: 100%;
  }

  .footer-bottom-links {
    flex-direction: column;
    gap: 10px;
  }
}

/* Overlay for Mobile Menu */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}


