﻿:root {
  --navy: #0e1b2a;
  --gold: #d4af37;
  --white: #ffffff;
  --max-width: 1200px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Lato", sans-serif;
  background-color: var(--navy);
  color: var(--white);
  line-height: 1.6;
}

a {
  color: var(--gold);
  text-decoration: none;
}

header {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header img {
  height: 64px;
  width: auto;
}

.cta-button {
  background-color: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  transition: background 0.3s ease, color 0.3s ease;
  cursor: pointer;
}

.cta-button:hover {
  background-color: var(--gold);
  color: var(--navy);
}

/* Hero Section */
.hero {
  max-width: var(--max-width);
  margin: 3rem auto;
  text-align: center;
  padding: 0 1rem;
  animation: fadeIn 1.2s ease-in-out forwards;
  opacity: 0;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: calc(2rem + 2vw);
  margin-bottom: 1rem;
  font-weight: 700;
  color: var(--gold);
}

.hero p {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto 2rem;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Promise Section */
.promise {
  background-color: rgba(255, 255, 255, 0.04);
  padding: 4rem 1rem;
}

.promise-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.promise-item h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

/* Newsletter Section */
.newsletter {
  max-width: var(--max-width);
  margin: 4rem auto 6rem;
  text-align: center;
  padding: 0 1rem;
}

.newsletter input[type="email"] {
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 0;
  max-width: 320px;
  width: 80%;
  margin-right: 0.5rem;
}

.newsletter button {
  background-color: var(--gold);
  border: none;
  color: var(--navy);
  padding: 0.8rem 1.5rem;
  font-weight: 600;
  cursor: pointer;
}

footer {
  text-align: center;
  padding: 2rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.875rem;
}

.join {
  font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--gold); margin-bottom: 1rem;
}

.join-p{
  margin-bottom: 1.5rem;
}