/* Critical CSS for above-the-fold content */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Poppins:wght@400;500;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  background-color: transparent;
  border: none;
  outline: none;
  list-style: none;
}

body {
  background-color: #f9f9f9;
  /* Removing padding-top since navbar is removed */
}

:root {
  --color-primary: #d8d5dd;
  --color-secondary: #f9f4d7;
  --linear-bg: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
  --text-primary: #000000;
  --text-secondary: #ffffff;
  --bg-color: #d8d5dd;
}

/* Basic Typography */
h1, h2, h3 {
  font-family: "Playfair Display";
  font-style: normal;
  color: currentColor;
  line-height: 150%;
}

h1 { font-size: 64px; font-weight: 700; }
h2 { font-size: 48px; font-weight: 700; }
h3 { font-size: 32px; font-weight: 400; line-height: 120%; }

p {
  font-family: "Poppins";
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: currentColor;
}

/* Navigation - DISABLED (Modern navbar in navbar-clean.css) */
/*
.holistic-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background-color: var(--bg-color);
  padding: 16px 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1), 
              background-color 0.6s cubic-bezier(0.19, 1, 0.22, 1),
              backdrop-filter 0.6s cubic-bezier(0.19, 1, 0.22, 1),
              box-shadow 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}
*/

.holistic-nav .nav-logo {
  height: 48px;
  transition: transform 0.3s ease;
}

.holistic-nav .nav-logo img {
  height: 100%;
}

.holistic-nav .flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.holistic-nav .link-box {
  display: flex;
  align-items: center;
}

.holistic-nav .links:not(:last-child) {
  margin-right: 37px;
}

/* Hero Section */
.home-hero {
  background-image: var(--linear-bg), url(../img/home-page/home-hero.webp);
  background-position: center;
  background-size: cover;
  color: white;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

/* Layout Utilities */
.max-width {
  margin: 0 auto;
  max-width: 1440px;
  padding: 0 100px;
}

.flex {
  display: flex;
}

.flex--between {
  justify-content: space-between;
}

.flex--full {
  justify-content: space-between;
  align-items: center;
}

/* Buttons */
.btn {
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 500;
  display: inline-block;
  font-family: "Playfair Display";
}

.btn--primary {
  background-color: var(--color-secondary);
  color: var(--text-primary);
}

/* Mobile Navigation */
.burger-menu {
  display: none;
  cursor: pointer;
  padding: 8px;
}

@media (max-width: 768px) {
  .max-width {
    padding: 0 36px;
  }
  
  h1 { font-size: 48px; }
  h2 { font-size: 32px; }
  
  .holistic-nav .link-box {
    display: none;
  }
  
  .burger-menu {
    display: block;
  }
}

@media (max-width: 425px) {
  .max-width {
    padding: 0 24px;
  }
  
  h1 { font-size: 25px; }
} 