/* Root Variables */
:root {
  --maroon: #790027;
  --maroon-dark: #5a001d;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
}

/* Font Configuration */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Montserrat:wght@400;500;600;700;800&display=swap");

body {
  font-family: "Poppins", sans-serif;
  color: var(--gray-700);
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

/* Utility Classes */
.font-poppins {
  font-family: "Poppins", sans-serif;
}

.font-montserrat {
  font-family: "Montserrat", sans-serif;
}

/* Color Classes */
.text-maroon {
  color: var(--maroon);
}

.bg-maroon {
  background-color: var(--maroon);
}

.hover\:bg-maroon-dark:hover {
  background-color: var(--maroon-dark);
}

.border-maroon {
  border-color: var(--maroon);
}

/* Smooth Transitions */
a,
button {
  transition: all 0.3s ease;
}

/* Mobile Menu */
#mobile-menu {
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Menu Close */
.mobile-menu-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.mobile-menu-content.open {
  max-height: 300px;
}

/* Product Modal Styling */
#productModal {
  animation: fadeIn 0.3s ease-out;
}

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

.modal-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

.modal-gallery img {
  border-radius: 0.5rem;
  object-fit: cover;
  height: 120px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

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

/* Hover Effects */
.group:hover .group-hover\:scale-105 {
  transform: scale(1.05);
}

/* WhatsApp Button */
.whatsapp-btn {
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hidden.md\:hidden {
    display: block;
  }

  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.875rem;
  }
}

/* Form Styling */
input,
textarea,
select {
  font-family: "Poppins", sans-serif;
}

input:focus,
textarea:focus,
select:focus {
  box-shadow: 0 0 0 3px rgba(121, 0, 39, 0.1);
}

/* Shadow Effects */
.shadow-lg {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.shadow-xl {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.shadow-2xl {
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

/* SEO Metadata */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
