/* Hybrid Premium Theme: Brushed Steel + Organic Warmth */

/* === Base Styling === */
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: #2a2a2a;
  background: #f8f5f2;
  background-image: url('../images/stone-texture.jpg');
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

/* === Header === */
header {
  background: url('../images/header.jpg') center center / cover no-repeat;
  text-align: center;
  padding: 2.5rem 1rem;
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.1),
              inset 0 0 8px rgba(0, 0, 0, 0.2);
}

header img {
  max-width: 220px;
  margin-bottom: 1rem;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.25));
}

.announcement-bar {
  background-color: #f2f2f2;
  padding: 1em;
  text-align: center;
  font-family: sans-serif;
  font-size: 1.1em;
  border-bottom: 1px solid #ccc;
  margin-bottom: 2em;
}

/* === Buttons === */
.home-button,
.cta-buttons a,
.signup button {
  background: linear-gradient(to bottom, #a29f94, #6e6a63);
  border: none;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: all 0.2s ease;
  text-decoration: none;
  margin: 0.5rem 1rem;
  display: inline-block;
}

.home-button:hover,
.cta-buttons a:hover,
.signup button:hover {
  background: linear-gradient(to bottom, #bdb8aa, #837e74);
  transform: scale(1.05);
}

.button {
  display: inline-block;
  background-color: #444; /* or your brand color */
  color: #fff;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  font-family: inherit;
}

.button:hover {
  background-color: #666;
}

/* === Sections === */
.section,
.signup,
.testimonials {
  background: rgba(255, 255, 255, 0.92);
  padding: 2rem;
  margin: 2rem auto;
  max-width: 1000px;
  border-radius: 12px;
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.intro-section {
  padding: 2em 1em 1em;
  font-family: sans-serif;
  font-size: 1.1em;
  text-align: center;
}

.section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #444;
  margin-bottom: 1rem;
}

/* === Tier Cards === */
.tiers {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.tier {
  background: #f2f1ee;
  margin: 1rem 0;
  padding: 1rem 1.25rem;
  border-left: 6px solid #7e7b72;
  border-radius: 8px;
  font-size: 1rem;
}

/* === Text Layout === */
.text-block {
  max-width: 800px;
  margin: 0 auto 2rem auto;
  text-align: left;
  line-height: 1.6;
  font-size: 1.05rem;
}

/* === Gallery === */
.image-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
}

.image-gallery img {
  max-width: 300px;
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

/* === Inputs === */
input[type="email"] {
  padding: 0.5rem;
  width: 250px;
  margin-right: 1rem;
  border: 1px solid #aaa;
  border-radius: 5px;
  font-family: 'Inter', sans-serif;
}

small {
  font-size: 0.8rem;
  color: #777;
}

/* === Footer === */
footer {
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  color: #444;
  background: rgba(255,255,255,0.7);
}

footer a {
  margin: 0 0.5rem;
  color: #444;
  text-decoration: none;
  font-weight: 500;
}
