/* Style mới cho năm 2025 - KIDO's Bakery */
:root {
  --primary-color: #8b0000;
  --secondary-color: #f0c14b;
  --accent-color: #4a235a;
  --text-color: #333;
  --light-bg: #f9f9f9;
  --gold-color: #d4af37;
  --silver-color: #aaa9ad;
}

body {
  font-family: 'Roboto', sans-serif;
  color: var(--text-color);
  background-color: var(--light-bg);
  line-height: 1.6;
}

/* --- HEADER STYLES --- */
.header-2025 {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  padding: 15px 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.header-2025 .nav-link {
  color: white;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  padding: 10px 15px;
}

.header-2025 .nav-link:hover {
  color: var(--secondary-color);
  transform: translateY(-2px);
}

/* --- BANNER STYLES --- */
.banner-2025 {
  position: relative;
  padding: 120px 0;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

.banner-2025::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.3);
}

.banner-2025 .content {
  position: relative;
  z-index: 2;
}

.banner-title {
  font-family: 'UTM-Bebas', sans-serif;
  font-size: 3.5rem;
  color: white;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  margin-bottom: 30px;
}

.banner-subtitle {
  font-family: 'PlayfairDisplay-Italic', serif;
  font-size: 1.8rem;
  color: var(--secondary-color);
  margin-bottom: 40px;
}

/* --- PRODUCT SHOWCASE --- */
.product-showcase {
  padding: 80px 0;
  background-color: white;
}

.product-title {
  font-family: 'UTM-Americana', serif;
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 30px;
  text-align: center;
  position: relative;
}

.product-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: var(--secondary-color);
  margin: 15px auto;
}

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

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

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

.product-info {
  padding: 25px;
  background: white;
}

.product-info h3 {
  font-family: 'UTM-Bebas', sans-serif;
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.product-info p {
  color: #666;
  margin-bottom: 20px;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-color), #f1c40f);
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(241, 196, 15, 0.3);
}

.btn-gold:hover {
  background: linear-gradient(135deg, #f1c40f, var(--gold-color));
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(241, 196, 15, 0.4);
}

/* --- STORY SECTION --- */
.story-section {
  margin: 2.5rem 0 1.5rem 0;
  background: linear-gradient(120deg, #fff8f3 60%, #fbb040 100%);
  border-radius: 24px;
  box-shadow: 0 4px 32px rgba(189,34,39,0.10);
  padding: 2.5rem 2rem;
  animation: fadeInUp 1.2s cubic-bezier(.23,1.01,.32,1) 0.4s both;
  position: relative;
  overflow: hidden;
}

.story-section::before {
  content: '';
  position: absolute;
  top: -60px; left: -60px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, #fbb04055 60%, transparent 100%);
  z-index: 0;
  pointer-events: none;
}

.story-section::after {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, #bd222755 60%, transparent 100%);
  z-index: 0;
  pointer-events: none;
}

.story-section h2 {
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 2rem;
  letter-spacing: 1px;
  text-align: center;
  position: relative;
  z-index: 1;
  background: linear-gradient(90deg, #bd2227 10%, #fbb040 90%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 4px 24px #fbb04055, 0 2px 8px #bd222755;
  animation: gradientTitle 3s ease-in-out infinite alternate;
}

@keyframes gradientTitle {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

.story-section h2.gradient-title {
  background: linear-gradient(90deg, #fbb040 0%, #bd2227 100%, #fbb040 100%);
  background-size: 200% 200%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientTitle 4s ease-in-out infinite alternate;
  text-shadow: 0 6px 32px #bd222755, 0 2px 8px #fbb04055;
}

.vision-box {
  background: rgba(255,255,255,0.92);
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(251,176,64,0.10);
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  animation: fadeInLeft 1.2s cubic-bezier(.23,1.01,.32,1) 0.3s both;
}

@keyframes fadeInLeft {
  0% { opacity: 0; transform: translateX(-60px); }
  100% { opacity: 1; transform: translateX(0); }
}

.story-title {
  color: #bd2227;
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
  text-shadow: 0 2px 8px #fff3;
}

.story-text {
  font-size: 1.15rem;
  color: #3d2c1e;
  margin-bottom: 0.7rem;
  line-height: 1.7;
  z-index: 1;
  position: relative;
}

.story-text strong {
  color: #bd2227;
}

.story-text li {
  margin-bottom: 0.5rem;
  padding-left: 0.2rem;
  list-style: disc inside;
}

.story-image {
  text-align: center;
  z-index: 1;
  position: relative;
  animation: fadeInRight 1.2s cubic-bezier(.23,1.01,.32,1) 0.5s both;
}

@keyframes fadeInRight {
  0% { opacity: 0; transform: translateX(60px); }
  100% { opacity: 1; transform: translateX(0); }
}

.story-image img {
  width: 90%;
  max-width: 340px;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(189,34,39,0.10);
  margin-bottom: 1rem;
  transition: transform 0.4s cubic-bezier(.23,1.01,.32,1);
}

.story-image img:hover {
  transform: scale(1.04) rotate(-2deg);
  box-shadow: 0 8px 32px rgba(251,176,64,0.18);
}

/* --- PREMIUM GIFT SECTION --- */
.premium-gift {
  padding: 80px 0;
  background-color: #2c3e50;
  color: white;
}

.gift-title {
  font-family: 'UTM-Bebas', sans-serif;
  font-size: 2.8rem;
  color: var(--secondary-color);
  margin-bottom: 30px;
  text-transform: uppercase;
}

.gift-box {
  background-color: rgba(255,255,255,0.05);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
  height: 100%;
}

.gift-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.gift-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 30px;
  background: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gift-icon img {
  width: 50px;
  height: 50px;
}

.gift-box h3 {
  font-family: 'UTM-Americana', serif;
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--secondary-color);
}

/* --- CONTACT FORM --- */
.contact-form {
  padding: 80px 0;
  background: white;
  position: relative;
}

.form-title {
  font-family: 'UTM-Americana', serif;
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 50px;
  text-align: center;
}

.form-control {
  height: 55px;
  border: 2px solid #e1e1e1;
  border-radius: 10px;
  padding: 15px 20px;
  font-size: 1rem;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.form-control:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 0 15px rgba(240, 193, 75, 0.2);
}

textarea.form-control {
  height: 150px;
  resize: none;
}

.btn-submit {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
  border: none;
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(139, 0, 0, 0.3);
  display: block;
  width: 100%;
  margin-top: 20px;
}

.btn-submit:hover {
  background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(139, 0, 0, 0.4);
}

/* --- FOOTER --- */
.footer-2025 {
  background: linear-gradient(to right, #2c3e50, #1a252f);
  color: #aaa;
  padding: 70px 0 30px;
}

.footer-logo {
  margin-bottom: 30px;
}

.footer-heading {
  color: white;
  font-family: 'UTM-Bebas', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background: var(--secondary-color);
}

.footer-contact li {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
}

.footer-contact .icon {
  margin-right: 15px;
  color: var(--secondary-color);
}

.footer-social {
  list-style: none;
  display: flex;
  padding: 0;
  margin-top: 20px;
}

.footer-social li {
  margin-right: 15px;
}

.footer-social a {
  display: block;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
  transform: translateY(-3px);
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #aaa;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--secondary-color);
  text-decoration: none;
  padding-left: 5px;
}

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

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

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

/* --- RESPONSIVE STYLES --- */
@media (max-width: 991px) {
  .banner-title {
    font-size: 2.8rem;
  }
  
  .banner-subtitle {
    font-size: 1.5rem;
  }
  
  .product-title, .story-content h2, .form-title {
    font-size: 2rem;
  }

  .story-section { padding: 1.2rem 0.5rem; }
  .vision-box { padding: 1.2rem 0.7rem; }
  .story-title { font-size: 1.5rem; }
}

@media (max-width: 767px) {
  .banner-2025 {
    padding: 80px 0;
  }
  
  .banner-title {
    font-size: 2.2rem;
  }
  
  .banner-subtitle {
    font-size: 1.3rem;
  }
  
  .product-title, .story-content h2, .form-title {
    font-size: 1.8rem;
  }
  
  .story-image {
    margin-bottom: 30px;
  }
  
  .gift-box {
    margin-bottom: 30px;
  }

  .story-section h2 { font-size: 1.3rem; }
  .story-title { font-size: 1.1rem; }
  .story-image img { max-width: 220px; }
}

/* Custom moon festival elements */
.moon-icon {
  position: absolute;
  top: 50px;
  right: 50px;
  animation: float 6s ease-in-out infinite;
  z-index: 1;
}

.lantern {
  position: absolute;
  animation: swing 3s ease-in-out infinite;
}

.lantern-left {
  top: 80px;
  left: 50px;
}

.lantern-right {
  top: 60px;
  right: 100px;
}

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

@keyframes swing {
  0% {
    transform: rotate(-3deg);
  }
  50% {
    transform: rotate(3deg);
  }
  100% {
    transform: rotate(-3deg);
  }
}

/* --- DISCOUNT TABLE STYLES --- */
.discount-table-wrapper {
  margin-top: 2rem;
  margin-bottom: 2rem;
  background: linear-gradient(120deg, #fff8f3 60%, #fbb040 100%);
  border-radius: 18px;
  box-shadow: 0 4px 32px rgba(189,34,39,0.10);
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  animation: fadeInUp 1.2s cubic-bezier(.23,1.01,.32,1) 0.8s both;
}

.discount-table {
  width: 100%;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(251,176,64,0.10);
  border: none !important;
}

.discount-table th {
  background: linear-gradient(90deg, #bd2227 60%, #fbb040 100%) !important;
  color: #fff !important;
  font-size: 1.5rem;
  font-family: 'Playfair Display', serif;
  letter-spacing: 1.5px;
  text-align: center;
  padding: 18px 0 !important;
  border: none !important;
  text-shadow: 0 2px 8px #bd222755, 0 4px 24px #fbb04055;
}

.discount-table td {
  text-align: center;
  font-weight: bold;
  font-size: 1.15rem;
  padding: 16px 8px !important;
  border: none !important;
  background: none !important;
  transition: background 0.3s;
}

.discount-table tr:nth-child(even) td {
  background: linear-gradient(90deg, #fff8f3 60%, #fbb04022 100%) !important;
}

.discount-table tr:nth-child(odd) td {
  background: #fff !important;
}

.discount-table td:last-child {
  color: #bd2227;
  font-size: 1.25rem;
  font-style: italic;
  background: linear-gradient(90deg, #fbb040 0%, #fff8f3 100%) !important;
  border-left: 2px solid #fbb04033;
  border-radius: 0 0 14px 0;
  box-shadow: 0 2px 8px #fbb04022 inset;
}

.discount-table tr:last-child td:first-child {
  border-radius: 0 0 0 14px;
}

.discount-table tr:last-child td:last-child {
  border-radius: 0 0 14px 0;
}

@media (max-width: 767px) {
  .discount-table-wrapper { padding: 1rem 0.2rem; }
  .discount-table th { font-size: 1.1rem; padding: 10px 0 !important; }
  .discount-table td { font-size: 1rem; padding: 10px 4px !important; }
}

/* --- CERTIFICATION BOXES --- */
.certification-boxes {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.certification-boxes .step-box {
  background: linear-gradient(135deg, #fff8f3 60%, #fbb040 100%);
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(189,34,39,0.10);
  padding: 2.2rem 1.2rem 1.5rem 1.2rem;
  margin-bottom: 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  animation: fadeInUp 1.2s cubic-bezier(.23,1.01,.32,1) 0.7s both;
}

.certification-boxes .step-box:hover {
  transform: translateY(-10px) scale(1.05) rotate(-1deg);
  box-shadow: 0 12px 36px rgba(251,176,64,0.18);
}

.certification-boxes .step-box .step-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 1rem;
  display: inline-block;
  border-radius: 50%;
  background: linear-gradient(135deg, #fbb040 60%, #fff8f3 100%);
  box-shadow: 0 2px 12px #fbb04055;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: #fff;
  position: relative;
  z-index: 1;
  animation: popIn 0.8s cubic-bezier(.23,1.01,.32,1) 0.2s both;
}

@keyframes popIn {
  0% { opacity: 0; transform: scale(0.7); }
  100% { opacity: 1; transform: scale(1); }
}

.certification-boxes .step-box:nth-child(1) {
  background: linear-gradient(135deg, #fbb040 60%, #fff8f3 100%);
}

.certification-boxes .step-box:nth-child(2) {
  background: linear-gradient(135deg, #bd2227 60%, #fbb040 100%);
}

.certification-boxes .step-box:nth-child(3) {
  background: linear-gradient(135deg, #fbb040 60%, #bd2227 100%);
}

.certification-boxes .step-box:nth-child(4) {
  background: linear-gradient(135deg, #fff8f3 60%, #bd2227 100%);
}

.certification-boxes .step-box h4 {
  font-size: 1.25rem;
  font-weight: bold;
  color: #bd2227;
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 8px #fff3;
}

.certification-boxes .step-box p {
  color: #3d2c1e;
  font-size: 1.05rem;
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .certification-boxes .step-box { padding: 1.2rem 0.5rem; }
  .certification-boxes .step-box .step-icon { width: 40px; height: 40px; font-size: 1.3rem; }
}
