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

:root {
  --primary-brown: #8B4513;
  --secondary-brown: #A0522D;
  --accent-gold: #FFD700;
  --warm-cream: #FFF8DC;
  --light-tan: #F4A460;
  --dark-brown: #654321;
  --text-dark: #2C1810;
  --text-light: #6B4E37;
  --white: #FFFFFF;
  --light-gray: #F5F5F5;
  --shadow: rgba(139, 69, 19, 0.1);
  --shadow-dark: rgba(139, 69, 19, 0.2);
  --gradient-primary: linear-gradient(135deg, var(--warm-cream), var(--light-tan));
  --gradient-overlay: linear-gradient(135deg, rgba(139, 69, 19, 0.8), rgba(160, 82, 45, 0.6));
}

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

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

/* Typography */
h1, h2, h3 {
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3rem;
  font-weight: 700;
}

h2 {
  font-size: 2.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--primary-brown);
}

h3 {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--secondary-brown);
}

p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

/* Buttons and Links */
.cta-button, .buy-button {
  background: linear-gradient(135deg, var(--primary-brown), var(--secondary-brown));
  color: var(--white);
  border: none;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.cta-button:hover, .buy-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 69, 19, 0.4);
  color: var(--white);
  text-decoration: none;
}

.cta-button:active, .buy-button:active {
  transform: translateY(0);
}

.buy-button {
  width: 100%;
  margin-top: 1rem;
}

/* Hero Section - Modern Design */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

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

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  color: var(--white);
  z-index: 1;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.logo {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.brand-name {
  color: var(--white);
  font-size: 4rem;
  font-weight: 700;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--warm-cream);
  font-weight: 500;
  margin-bottom: 1rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-description {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--warm-cream);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Section Spacing */
section {
  padding: 5rem 0;
  position: relative;
}

section:nth-child(even) {
  background-color: var(--light-gray);
}

/* About Section */
.about-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature {
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 8px 25px var(--shadow);
  transition: all 0.3s ease;
  border: 1px solid rgba(139, 69, 19, 0.1);
}

.feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px var(--shadow-dark);
}

.feature img {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
}

/* Why Choose Section */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.reason {
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 8px 25px var(--shadow);
  transition: all 0.3s ease;
  border: 1px solid rgba(139, 69, 19, 0.1);
}

.reason:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px var(--shadow-dark);
}

.reason img {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
}

/* Products Section - Modern Cards */
.products {
  background: var(--white);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.product-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px var(--shadow);
  transition: all 0.3s ease;
  border: 1px solid rgba(139, 69, 19, 0.1);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px var(--shadow-dark);
}

.product-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

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

.product-info {
  padding: 2rem;
}

.product-info h3 {
  color: var(--primary-brown);
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.product-info p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-brown);
  margin: 1rem 0 0.5rem 0;
}

.serving {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  font-style: italic;
}

/* Café Experience Section */
.experience-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.experience-text ul {
  list-style: none;
  padding-left: 0;
}

.experience-text li {
  padding: 0.75rem 0;
  position: relative;
  padding-left: 2rem;
  color: var(--text-light);
  font-size: 1.1rem;
}

.experience-text li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-gold);
  font-weight: bold;
  font-size: 1.2rem;
}

.experience-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 30px var(--shadow-dark);
}

.experience-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.experience-image:hover .experience-img {
  transform: scale(1.02);
}

/* Shipping Section */
.shipping-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.shipping-info ul {
  list-style: none;
  padding-left: 0;
  margin-top: 1.5rem;
}

.shipping-info li {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(139, 69, 19, 0.1);
  color: var(--text-light);
  font-size: 1.1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.shipping-info li:last-child {
  border-bottom: none;
}

.shipping-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 30px var(--shadow-dark);
}

.shipping-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.shipping-image:hover .shipping-img {
  transform: scale(1.02);
}

/* Payments Section */
.payment-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.payment-method {
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 8px 25px var(--shadow);
  transition: all 0.3s ease;
  border: 1px solid rgba(139, 69, 19, 0.1);
}

.payment-method:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px var(--shadow-dark);
}

.payment-method img {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
}

.payment-note {
  text-align: center;
  font-style: italic;
  color: var(--text-light);
  max-width: 600px;
  margin: 2rem auto 0;
  font-size: 1.1rem;
}

/* Testimonials Section - Modern Design */
.testimonials {
  position: relative;
  overflow: hidden;
}

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

.testimonials-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: blur(2px);
}

.testimonials-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 248, 220, 0.95), rgba(244, 164, 96, 0.9));
  z-index: -1;
}

.testimonials h2 {
  color: var(--primary-brown);
  position: relative;
  z-index: 1;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
  position: relative;
  z-index: 1;
}

.testimonial {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(139, 69, 19, 0.2);
  transition: all 0.3s ease;
  border: 1px solid rgba(139, 69, 19, 0.1);
}

.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(139, 69, 19, 0.3);
}

.testimonial-content {
  padding: 2.5rem;
}

.testimonial p {
  font-style: italic;
  margin-bottom: 2rem;
  color: var(--text-light);
  font-size: 1.1rem;
  line-height: 1.6;
}

.customer {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.customer-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--accent-gold);
  flex-shrink: 0;
}

.avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.customer-info {
  flex: 1;
}

.customer-name {
  font-weight: 600;
  color: var(--primary-brown);
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

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

/* Contact Section */
.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.contact-item {
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 8px 25px var(--shadow);
  transition: all 0.3s ease;
  border: 1px solid rgba(139, 69, 19, 0.1);
}

.contact-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px var(--shadow-dark);
}

.contact-item a {
  color: var(--primary-brown);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.2rem;
}

.contact-item a:hover {
  color: var(--secondary-brown);
}

.contact-note {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: 0.5rem;
  font-style: italic;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--primary-brown), var(--secondary-brown));
  color: var(--white);
  padding: 3rem 0;
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-logo {
  width: 40px;
  height: 40px;
}

.footer-brand-name {
  font-size: 1.5rem;
  font-weight: 600;
}

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: var(--warm-cream);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-gold);
  background-color: rgba(255, 255, 255, 0.1);
  text-decoration: none;
}

.footer-info p {
  color: var(--warm-cream);
  margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .brand {
    flex-direction: column;
    gap: 1rem;
  }
  
  .brand-name {
    font-size: 2.5rem;
  }
  
  .logo {
    width: 60px;
    height: 60px;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .experience-content,
  .shipping-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  section {
    padding: 3rem 0;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .products-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .experience-img,
  .shipping-img {
    height: 250px;
  }
}

@media (max-width: 480px) {
  .brand {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .brand-name {
    font-size: 2rem;
  }
  
  .logo {
    width: 50px;
    height: 50px;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-description {
    font-size: 0.95rem;
  }
  
  .container {
    padding: 0 10px;
  }
  
  section {
    padding: 2rem 0;
  }
  
  .cta-button {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }
  
  .feature,
  .reason,
  .payment-method,
  .contact-item {
    padding: 2rem 1.5rem;
  }
  
  .product-info {
    padding: 1.5rem;
  }
  
  .testimonial-content {
    padding: 2rem;
  }
  
  .experience-img,
  .shipping-img {
    height: 200px;
  }
}

/* Additional Mobile Optimizations */
@media (max-width: 360px) {
  .brand-name {
    font-size: 1.8rem;
  }
  
  .logo {
    width: 45px;
    height: 45px;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-description {
    font-size: 0.9rem;
  }
  
  .products-grid,
  .reasons-grid,
  .testimonials-grid {
    gap: 1.5rem;
  }
}