/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Montserrat, sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Header Styles */
header {
  background-color: #DC052B;
  padding: 20px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.logo {
  height: 60px;
  width: auto;
  margin-left: 20%;
  margin-right: 20px;
}

header h1 {
  margin-left: 20pt;
  font-size: 2em;
  color: white;
}

.social-icons {
  margin-right: 20%;
  display: flex;
  gap: 20px;
}

.social-icons a {
  color: white;
  font-size: 1.3em;
  transition: color 0.3s ease, transform 0.3s ease;
  text-decoration: none;
}

.social-icons a:hover {
  color: #f0f0f0;
  transform: scale(1.2);
}

/* Navigation Styles */
nav ul {
  list-style: none;
  padding: 0;
  margin: 10px 0 0 0;
}

nav li {
  display: inline;
  margin-right: 20px;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

/* Hero Section */
.hero {
  background-color: #DC052B;
  color: white;
  padding: 60px 20px;
  text-align: left;

}

.hero h2 {
  font-size: 2.5em;
  margin: 0 0 10px 20%;

}

.hero p {
  font-size: 1.2em;
  margin: 0 0 0 20%;
}

/* Coming Soon Section */
.coming-soon {
  background-color: #000;
  color: white;
  padding: 40px 20px;
  text-align: center;

}

.coming-soon p {
  font-size: 1em;
  margin: 0;
}

/* Services Section */
.services {
  padding: 60px 20px;
  text-align: center;
}

.services h2 {
  font-size: 2.5em;
  margin-bottom: 50px;
  color: #333;
}

.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.service-box {
  background-color: white;
  padding: 40px 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (min-width: 1400px) {
  .services-container {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 900px) {
  .services-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-container {
    grid-template-columns: 1fr;
  }
}

.service-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.service-icon {
  font-size: 3em;
  margin-bottom: 20px;
  color: #DC052B;
}

.service-box h3 {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #DC052B;
}

.service-box p {
  font-size: 0.95em;
  line-height: 1.6;
  color: #666;
}

/* Gallery Section */
.gallery {
  padding: 60px 20px;
  background-color: #e8e8e8;
}

.gallery h2 {
  font-size: 2.5em;
  margin-bottom: 50px;
  text-align: center;
  color: #333;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(220, 5, 43, 0.4);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

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

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

/* Lightbox Modal */
.lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.lightbox-content {
  position: relative;
  background-color: white;
  padding: 40px;
  border-radius: 10px;
  max-width: 95vw;
  width: 95vw;
  max-height: 95vh;
  overflow-y: auto;
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.lightbox-content img {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  margin-bottom: 30px;
}

#lightbox-info {
  text-align: center;
}

#lightbox-title {
  font-size: 1.8em;
  color: #DC052B;
  margin-bottom: 15px;
}

#lightbox-description {
  font-size: 1em;
  color: #666;
  line-height: 1.6;
}

.close {
  position: absolute;
  right: 30px;
  top: 20px;
  font-size: 2em;
  font-weight: bold;
  color: #999;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close:hover {
  color: #DC052B;
}

/* Locations Section */
.locations {
  background-color: #000;
  color: white;
  padding: 60px 20px;
}

.locations h2 {
  font-size: 2.5em;
  margin-bottom: 50px;
  text-align: center;
}

.locations-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 50px;
}

.location-item {
  display: flex;
  flex-direction: row;
  border-radius: 10px;
  overflow: hidden;
  background-color: #1a1a1a;
}

.location-image {
  width: 40%;
  height: auto;
  min-height: 300px;
  object-fit: cover;
  border-radius: 0;
  flex-shrink: 0;
}

.location-box {
  padding: 40px 30px;
  border-radius: 0;
  flex: 1;
}

.location-box h3 {
  font-size: 1.8em;
  margin-bottom: 20px;
  color: #DC052B;
  text-align: center;
}

.address {
  margin-bottom: 30px;
  font-size: 1em;
  line-height: 1.6;
  text-align: center;
}

.address i {
  color: #DC052B;
  margin-right: 10px;
}

.services {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
}

.services p {
  font-size: 0.95em;
  margin: 0;
}

.services i {
  color: #DC052B;
  margin-right: 10px;
}

.contact-info {
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 30px;
  max-width: 600px;
  margin: 0 auto;
}

.contact-logo {
  height: 40px;
  width: auto;
  margin-bottom: 20px;
  display: block;
}

.contact-info p {
  font-size: 1.1em;
  margin: 15px 0;
}

.contact-info i {
  color: #DC052B;
  margin-right: 10px;
}

.contact-info a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: #DC052B;
}

/* Products Section */
.products {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.products h2 {
  font-size: 2.5em;
  margin-bottom: 50px;
  text-align: center;
  color: #333;
}

.products-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.product-category {
  overflow: visible;
}

.product-category h3 {
  background-color: #DC052B;
  color: white;
  padding: 20px;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.category-title {
  font-size: 1.3em;
  flex: 1;
}

.toggle-arrow {
  font-size: 0.9em;
  transition: transform 0.3s ease;
}

.toggle-arrow.rotate {
  transform: rotate(180deg);
}

.product-list {
  display: none;
  padding: 20px;
  background-color: white;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.product-list.active {
  display: block;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.product-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-list li {
  padding: 8px 0;
  border-bottom: 1px solid #e0e0e0;
  color: #333;
  font-size: 0.95em;
}

.product-list li:last-child {
  border-bottom: none;
}

.product-list li:before {
  content: '→ ';
  color: #DC052B;
  font-weight: bold;
  margin-right: 8px;
}

/* Main Content */
main {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Footer */
footer {
  background-color: #f4f4f4;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
  border-top: 1px solid #ddd;
}
