@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
  --bg: #f8f5f1;
  --bg-soft: #efe8df;
  --text: #2d2b29;

  --green: #7F7141;
  --green-dark: #6A5E35;

  --white: #ffffff;
  --border: #e6ddd3;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(248,245,241,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 1px 1%;
}
}

.brand {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.header-logo {
  height: 180px;
  width: auto;
  display: block;
}

.brand-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  font-weight: 600;
}

.logo-n {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.30em;
  line-height: 1;
  font-weight: 700;
}

nav {
  display: flex;
  gap: 28px;
}

nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  transition: 0.3s;
}

nav a:hover {
  color: var(--green);
}

/* HERO */

.hero {
  min-height: 85vh;

  display: flex;
  align-items: center;

  padding: 80px 6%;

  background:
    linear-gradient(rgba(248,245,241,0.55), rgba(248,245,241,0.75)),
    url('assets/yoga-hero.png') center/cover;
}

.hero-content {
  max-width: 650px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--green);
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.6rem;
  line-height: 0.95;
  margin-bottom: 20px;
  font-weight: 600;
}

.hero-kicker {
  font-size: 1.2rem;
  color: var(--green-dark);
  margin-bottom: 25px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 35px;
  flex-wrap: wrap;
}

/* BUTTONS */

.button {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 40px;
  text-decoration: none;
  transition: 0.3s ease;
  font-weight: 600;
}

.primary {
  background: var(--green);
  color: white;
}

.primary:hover {
  background: var(--green-dark);
}

.secondary {
  border: 1px solid var(--green);
  color: var(--green);
}

.secondary:hover {
  background: var(--green);
  color: white;
}

/* GENERELLE SEKTIONER */

textarea::placeholder {
  white-space: pre-line;
}

.section,
.offerings {
  padding: 100px 6%;
}

.about,
.class-section,
.signup-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.section h2,
.offerings h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  margin-bottom: 24px;
}

/* PORTRÆT */

.portrait-wrap {
  display: flex;
  justify-content: center;
}

.portrait {
  width: 100%;
  max-width: 420px;
  border-radius: 28px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* OFFERINGS */

.offer-grid {
  margin-top: 45px;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.offer-grid article {
  background: white;
  padding: 40px 30px;
  border-radius: 24px;
  border: 1px solid var(--border);

  transition: 0.3s;
}

.offer-grid article:hover {
  transform: translateY(-5px);
}

.offer-icon {
  font-size: 2rem;
  color: var(--green);
}

.offer-grid h3 {
  margin: 20px 0 14px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
}

/* HOLD */

.class-table {
  background: white;
  padding: 35px;
  border-radius: 24px;
  border: 1px solid var(--border);
}

.table-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;

  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.table-head {
  font-weight: 700;
}

.price-card {
  margin: 30px 0;
  padding: 25px;
  background: var(--bg-soft);
  border-radius: 20px;
}

.price-card strong {
  display: block;
  font-size: 2rem;
  margin: 10px 0;
}

/* FORM */

.signup-form {
  background: white;
  padding: 40px;
  border-radius: 24px;
  border: 1px solid var(--border);
}

.signup-form label {
  display: block;
  margin-bottom: 18px;
}

.signup-form input,
.signup-form textarea {
  width: 100%;
  margin-top: 8px;
  padding: 14px 16px;

  border-radius: 12px;
  border: 1px solid var(--border);

  font-family: inherit;
}

.signup-form input:focus,
.signup-form textarea:focus {
  outline: none;
  border-color: var(--green);
}

.address-help {
  display: block;
  margin-top: 6px;
  color: var(--green-dark);
  font-size: 0.88rem;
}

.address-help:empty {
  display: none;
}

.form-status {
  margin-top: 18px;
  color: var(--green-dark);
}

/* FOOTER */

.site-footer {
  background: var(--bg-soft);

  padding: 14px 1% 5px;

  display: grid;
  grid-template-columns: 280px 1fr;

  gap: 50px;
  align-items: center;
}

.footer-branding {
  min-width: 220px;
}

.footer-brand {
  color: #7F7141;

  font-family: "Cormorant Garamond", serif;
  font-size: 1.72rem;
  line-height: 0.92;

  white-space: nowrap;

  display: flex;
  align-items: baseline;
  gap: 0;
}

.footer-contact-grid {
  display: grid;
grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 40px;
  width: 100%;
}

.footer-item {
  display: flex;
  flex-direction: column;
}

.footer-item span {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
}

.footer-item a,
.footer-item p {
  margin: 0;
  text-decoration: none;
  color: var(--text);
  line-height: 1.5;
}

.instagram-link {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.instagram-link svg {
  color: #7c7a6d;
}
/* RESPONSIVE */

@media (max-width: 900px) {

  .about,
  .class-section,
  .signup-section,
  .offer-grid {
    grid-template-columns: 1fr;
  }

  .site-header {
    flex-direction: column;
    gap: 8px;
    padding: 8px 4%;
  }

  .brand {
    width: 100%;
    align-items: flex-start;
    padding-left: 20px;
  }

  nav {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 16px;
    width: 100%;
  }

  nav a {
    font-size: 1rem;
    white-space: nowrap;
  }

  .hero h1 {
    font-size: 3.6rem;
  }
}

@media (max-width: 600px) {

  .hero-actions {
    flex-direction: column;
  }

.header-logo {
  height: 90px;
}

  .button {
    width: 100%;
    text-align: center;
  }

  .section h2,
  .offerings h2 {
    font-size: 2.3rem;
  }

  .signup-form {
    padding: 25px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-contact-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
	padding-left: 34px;
  }

}

.footer-item {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.footer-item span {
  font-weight: 600;
  margin-bottom: 0.1rem;
  line-height: 1.2;
}

.footer-item a,
.footer-item p {
  margin: 0;
  line-height: 1.4;
  text-decoration: none;
  color: #2f2a2a;
}

.footer-logo {
  width: 200px;
  height: auto;
  display: block;
  margin-bottom: 12px;
}



.instagram-link {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: #2f2a2a;
  text-decoration: none;
}

.instagram-link:hover {
  opacity: 0.8;
}

.instagram-link svg {
  color: #7F7141;
}
