/* ===================================
   COLOR VARIABLES & THEME
   Modify these values to change the entire site's color scheme
   =================================== */
:root {
  --primary-red: #C21E1E;
  --primary-red-dark: #9a1818;
  --primary-red-light: #e63939;
  --white: #FFFFFF;
  --off-white: #F9F9F9;
  --light-gray: #F5F5F5;
  --gray: #E0E0E0;
  --text-dark: #2C2C2C;
  --text-gray: #555555;
  --text-light: #777777;
  --border-color: #E5E5E5;
  --shadow-light: rgba(0, 0, 0, 0.08);
  --shadow-medium: rgba(0, 0, 0, 0.12);
  --shadow-dark: rgba(0, 0, 0, 0.2);
  --overlay-dark: rgba(0, 0, 0, 0.5);
  --success-green: #28a745;
  --warning-yellow: #ffc107;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===================================
   NAVIGATION BAR
   =================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  box-shadow: 0 2px 10px var(--shadow-light);
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 4px 20px var(--shadow-medium);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--primary-red);
}

.nav-logo img {
  height: 50px;
  width: 50px;
  object-fit: contain;
}

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

.nav-link {
  color: var(--text-dark);
  font-weight: 500;
  padding: 8px 0;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-red);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-red);
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background-color: var(--primary-red);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('/public/shop-outside-2.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 0%, var(--overlay-dark) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: var(--white);
  padding: 20px;
  animation: fadeInUp 1s ease;
}

.hero-logo {
  width: 180px;
  height: 180px;
  margin: 0 auto 30px;
  border-radius: 50%;
  background-color: var(--white);
  padding: 15px;
  box-shadow: 0 10px 40px var(--shadow-dark);
  animation: scaleIn 0.8s ease;
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  font-style: italic;
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 10px;
  opacity: 0.95;
}

.hero-tagline {
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 40px;
  opacity: 0.9;
}

.hero-btn {
  display: inline-block;
  padding: 15px 40px;
  background-color: var(--white);
  color: var(--primary-red);
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 50px;
  box-shadow: 0 5px 20px var(--shadow-dark);
  transition: all 0.3s ease;
}

.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px var(--shadow-dark);
  background-color: var(--off-white);
}

/* ===================================
   SECTION HEADERS
   =================================== */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.title-underline {
  width: 80px;
  height: 4px;
  background-color: var(--primary-red);
  margin: 0 auto 20px;
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-gray);
  max-width: 600px;
  margin: 0 auto;
}

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

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

.about-text h3 {
  font-size: 1.8rem;
  color: var(--primary-red);
  margin-bottom: 15px;
  margin-top: 30px;
}

.about-text h3:first-child {
  margin-top: 0;
}

.about-text p {
  color: var(--text-gray);
  margin-bottom: 20px;
  line-height: 1.8;
}

.about-features {
  list-style: none;
  margin-top: 15px;
}

.about-features li {
  padding: 10px 0 10px 30px;
  position: relative;
  color: var(--text-gray);
}

.about-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-red);
  font-weight: 700;
  font-size: 1.2rem;
}

.about-image {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 40px var(--shadow-medium);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

/* ===================================
   PRODUCTS SECTION
   =================================== */
.products {
  padding: 100px 0;
  background-color: var(--light-gray);
}

.product-category {
  margin-bottom: 60px;
}

.category-title {
  font-size: 2rem;
  color: var(--primary-red);
  margin-bottom: 30px;
  text-align: center;
  font-weight: 600;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.product-card {
  background-color: var(--white);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px var(--shadow-light);
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px var(--shadow-medium);
}

.product-image-placeholder {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, var(--light-gray) 0%, var(--gray) 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 4rem;
}

.product-card h4 {
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 10px;
  font-weight: 600;
}

.product-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.5;
}

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

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  height: 280px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px var(--shadow-light);
  transition: all 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 25px var(--shadow-medium);
}

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

.gallery-placeholder {
  background: linear-gradient(135deg, var(--primary-red-light) 0%, var(--primary-red) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 600;
  text-align: center;
  padding: 20px;
}

/* ===================================
   LOCATIONS SECTION
   =================================== */
.locations {
  padding: 100px 0;
  background-color: var(--light-gray);
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.location-card {
  background-color: var(--white);
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 4px 15px var(--shadow-light);
  transition: all 0.3s ease;
}

.location-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px var(--shadow-medium);
}

.location-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.location-card h3 {
  font-size: 1.5rem;
  color: var(--primary-red);
  margin-bottom: 15px;
  font-weight: 600;
}

.location-address {
  color: var(--text-gray);
  margin-bottom: 10px;
  font-size: 1rem;
}

.location-hours {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* ===================================
   CONTACT SECTION
   =================================== */
.contact {
  padding: 100px 0;
  background-color: var(--white);
}

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

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.contact-icon {
  font-size: 2rem;
  color: var(--primary-red);
  min-width: 50px;
}

.contact-item h4 {
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 8px;
  font-weight: 600;
}

.contact-item p {
  color: var(--text-gray);
  margin-bottom: 5px;
}

.contact-map {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px var(--shadow-light);
}

.map-placeholder {
  width: 100%;
  height: 100%;
  min-height: 400px;
}

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

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

.footer-logo img {
  width: 80px;
  height: 80px;
  margin-bottom: 15px;
  background-color: var(--white);
  border-radius: 50%;
  padding: 10px;
}

.footer-tagline {
  color: var(--gray);
  font-size: 0.95rem;
  margin-top: 10px;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--white);
  font-weight: 600;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--gray);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-red-light);
}

.footer-contact p {
  color: var(--gray);
  margin-bottom: 10px;
}

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

.footer-bottom p {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 5px;
}

.footer-motto {
  color: var(--primary-red-light);
  font-style: italic;
  font-weight: 500;
}

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 968px) {
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--white);
    flex-direction: column;
    justify-content: flex-start;
    padding: 40px 20px;
    gap: 20px;
    transition: left 0.3s ease;
    box-shadow: 0 4px 20px var(--shadow-medium);
  }

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

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

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

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

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .hero-tagline {
    font-size: 1rem;
  }

  .hero-logo {
    width: 140px;
    height: 140px;
  }

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

  .category-title {
    font-size: 1.6rem;
  }

  .product-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

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

@media (max-width: 480px) {
  .hero {
    min-height: 500px;
  }

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

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-tagline {
    font-size: 0.9rem;
  }

  .hero-logo {
    width: 120px;
    height: 120px;
  }

  .hero-btn {
    padding: 12px 30px;
    font-size: 1rem;
  }

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

  .about-text h3 {
    font-size: 1.5rem;
  }

  .category-title {
    font-size: 1.4rem;
  }

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

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

  .nav-logo span {
    font-size: 1rem;
  }

  .nav-logo img {
    height: 40px;
    width: 40px;
  }
}
