/* Main styles */
:root {
  --primary-bg: #FAFAFA;
  --secondary-bg: #F5EDE1;
  --blue-accent: #72C7E9;
  --mint-accent: #A3E4B3;
  --terra-accent: #E99663;
  --sand-accent: #FFD980;
  --text-color: #2E2E2E;
}

body {
  font-family: 'Source Sans Pro', sans-serif;
  background-color: var(--primary-bg);
  color: var(--text-color);
}

.site-header {
  background-color: var(--secondary-bg);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  z-index: 1000;
}

.site-header.sticky-top {
  position: sticky;
  top: 0;
  z-index: 1020;
}

.navbar-brand {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--terra-accent);
  font-size: 1.5rem;
  letter-spacing: 1px;
}

.search-box {
  position: relative;
  width: 300px;
}

.search-box input {
  border-radius: 20px;
  padding-right: 40px;
  border: 1px solid var(--mint-accent);
}

.search-box .search-btn {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--mint-accent);
}

.nav-buttons {
  display: flex;
  gap: 10px;
}

/* Navigation Menu Styles */
.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  margin: 0 auto;
  max-width: 800px;
}

.nav-menu .nav-item {
  flex: 1;
  text-align: center;
  margin: 0 0.1rem;
}

.nav-link {
  font-weight: 600;
  padding: 0.75rem 0.5rem;
  margin: 0;
  transition: all 0.3s ease-in-out;
  border-bottom: 2px solid transparent;
  display: block;
  text-align: center;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.nav-link:hover {
  color: var(--mint-accent);
  border-bottom-color: var(--mint-accent);
  background-color: rgba(163, 228, 179, 0.1);
  border-radius: 8px;
}

.cart-btn {
  background-color: var(--mint-accent);
  border-radius: 20px;
  padding: 8px 15px;
  transition: all 0.3s ease-in-out;
  color: white;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cart-btn:hover {
  background-color: var(--blue-accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.cart-btn .snipcart-items-count {
  background-color: var(--terra-accent);
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  min-width: 20px;
}

.cart-btn .snipcart-total-price {
  display: none;
}

.site-footer {
  background-color: var(--secondary-bg);
  border-top: 1px solid rgba(0,0,0,0.1);
}

.footer-heading {
  font-family: 'Playfair Display', serif;
  color: var(--terra-accent);
}

.footer-text {
  line-height: 1.6;
}

.footer-links a {
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
  padding: 0.3rem 0;
}

.footer-links a:hover {
  color: var(--mint-accent);
}

.contact-info {
  color: var(--text-color);
}

.contact-info i {
  color: var(--mint-accent);
}

/* Contact Page Styles */
.contact-info-section .card {
  transition: transform 0.3s ease-in-out;
  background: linear-gradient(145deg, var(--primary-bg), var(--secondary-bg));
}

.contact-info-section .card:hover {
  transform: translateY(-10px);
}

.contact-info-section .fa-3x {
  color: var(--mint-accent);
  transition: color 0.3s ease;
}

.contact-info-section .card:hover .fa-3x {
  color: var(--terra-accent);
}

.contact-form-section .form-control,
.contact-form-section .form-select {
  border-radius: 15px;
  border: 1px solid var(--mint-accent);
  padding: 12px;
  transition: all 0.3s ease;
}

.contact-form-section .form-control:focus,
.contact-form-section .form-select:focus {
  box-shadow: 0 0 0 0.25rem rgba(163, 228, 179, 0.25);
  border-color: var(--mint-accent);
}

.social-links .btn {
  transition: all 0.3s ease;
  margin: 5px;
  border-radius: 25px;
  padding: 10px 20px;
}

.social-links .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.accordion-button {
  background: linear-gradient(145deg, var(--primary-bg), var(--secondary-bg));
  border: none;
  padding: 15px 20px;
}

.accordion-button:not(.collapsed) {
  background: linear-gradient(145deg, var(--mint-accent), var(--blue-accent));
  color: white;
}

.breadcrumb {
  background-color: var(--secondary-bg);
  padding: 0.75rem 1rem;
  border-radius: 8px;
}

/* Modern Hero Section Styles */
.modern-hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, 
    var(--primary-bg) 0%, 
    var(--secondary-bg) 50%, 
    #E8F4F8 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.floating-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--mint-accent), var(--blue-accent));
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.shape-1 {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 120px;
  height: 120px;
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.shape-3 {
  width: 60px;
  height: 60px;
  top: 40%;
  right: 30%;
  animation-delay: 4s;
}

.shape-4 {
  width: 100px;
  height: 100px;
  bottom: 20%;
  left: 20%;
  animation-delay: 1s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem 0;
}

.hero-badge {
  display: inline-block;
  margin-bottom: 1.5rem;
}

.badge-text {
  background: linear-gradient(45deg, var(--mint-accent), var(--blue-accent));
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(163, 228, 179, 0.3);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-color);
}

.title-line {
  display: block;
}

.title-line.highlight {
  background: linear-gradient(45deg, var(--mint-accent), var(--blue-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.hero-btn {
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(45deg, var(--mint-accent), var(--blue-accent));
  color: white;
  box-shadow: 0 4px 15px rgba(163, 228, 179, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(163, 228, 179, 0.4);
  color: white;
}

.btn-outline {
  background: transparent;
  color: var(--text-color);
  border: 2px solid var(--mint-accent);
}

.btn-outline:hover {
  background: var(--mint-accent);
  color: white;
  transform: translateY(-3px);
}

.hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--mint-accent);
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-visual {
  position: relative;
  z-index: 2;
  height: 500px;
}

.floating-cards {
  position: relative;
  width: 100%;
  height: 100%;
}

.product-card-float {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.product-card-float:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.product-card-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 1rem;
  color: white;
}

.price {
  font-size: 1.2rem;
  font-weight: 700;
}

.card-1 {
  top: 10%;
  left: 10%;
  animation: floatCard1 4s ease-in-out infinite;
}

.card-2 {
  top: 30%;
  right: 20%;
  animation: floatCard2 4s ease-in-out infinite 1s;
}

.card-3 {
  bottom: 20%;
  left: 30%;
  animation: floatCard3 4s ease-in-out infinite 2s;
}

@keyframes floatCard1 {
  0%, 100% { transform: translateY(0px) rotate(-2deg); }
  50% { transform: translateY(-15px) rotate(2deg); }
}

@keyframes floatCard2 {
  0%, 100% { transform: translateY(0px) rotate(2deg); }
  50% { transform: translateY(-20px) rotate(-2deg); }
}

@keyframes floatCard3 {
  0%, 100% { transform: translateY(0px) rotate(-1deg); }
  50% { transform: translateY(-10px) rotate(1deg); }
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mint-accent);
  animation: bounce 2s infinite;
  cursor: pointer;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

.min-vh-80 {
  min-height: 80vh;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .product-card-float {
    width: 150px;
    height: 150px;
  }
  
  .floating-cards {
    height: 300px;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-actions {
    gap: 0.5rem;
  }
  
  .hero-btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
}

/* Navigation Responsive Styles */
@media (max-width: 992px) {
  .nav-menu {
    flex-direction: column;
    align-items: stretch;
    max-width: none;
  }
  
  .nav-menu .nav-item {
    flex: none;
    margin: 0.1rem 0;
  }
  
  .nav-link {
    padding: 0.5rem 1rem;
    min-height: 45px;
    font-size: 0.85rem;
  }
}

@media (max-width: 768px) {
  .nav-buttons {
    flex-direction: column;
    gap: 5px;
  }
  
  .cart-btn {
    padding: 6px 12px;
    font-size: 0.9rem;
  }
  
  .search-box {
    width: 250px;
  }
}

@media (max-width: 576px) {
  .nav-link {
    padding: 0.4rem 0.8rem;
    min-height: 40px;
    font-size: 0.8rem;
  }
  
  .search-box {
    width: 200px;
  }
  
  .cart-btn {
    padding: 5px 10px;
    font-size: 0.8rem;
  }
}

/* Features Section Styles */
.features-section {
  background: linear-gradient(135deg, var(--primary-bg) 0%, #F8F9FA 100%);
}

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

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

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, var(--mint-accent), var(--blue-accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 2rem;
}

.feature-card h3 {
  color: var(--text-color);
  margin-bottom: 1rem;
  font-weight: 600;
}

.feature-card p {
  color: #666;
  line-height: 1.6;
}

/* Testimonials Section Styles */
.testimonials-section {
  background: linear-gradient(135deg, #F8F9FA 0%, var(--secondary-bg) 100%);
}

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.stars {
  color: #FFD700;
  font-size: 1.2rem;
}

.testimonial-text {
  font-style: italic;
  color: #555;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  border-top: 1px solid #eee;
  padding-top: 1rem;
}

.author-info h5 {
  color: var(--text-color);
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.author-info span {
  color: #666;
  font-size: 0.9rem;
}

/* Blog Preview Section Styles */
.blog-preview-section {
  background: white;
}

.blog-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.blog-image {
  position: relative;
  overflow: hidden;
  height: 200px;
}

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

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

.blog-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--mint-accent);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

.blog-content {
  padding: 1.5rem;
}

.blog-content h3 {
  color: var(--text-color);
  margin-bottom: 1rem;
  font-weight: 600;
}

.blog-content p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.blog-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.9rem;
  color: #888;
}

.blog-meta i {
  margin-right: 0.25rem;
}

/* Social Proof Section Styles */
.social-proof-section {
  background: linear-gradient(135deg, var(--secondary-bg) 0%, #E8F4F8 100%);
}

.social-stats {
  display: flex;
  gap: 2rem;
  margin: 2rem 0;
}

.social-stats .stat-item {
  text-align: center;
}

.social-stats .stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--mint-accent);
  line-height: 1;
}

.social-stats .stat-label {
  font-size: 0.9rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.social-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-social {
  background: linear-gradient(45deg, var(--mint-accent), var(--blue-accent));
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}

.btn-social:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(163, 228, 179, 0.4);
  color: white;
}

.social-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  height: 300px;
}

.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.gallery-item:first-child {
  grid-row: span 2;
}

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

/* Responsive adjustments for new sections */
@media (max-width: 768px) {
  .feature-card {
    padding: 1.5rem;
  }
  
  .testimonial-card {
    padding: 1.5rem;
  }
  
  .blog-content {
    padding: 1rem;
  }
  
  .social-stats {
    flex-direction: column;
    gap: 1rem;
  }
  
  .social-links {
    flex-direction: column;
  }
  
  .social-gallery {
    height: 200px;
  }
}

@media (max-width: 576px) {
  .feature-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .blog-meta {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .social-gallery {
    grid-template-columns: 1fr;
    height: auto;
  }
  
  .gallery-item:first-child {
    grid-row: span 1;
  }
}
