@import url("https://fonts.googleapis.com/css2?family=Trirong:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  --orange: #f25a06;
  --orange-hover: #c41824;
  --heading-font: "Trirong", serif;
  --rule-line-left: 25px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  text-align: center;
  list-style-type: none;
}

section,
footer {
  overflow-x: hidden;
}

body {
  height: 100vh;
  background: #fafafa;
}

header {
  z-index: 999;
  background-color: rgba(56, 54, 54, 0.6);
}

.blog-hero {
  background-image: url('../assets/bg.jpeg');
  padding: 180px 20px 60px;
  text-align: center;
}

.blog-hero h1 {
  font-size: 2.8rem;
  color: var(--orange);
  margin-bottom: 10px;
}

.blog-hero p {
  font-size: 1.2rem;
  font-style: italic;
  color: #f5f5f5;
}

@media (max-width: 480px) {
  .blog-hero p {
    font-size: 1rem;
  }

  .blog-hero h1 {
    font-size: 2rem;
  }
}

/* ---------------- Brewing ------------------ */
.brewing-section {
  padding: 80px 20px;
  text-align: center;
  margin-top: 60px;
}

.loading-btn {
  border: none;
  background-color: var(--orange-hover);
  color: white;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 25px;
  cursor: not-allowed;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.spinner {
  width: 18px;
  height: 18px;
  border: 3px solid white;
  border-top: 3px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.brewing-section h2 {
  font-size: 2rem;
  color: var(--orange);
  margin-bottom: 15px;
}

.brewing-section p {
  font-size: 1.1rem;
  color: #555;
  max-width: 600px;
  margin: 0 auto;
}

@media (max-width: 600px) {
  .brewing-section h2 {
    font-size: 1.5rem;
  }
  .brewing-section p {
    font-size: 1rem;
  }
  .loading-btn {
    padding: 12px 20px;
    font-size: 0.95rem;
  }
  .spinner {
    width: 16px;
    height: 16px;
  }
}
