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

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.3;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #87a96b;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #6b5b47;
}

/* Utility Classes */
.section-padding {
  padding: 80px 0;
}

.text-forest {
  color: #1a3b1a;
}

.bg-forest {
  background-color: #1a3b1a;
}

.text-sage {
  color: #87a96b;
}

.bg-sage {
  background-color: #87a96b;
}

.text-mint {
  color: #a8d8a8;
}

.bg-mint {
  background-color: #a8d8a8;
}

.text-tan {
  color: #6b5b47;
}

.bg-tan {
  background-color: #6b5b47;
}

.text-gold {
  color: #d4af37;
}

.bg-gold {
  background-color: #d4af37;
}

/* Hero Section */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(26, 59, 26, 0.8) 0%, rgba(107, 91, 71, 0.6) 100%);
}
/* Product Gallery */
.gallery-item {
  transition: all 0.3s ease;
  overflow: hidden;
  border-radius: 12px;
}

.gallery-item img {
  transition: transform 0.5s ease;
  width: 100%;
  height: auto;
}

.gallery-item:hover img {
  transform: scale(1.05);
}
/* Feature Cards */
.feature-card {
  transition: all 0.3s ease;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* Color Swatches */
.color-swatch {
  transition: all 0.3s ease;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.color-swatch:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Pricing Section */
.pricing-highlight {
  background: linear-gradient(135deg, #1a3b1a 0%, #6b5b47 100%);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.timer-box {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 20px;
  margin: 20px 0;
}

/* Order Form */
.order-form-container {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

/* Buttons */
.btn-primary {
  background: linear-gradient(135deg, #d4af37 0%, #87a96b 100%);
  color: #1a3b1a;
  font-weight: 700;
  padding: 15px 40px;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  font-weight: 700;
  padding: 15px 40px;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

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

.fade-in-up {
  animation: fadeInUp 0.8s ease forwards;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero-content {
    text-align: center;
  }
  
  .btn-group {
    flex-direction: column;
    gap: 15px;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
  }
  
  .color-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .pricing-highlight {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .timer-display {
    flex-direction: column;
    gap: 10px;
  }
  
  .color-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* OrderOnline Form Customization */
.ooef {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  padding: 30px;
  margin: 20px 0;
}

.orderonline-embed-form input,
.orderonline-embed-form select,
.orderonline-embed-form textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  transition: all 0.3s ease;
}

.orderonline-embed-form input:focus,
.orderonline-embed-form select:focus,
.orderonline-embed-form textarea:focus {
  outline: none;
  border-color: #87a96b;
  box-shadow: 0 0 0 3px rgba(135, 169, 107, 0.2);
}

.orderonline-embed-form button[type="submit"] {
  background: linear-gradient(135deg, #d4af37 0%, #87a96b 100%);
  color: #1a3b1a;
  font-weight: 700;
  padding: 16px 40px;
  border: none;
  border-radius: 50px;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.orderonline-embed-form button[type="submit"]:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

/* Header Styles */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
  transition: all 0.3s ease;
}

header.scrolled {
  padding: 10px 0;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
}

.logo {
  height: 50px;
}

.nav-links a {
  color: #1a3b1a;
  font-weight: 600;
  margin: 0 15px;
  position: relative;
  transition: all 0.3s ease;
}

.nav-links a:after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #d4af37;
  transition: width 0.3s ease;
}

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

.nav-links a:hover {
  color: #d4af37;
}

/* Footer Styles */
footer {
  background: #1a3b1a;
  color: #a8d8a8;
  padding: 60px 0 30px;
}

.footer-logo {
  height: 60px;
  margin-bottom: 20px;
}

.footer-links a {
  color: #a8d8a8;
  transition: all 0.3s ease;
  display: block;
  margin-bottom: 10px;
}

.footer-links a:hover {
  color: #d4af37;
  transform: translateX(5px);
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: #d4af37;
  transform: translateY(-3px);
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  margin-top: 40px;
}
