/* 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;
  padding-top: 80px;
}

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;
  font-family: 'Raleway', sans-serif;
}

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;
  font-family: 'Raleway', sans-serif;
}

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

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

/* About Container */
.about-container {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 2rem;
}

/* About Sections */
.about-section {
  background-color: white;
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.about-section h1 {
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 0.5rem;
}

.about-section h2 {
  color: var(--primary);
  font-size: 1.5rem;
  margin: 1.5rem 0 1rem;
}

.about-section h3 {
  color: var(--primary);
  font-size: 1.2rem;
  margin: 1.2rem 0 0.8rem;
}

.about-section p, .about-section ul {
  margin-bottom: 1rem;
}

.about-section ul {
  padding-left: 1.5rem;
}

.about-section a {
  color: var(--accent);
  text-decoration: none;
}

.about-section a:hover {
  text-decoration: underline;
}

/* Full Visible Section */
.full-visible {
  background-color: var(--primary);
  color: white;
}

.full-visible h1,
.full-visible h2 {
  color: var(--light);
  border-bottom-color: var(--light);
}

.full-visible p {
  color: white;
}

/* Collapsible Sections */
.collapsible .full-content {
  display: none;
}

.collapsible.expanded .full-content {
  display: block;
}

.collapsible .content-preview {
  overflow: hidden;
  max-height: 150px;
  position: relative;
}

.collapsible.expanded .content-preview {
  max-height: none;
}

.read-more-btn {
  background-color: var(--primary);
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: background-color 0.3s;
  font-family: 'Raleway', sans-serif;
}

.read-more-btn:hover {
  background-color: var(--accent);
}

.collapsible.expanded .read-more-btn i {
  transform: rotate(180deg);
}

/* 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;
}

/* Responsive Design */
@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;
  }
  
  .contact-info {
    margin-left: auto;
  }
  
  .brands-container {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .contact-info {
    display: none;
  }

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

@media (max-width: 480px) {
  .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;
  }
}