@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=Playfair+Display:ital,wght@0,400;0,600;1,400&display=swap');

:root {
  --primary: #d4a373; /* warm rose/tan */
  --secondary: #e9edc9; /* soft pastel green */
  --accent: #fefae0; /* warm ivory */
  --text-dark: #3a3a3a;
  --text-light: #6c584c;
  --bg-color: #fdfaf6;
  --white: #ffffff;
}

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  color: var(--primary);
}

/* Typography Utilities */
.text-center { text-align: center; }
.italic { font-style: italic; }

/* Header */
header {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 2rem 5%;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--white);
  letter-spacing: 2px;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.7);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 20px;
  max-width: 800px;
  animation: fadeInUp 1.5s ease-out forwards;
}

.hero-content h1 {
  font-size: 4rem;
  color: var(--white);
  margin-bottom: 1rem;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.hero-content p {
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}

.btn {
  display: inline-block;
  padding: 15px 35px;
  background: var(--primary);
  color: var(--white);
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(212, 163, 115, 0.3);
}

.btn:hover {
  background: var(--text-light);
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(108, 88, 76, 0.4);
}

/* Section: Letter */
.section-letter {
  padding: 8rem 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.letter-image {
  flex: 1;
  position: relative;
}

.letter-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  transition: transform 0.5s ease;
}

.letter-image img:hover {
  transform: scale(1.02);
}

.letter-image::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  border: 2px solid var(--primary);
  border-radius: 15px;
  z-index: -1;
}

.letter-text {
  flex: 1;
}

.letter-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.letter-text p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

/* Section: Grid */
.section-promises {
  background-color: var(--white);
  padding: 6rem 5%;
  text-align: center;
}

.section-promises h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.promises-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.promise-card {
  background: var(--bg-color);
  padding: 3rem 2rem;
  border-radius: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.promise-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.05);
  background: var(--accent);
}

.promise-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.promise-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.promise-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* Banner / Image block */
.image-banner {
  height: 60vh;
  background-image: url('images/feet.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-text {
  background: rgba(255, 255, 255, 0.85);
  padding: 3rem 4rem;
  border-radius: 15px;
  text-align: center;
  max-width: 600px;
  backdrop-filter: blur(10px);
}

.banner-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.banner-text p {
  color: var(--text-light);
  font-style: italic;
}

/* Footer */
footer {
  background-color: var(--text-dark);
  color: var(--white);
  text-align: center;
  padding: 4rem 2rem;
}

footer h3 {
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 1rem;
}

footer p {
  opacity: 0.7;
  font-size: 0.9rem;
}

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

/* Responsive */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.8rem;
  }
  
  .section-letter {
    flex-direction: column;
    padding: 4rem 5%;
  }
  
  .letter-image {
    width: 100%;
  }
}
