/* Base Styles */
:root {
  --bg-color: #fcfcfc;
  --text-color: #333;
  --accent-color: #9ab09a; /* Soft Sage Green */
  --highlight-color: #e8d0d0; /* Soft Petal Pink */
  --font-family: 'Playfair Display', serif;
  --font-body: 'Lato', sans-serif;
}

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

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: var(--font-family);
  font-weight: 400;
  letter-spacing: 1px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.7;
}

/* Header & Nav */
header {
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.logo {
  font-family: var(--font-family);
  font-size: 1.8rem;
  text-transform: uppercase;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Hero Section */
.hero {
  height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(rgba(255,255,255,0.7), rgba(255,255,255,0.7)), 
              url('https://images.unsplash.com/photo-1526047932273-341f2a7631f9?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
  background-size: cover;
  background-position: center;
  margin-bottom: 4rem;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.cta-button {
  margin-top: 2rem;
  padding: 1rem 2rem;
  background-color: var(--accent-color);
  color: #fff;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
}

/* Grid Section */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2rem;
}

.arrangements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-bottom: 5rem;
}

.arrangement-card {
  text-align: center;
}

.arrangement-card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  margin-bottom: 1rem;
  filter: grayscale(20%);
  transition: filter 0.5s;
}

.arrangement-card img:hover {
  filter: grayscale(0%);
}

/* About Section */
.about {
  background-color: var(--highlight-color);
  padding: 5rem 0;
  text-align: center;
}

.about p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.2rem;
  font-style: italic;
}

/* Footer */
footer {
  padding: 4rem 2rem;
  text-align: center;
  font-size: 0.8rem;
  border-top: 1px solid #eee;
}

.footer-links {
  margin-bottom: 1rem;
}

.footer-links a {
  margin: 0 1rem;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  header {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}
