/* Flair Studio - Site 1: Classic Elegance */

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

:root {
  --bg: #fdf4f6;
  --bg-card: #ffffff;
  --accent: #a3344f;
  --accent-soft: #e7b9c4;
  --text: #5c4a4d;
  --text-light: #9c8a8d;
  --border: #f1d9de;
}

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

body {
  font-family: 'Lato', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.01em;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.03em;
}

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

img {
  max-width: 100%;
  display: block;
}

/* Header */
.site-header {
  text-align: center;
  padding: 48px 24px 24px;
}

.logo-wrap .logo {
  max-width: 230px;
  margin: 0 auto 20px;
}

.main-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 36px;
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.main-nav a {
  color: var(--text);
  padding-bottom: 6px;
  border-bottom: 1px solid transparent;
  transition: 0.25s;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.divider {
  width: 80px;
  height: 1px;
  background: var(--accent-soft);
  margin: 32px auto;
}

/* Main content */
main {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

/* Hero */
.hero {
  text-align: center;
  padding: 40px 0 60px;
}

.hero h1 {
  font-size: 44px;
  margin-bottom: 16px;
}

.hero .script {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--text-light);
  margin-bottom: 28px;
}

.hero p {
  font-size: 17px;
  max-width: 560px;
  margin: 0 auto 32px;
}

.btn {
  display: inline-block;
  padding: 14px 38px;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  border-radius: 2px;
  transition: 0.25s;
}

.btn:hover {
  background: var(--accent);
  color: #fff;
}

.btn-row {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* Category teasers on home */
.teasers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin: 50px 0;
}

.teaser {
  text-align: center;
  padding: 32px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.teaser h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.teaser p {
  font-size: 14px;
  color: var(--text-light);
}

/* Section headings */
.page-title {
  text-align: center;
  padding: 50px 0 10px;
}

.page-title h1 {
  font-size: 38px;
}

.page-title .script {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 20px;
  color: var(--text-light);
}

/* About page */
.about-portrait {
  text-align: center;
  margin: 30px 0 40px;
}

.about-portrait img {
  max-width: 220px;
  margin: 0 auto;
  border: 1px solid var(--border);
}

.about-text p {
  margin-bottom: 22px;
  font-size: 16px;
}

.about-text .sign-off {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--accent);
  margin-top: 10px;
}

/* Pricing */
.price-section {
  margin: 50px 0;
}

.price-section > h2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 6px;
}

.price-section > .price-sub {
  text-align: center;
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 30px;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 28px 24px;
  text-align: center;
}

.price-card h3 {
  font-size: 20px;
  margin-bottom: 4px;
}

.price-card .price {
  font-size: 28px;
  color: var(--text);
  font-family: 'Playfair Display', serif;
  margin-bottom: 14px;
}

.price-card ul {
  list-style: none;
  font-size: 14px;
  text-align: left;
  display: inline-block;
}

.price-card ul li {
  padding: 4px 0;
  border-bottom: 1px solid var(--border);
}

.price-card ul li:last-child {
  border-bottom: none;
}

.price-note {
  text-align: center;
  font-size: 14px;
  color: var(--text-light);
  margin-top: 24px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
}

.addon-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 28px 32px;
  margin: 0 auto;
  max-width: 480px;
  text-align: center;
}

.addon-card .price-line {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  text-align: left;
}

.addon-card .price-line:last-child {
  border-bottom: none;
}

.addon-card .includes {
  margin-top: 16px;
  font-size: 14px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--text-light);
}

/* Gallery */
.gallery-tabs-note {
  text-align: center;
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 10px;
}

.gallery-section {
  margin: 50px 0;
}

.gallery-section h2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 24px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border: 1px solid var(--border);
}

.gallery-empty {
  text-align: center;
  color: var(--text-light);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  grid-column: 1 / -1;
  padding: 30px 0;
}

/* Contact */
.contact-info {
  text-align: center;
  margin-bottom: 40px;
}

.contact-info p {
  margin-bottom: 8px;
  font-size: 16px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 520px;
  margin: 0 auto;
}

.contact-form label {
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 6px;
  display: block;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  color: var(--text);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .btn {
  align-self: center;
  background: none;
  cursor: pointer;
}

/* Footer */
.site-footer {
  text-align: center;
  padding: 50px 24px 40px;
  border-top: 1px solid var(--border);
  margin-top: 40px;
}

.footer-logo {
  max-width: 140px;
  margin: 0 auto 16px;
}

.site-footer p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 8px;
}

.footer-contact a {
  color: var(--accent);
}

.footer-copy {
  font-size: 12px;
  margin-top: 16px;
}

/* Responsive */
@media (max-width: 640px) {
  .teasers,
  .price-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .main-nav {
    gap: 18px;
    font-size: 12px;
  }
  .hero h1 {
    font-size: 32px;
  }
}
