/* Color Variables */
:root {
  --primary: #780000;
  --secondary: #003049;
  --accent: #C1121F;
  --light: #FDF0D5;
  --neutral: #669BBC;
  --text-dark: #212529;
  --text-light: #FDF0D5;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  color: var(--text-dark);
  background-color: var(--light);
  font-family: 'Raleway', sans-serif;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
}

/* Header Styles */
header {
  background-color: var(--primary);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  padding: 15px 0;
}

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

.logo img {
  height: 50px;
  transition: transform 0.3s;
}

.logo img:hover {
  transform: scale(1.05);
}

/* Navigation */
nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 25px;
  position: relative;
}

nav ul li a {
  text-decoration: none;
  color: var(--text-light);
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s;
  padding: 8px 0;
}

nav ul li a:hover {
  color: var(--light);
}

nav ul li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--light);
  transition: width 0.3s;
}

nav ul li a:hover::after {
  width: 100%;
}

.contact-info {
  display: flex;
  align-items: center;
}

.contact-info a {
  text-decoration: none;
  color: var(--text-light);
  margin-left: 15px;
  font-size: 14px;
  display: flex;
  align-items: center;
  transition: all 0.3s;
}

.contact-info a i {
  margin-right: 8px;
  color: var(--light);
}

.contact-info a:hover {
  color: var(--light);
  transform: translateY(-2px);
}

/* Banner Slider */
.banner-slider {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  margin-top: 80px;
}

.banner-slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.banner-slider .slide.active {
  opacity: 1;
}

.banner-slider .slide-content {
  position: absolute;
  bottom: 100px;
  left: 100px;
  color: white;
  text-align: left;
  max-width: 600px;
}

.banner-slider .slide-content h1 {
  font-size: 48px;
  margin-bottom: 10px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.banner-slider .slide-content p {
  font-size: 24px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Video Section */
.video-subsection {
  padding: 60px 20px;
  background-color: var(--light);
  text-align: center;
}

.section-heading {
  margin-bottom: 30px;
}

.section-heading h2 {
  color: var(--primary);
  font-size: 32px;
  font-weight: 600;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.section-heading h2::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 3px;
  background-color: var(--accent);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.video-container {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.video-container iframe {
  width: 100%;
  height: 450px;
  display: block;
}

/* Projects Section */
.projects-section {
  padding: 60px 20px;
  background-color: var(--light);
  text-align: center;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.project-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  aspect-ratio: 4/3;
}

.project-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.project-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.project-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(253, 240, 213, 0.85);
  padding: 15px;
  color: var(--primary);
  font-weight: 600;
  font-size: 18px;
  transition: opacity 0.3s;
}

/* Deals In Section */
.deals-section {
  padding: 100px 20px;
  background-color: var(--secondary);
  text-align: center;
}

.deals-section .section-heading h2 {
  font-size: 42px;
  color: var(--light);
  padding-bottom: 20px;
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
}

.deals-section .section-heading h2::after {
  content: '';
  position: absolute;
  width: 80px;
  height: 4px;
  background-color: var(--accent);
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
}

.brands-container {
  display: flex;
  justify-content: center;
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.brand-item {
  max-width: 300px;
  padding: 30px;
  background-color: var(--light);
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.brand-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.brand-item img {
  width: 100%;
  height: auto;
  object-fit: contain;
  max-height: 120px;
}

/* Mobile Navigation */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--text-light);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .header-container {
    flex-wrap: wrap;
  }
  
  nav {
    order: 3;
    width: 100%;
    margin-top: 15px;
    display: none;
    background-color: var(--primary);
    padding: 20px;
  }
  
  nav.active {
    display: block;
  }
  
  nav ul {
    flex-direction: column;
  }
  
  nav ul li {
    margin: 12px 0;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .contact-info {
    margin-left: auto;
  }
  
  .banner-slider .slide-content {
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 90%;
  }

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

  .brands-container {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .contact-info {
    display: none;
  }
  
  .banner-slider {
    height: 80vh;
  }
  
  .banner-slider .slide-content h1 {
    font-size: 36px;
  }
  
  .banner-slider .slide-content p {
    font-size: 20px;
  }

  .section-heading h2 {
    font-size: 26px;
  }
  
  .video-container iframe {
    height: 350px;
  }

  .project-overlay {
    opacity: 1 !important;
  }

  .deals-section .section-heading h2 {
    font-size: 36px;
  }
  
  .brand-item {
    max-width: 280px;
    padding: 25px;
  }
}

@media (max-width: 480px) {
  .banner-slider .slide-content h1 {
    font-size: 28px;
  }
  
  .banner-slider .slide-content p {
    font-size: 18px;
  }

  .section-heading h2 {
    font-size: 22px;
  }
  
  .video-container iframe {
    height: 250px;
  }

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

  .deals-section {
    padding: 80px 20px;
  }
  
  .deals-section .section-heading h2 {
    font-size: 30px;
    margin-bottom: 30px;
  }
  
  .brands-container {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  
  .brand-item {
    max-width: 100%;
    padding: 20px;
  }
}

/* Click effect styles */
.all-names-visible .project-overlay {
  opacity: 1 !important;
}