* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #f9f5f0;
  color: #333;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

/* Header Styles */
header {
  background-color: #5c6b3d;
  color: white;
  padding: 20px 0;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}
header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(92, 107, 61, 0.8) 0%,
    rgba(138, 155, 104, 0.6) 100%
  );
  z-index: 1;
}
header .container {
  position: relative;
  z-index: 2;
}

h1 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 10px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.tagline {
  font-style: italic;
  opacity: 0.9;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(92, 107, 61, 0.8), rgba(92, 107, 61, 0.6));
  background-size: cover;
  background-position: center;
  color: white;
  padding: 80px 40px;
  border-radius: 12px;
  margin: 40px 0;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}
.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 30px;
  opacity: 0.9;
}

.cta-button {
  display: inline-block;
  background-color: white;
  color: #5c6b3d;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  background-color: #f0f0f0;
}

/* Features Section */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 60px 0;
}

.feature-card {
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.feature-card h3 {
  color: #5c6b3d;
  margin-bottom: 15px;
  font-size: 1.5rem;
}
.feature-card p {
  color: #666;
  line-height: 1.6;
}

/* Popular Teas Section */
.popular-teas {
  text-align: center;
  margin: 60px 0 40px;
}
.popular-teas h2 {
  font-size: 2rem;
  color: #5c6b3d;
  margin-bottom: 15px;
}
.popular-teas p {
  color: #666;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Navigation */
nav {
  background-color: #8a9b68;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
nav ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  list-style: none;
  padding: 0;
  transition: all 0.3s ease;
}
nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 8px 15px;
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.1);
}
nav a:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.mobile-menu-toggle {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 5px 10px;
}

/* TeaGridLayout */
.tea-grid {
  display: grid;
  gap: 20px;
  padding: 40px 0;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(200px, auto);
}
.tea-grid > div {
  display: flex;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.tea-grid > div:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  z-index: 2;
}
.tea-grid > div::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.tea-grid > div:hover::after {
  opacity: 1;
}

.tea-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.tea-grid > div:hover .tea-image {
  transform: scale(1.1);
}

/* Complex Grid Areas */
.black-tea {
  grid-column: 1 / span 6;
  grid-row: span 2;
}

.oolong-tea {
  grid-column: 7 / span 3;
  grid-row: span 1;
}

.green-tea {
  grid-column: 10 / span 3;
  grid-row: span 1;
}

.white-tea {
  grid-column: 7 / span 6;
  grid-row: span 2;
}

.herbal-tea {
  grid-column: 1 / span 3;
  grid-row: span 1;
}

.pu-erh-tea {
  grid-column: 4 / span 3;
  grid-row: span 1;
}

.yellow-tea {
  grid-column: 1 / span 4;
  grid-row: span 1;
}

.rooibos-tea {
  grid-column: 5 / span 4;
  grid-row: span 1;
}

.mate-tea {
  grid-column: 9 / span 4;
  grid-row: span 1;
}

.tea-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.3s ease 0.1s;
  z-index: 3;
}
.tea-grid > div:hover .tea-label {
  transform: translateY(0);
  opacity: 1;
}

/* Footer Styles */
footer {
  background-color: #2c2c2c;
  color: #ddd;
  padding: 60px 0 30px;
  margin-top: auto;
  position: relative;
}
footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 10px;
  background: linear-gradient(to right, #5c6b3d, #8a9b68);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column h3 {
  color: white;
  margin-bottom: 20px;
  font-size: 1.3rem;
  position: relative;
  padding-bottom: 10px;
}
.footer-column h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: #8a9b68;
}
.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  padding: 0;
}
.footer-column a {
  color: #aaa;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}
.footer-column a:hover {
  color: white;
  transform: translateX(5px);
}

.social-icons {
  display: flex;
  gap: 20px;
}
.social-icons a {
  color: white;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}
.social-icons a:hover {
  transform: translateY(-3px) scale(1.1);
}

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #444;
  color: #aaa;
  font-size: 0.9rem;
}

/* Accessibility improvements */
a:focus,
button:focus {
  outline: 2px solid #5c6b3d;
  outline-offset: 2px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero {
    padding: 60px 20px;
  }
  .hero h2 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .features {
    grid-template-columns: 1fr;
  }
  .tea-grid {
    grid-template-columns: repeat(8, 1fr);
  }
  .black-tea {
    grid-column: 1 / span 5;
  }
  .white-tea {
    grid-column: 6 / span 3;
  }
  .mate-tea {
    grid-column: 1 / span 4;
  }
  .rooibos-tea {
    grid-column: 5 / span 4;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .nav-list {
    flex-direction: row;
    position: absolute;
    top: 60%;
    left: 0;
    right: 0;
    background-color: #8a9b68;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  }
  .nav-list.active {
    display: flex;
  }
  nav ul {
    gap: 10px;
  }
  nav a {
    display: block;
    padding: 10px;
    border-radius: 5px;
  }
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 1024px) {
  .tea-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  .black-tea {
    grid-column: 1 / span 4;
  }
  .oolong-tea {
    grid-column: 5 / span 2;
  }
  .green-tea {
    grid-column: 1 / span 2;
  }
  .white-tea {
    grid-column: 3 / span 4;
  }
  .mate-tea {
    grid-column: 3 / span 4;
  }
}
@media (max-width: 480px) {
  .tea-grid {
    grid-template-columns: 1fr;
  }
  .tea-grid > div {
    grid-column: 1 / span 1 !important;
    grid-row: span 1 !important;
    aspect-ratio: 16/9;
  }
  .footer-content {
    grid-template-columns: 1fr;
  }
  .tea-label {
    font-size: 1.2rem;
    bottom: 15px;
    left: 15px;
  }
  header {
    padding: 5px 0;
  }
}

@media (min-width: 1025px) {
  .footer-content {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 1200px) {
  .tea-grid {
    grid-template-columns: repeat(8, 1fr);
  }
  .black-tea {
    grid-column: 1 / span 5;
  }
  .oolong-tea {
    grid-column: 6 / span 3;
  }
  .white-tea {
    grid-column: 6 / span 3;
  }
  .mate-tea {
    grid-column: 5 / span 4;
  }
}
@media (max-width: 768px) {
  .tea-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .black-tea,
  .green-tea,
  .white-tea {
    grid-column: span 4;
  }
  .oolong-tea,
  .herbal-tea,
  .pu-erh-tea,
  .yellow-tea,
  .rooibos-tea,
  .mate-tea {
    grid-column: span 2;
  }
} /*# sourceMappingURL=style.css.map */
/* Tea of the Month Section */
.tea-of-the-month {
  padding: 80px 0;
  background-color: #f5f1eb;
  margin: 60px 0;
}

.subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 40px;
  font-size: 1.2rem;
}

.month-tea-card {
  display: flex;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  max-width: 1000px;
  margin: 0 auto;
}

.month-tea-image {
  flex: 1;
  position: relative;
  min-height: 400px;
}

.month-tea-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tea-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #8a9b68;
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 0.9rem;
}

.month-tea-content {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
}

.month-tea-content h3 {
  font-size: 2rem;
  color: #5c6b3d;
  margin-bottom: 15px;
}

.rating {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.stars {
  color: #ffb300;
  font-size: 1.2rem;
  margin-right: 10px;
}

.review-count {
  color: #666;
  font-size: 0.9rem;
}

.tea-description {
  margin-bottom: 25px;
  line-height: 1.7;
  color: #555;
}

.tea-details {
  margin-bottom: 25px;
}

.detail {
  display: flex;
  margin-bottom: 10px;
}

.detail-label {
  font-weight: bold;
  color: #5c6b3d;
  min-width: 80px;
}

.detail-value {
  color: #555;
}

.price {
  font-size: 1.8rem;
  font-weight: bold;
  color: #5c6b3d;
  margin: 20px 0;
}

.old-price {
  text-decoration: line-through;
  color: #999;
  font-size: 1.2rem;
  margin-left: 10px;
}

.add-to-cart {
  background: #5c6b3d;
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: auto;
  align-self: flex-start;
}

.add-to-cart:hover {
  background: #4a5732;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(92, 107, 61, 0.3);
}

/* Tea Traditions Section */
.tea-traditions {
  padding: 80px 0;
  background: white;
}

.traditions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

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

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

.tradition-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.tradition-content {
  padding: 25px;
}

.tradition-content h3 {
  color: #5c6b3d;
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.tradition-content p {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.learn-more {
  color: #8a9b68;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.learn-more:hover {
  color: #5c6b3d;
  text-decoration: underline;
}

/* Brewing Timer Section */
.brewing-timer {
  padding: 80px 0;
  background: linear-gradient(135deg, #f9f5f0 0%, #e8e0d5 100%);
}

.timer-container {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.tea-selector select {
  padding: 12px 20px;
  border: 2px solid #8a9b68;
  border-radius: 30px;
  font-size: 1rem;
  color: #5c6b3d;
  background: white;
  cursor: pointer;
  margin-bottom: 30px;
  width: 100%;
  max-width: 300px;
}

.timer-display {
  margin: 30px 0;
  display: flex;
  justify-content: center;
}

.time-circle {
  position: relative;
  width: 200px;
  height: 200px;
}

.timer-svg {
  transform: rotate(-90deg);
  width: 100%;
  height: 100%;
}

.timer-circle-bg {
  fill: none;
  stroke: #eee;
  stroke-width: 8;
}

.timer-circle {
  fill: none;
  stroke: #8a9b68;
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 283;
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 1s linear;
}

.time-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.5rem;
  font-weight: bold;
  color: #5c6b3d;
}

.timer-controls {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.timer-btn {
  padding: 12px 30px;
  border: none;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.start-btn {
  background: #5c6b3d;
  color: white;
}

.start-btn:hover {
  background: #4a5732;
  transform: translateY(-2px);
}

.reset-btn {
  background: #eee;
  color: #666;
}

.reset-btn:hover {
  background: #ddd;
  transform: translateY(-2px);
}

.brew-tips {
  background: #f9f5f0;
  padding: 20px;
  border-radius: 8px;
  text-align: left;
}

.brew-tips h4 {
  color: #5c6b3d;
  margin-bottom: 10px;
}

.brew-tips p {
  color: #666;
  line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
  padding: 80px 0;
  background: white;
}

.testimonial-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.testimonial-card {
  background: #f9f5f0;
  padding: 30px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

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

.quote {
  font-style: italic;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.7;
  position: relative;
}

.quote::before {
  content: '"';
  font-size: 3rem;
  color: #8a9b68;
  opacity: 0.3;
  position: absolute;
  top: -20px;
  left: -10px;
}

.author {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.author-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
}

.author-name {
  font-weight: bold;
  color: #5c6b3d;
}

.author-title {
  color: #888;
  font-size: 0.9rem;
}

.testimonial-card .rating {
  color: #ffb300;
  font-size: 1.1rem;
}

/* Newsletter Section */
.newsletter {
  padding: 80px 0;
  background: linear-gradient(135deg, #5c6b3d 0%, #8a9b68 100%);
  color: white;
}

.newsletter-container {
  display: flex;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.newsletter-content {
  flex: 1;
  padding: 50px;
  color: #333;
}

.newsletter-content h2 {
  color: #5c6b3d;
  margin-bottom: 20px;
}

.newsletter-content p {
  color: #666;
  margin-bottom: 30px;
  line-height: 1.7;
}

.newsletter-form {
  margin-top: 30px;
}

.form-group {
  display: flex;
  max-width: 500px;
}

.form-group input {
  flex: 1;
  padding: 15px 20px;
  border: 2px solid #ddd;
  border-radius: 30px 0 0 30px;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
}

.form-group input:focus {
  border-color: #8a9b68;
}

.form-group button {
  padding: 15px 30px;
  background: #5c6b3d;
  color: white;
  border: none;
  border-radius: 0 30px 30px 0;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-group button:hover {
  background: #4a5732;
}

.form-note {
  font-size: 0.8rem;
  color: #999;
  margin-top: 10px;
}

.newsletter-image {
  flex: 1;
}

.newsletter-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 300px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .month-tea-card {
    flex-direction: column;
  }

  .month-tea-image {
    min-height: 250px;
  }

  .newsletter-container {
    flex-direction: column;
  }

  .newsletter-image {
    order: -1;
    width: 100%;
  }

  .form-group {
    flex-direction: column;
  }

  .form-group input {
    border-radius: 30px;
    margin-bottom: 10px;
  }

  .form-group button {
    border-radius: 30px;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .month-tea-content {
    padding: 25px;
  }

  .tea-details {
    flex-direction: column;
  }

  .detail {
    margin-bottom: 8px;
  }

  .detail-label {
    min-width: 60px;
  }

  .timer-container {
    padding: 25px;
  }

  .time-circle {
    width: 150px;
    height: 150px;
  }

  .time-text {
    font-size: 2rem;
  }
}
