/* ================================
   GOOGLE FONTS IMPORT
================================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700&family=Poppins:wght@300;400;500;600&family=Montserrat:wght@500;600&display=swap');


/* ================================
   ROOT VARIABLES
================================ */
:root {
  /* Colors */
  --bg-main: #F8F3E9;          /* Ivory */
  --bg-section: #C6AD8F20;     /* Warm Taupe (light transparent) */
  --text-main: #4B4B4B;        /* Charcoal */
  --text-muted: #C6AD8F;       /* Taupe */
  --accent-primary: #B5CBB7;   /* Sage Green */
  --accent-hover: #D98F6A;     /* Terracotta */
  --card-bg: #FFFFFF;
  --white: #FFFFFF;

  /* Fonts */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
  --font-ui: 'Montserrat', sans-serif;

  /* UI Effects */
  --shadow-soft: 0 10px 30px rgba(0,0,0,0.08);
  --radius: 10px;
  --transition: all 0.3s ease;
}


/* ================================
   GLOBAL RESET
================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
}


/* ================================
   TYPOGRAPHY
================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  color: var(--text-main);
  font-weight: 600;
}

h1 { font-size: 48px; }
h2 { font-size: 36px; }
h3 { font-size: 28px; }

p {
  font-size: 16px;
}

small {
  color: var(--text-muted);
}


/* ================================
   LINKS
================================ */
a {
  color: var(--accent-primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--accent-hover);
}


/* ================================
   BUTTONS
================================ */
.btn {
  padding: 12px 26px;
  border-radius: var(--radius);
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  display: inline-block;
}

/* Primary Button */
.btn-primary {
  background-color: var(--accent-primary);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  box-shadow: var(--shadow-soft);
}

/* Secondary Button */
.btn-secondary {
  background-color: transparent;
  color: var(--accent-primary);
  border: 2px solid var(--accent-primary);
}

.btn-secondary:hover {
  background-color: var(--accent-primary);
  color: var(--white);
}


/* ================================
   SECTIONS
================================ */
.section {
  padding: 60px 8%;
}

.section-alt {
  background-color: var(--bg-section);
}


/* ================================
   CARDS
================================ */
.card {
  background-color: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 20px;
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-5px);
}


/* ================================
   IMAGES
================================ */
img {
  max-width: 100%;
  border-radius: var(--radius);
}


/* ================================
   RESPONSIVE
================================ */
@media(max-width: 768px) {
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  .section { padding: 40px 6%; }
}
