/* =========================
   Vintage Theme Styles
   ========================= */

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

/* Base vintage class */
.vintage {
  font-family: 'Roboto', sans-serif;
  background-color: #fdf6e3;
  color: #3e2f1c;
  line-height: 1.6;
}

/* Vintage container */
.vintage-container {
  background: #f5e6c8;
  border: 2px solid #a07855;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0px 4px 12px rgba(62, 47, 28, 0.2);
}

/* Vintage heading */
.vintage-heading {
  font-family: 'Roboto', sans-serif;
  color: #5c3d2e;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-bottom: 2px solid #a07855;
  padding-bottom: 6px;
  margin-bottom: 12px;
}

/* Vintage button */
.vintage-btn {
  background: #d9a066;
  color: #fff;
  border: 2px solid #8b5e3c;
  padding: 10px 18px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: bold;
}
.vintage-btn:hover {
  background: #b07d48;
  transform: scale(1.05);
}

/* Vintage card */
.vintage-card {
  background: #fdf3e7;
  border: 1px solid #b08968;
  padding: 15px;
  border-radius: 10px;
  margin: 50px;
  box-shadow: 0px 2px 8px rgba(0,0,0,0.15);
}

/* Vintage text */
.vintage-text {
  font-family: 'Roboto', sans-serif;
  color: #3e2f1c;
  font-size: 1.05rem;
}

/* Vintage link */
.vintage-link {
  color: #8b5e3c;
  text-decoration: none;
  border-bottom: 1px solid #8b5e3c;
  transition: color 0.3s;
}
.vintage-link:hover {
  color: #d97b44;
}

/* Vintage background effect */
.vintage-bg {
  background: linear-gradient(135deg, #fdf6e3 0%, #f5e6c8 100%);
  background-image: url('https://www.transparenttextures.com/patterns/aged-paper.png');
}

/* Vintage image */
.vintage-img {
  border: 4px solid #a07855;
  border-radius: 10px;
  box-shadow: 0px 6px 14px rgba(62,47,28,0.3);
  filter: sepia(0.4) contrast(1.1);
}

/* Vintage footer */
.vintage-footer {
  background: #e0c097;
  padding: 20px;
  text-align: center;
  font-size: 0.9rem;
  color: #3e2f1c;
  border-top: 2px solid #a07855;
}
