@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700;800&family=Playfair+Display:wght@700;800&display=swap');

:root {
    --dark: #063f25;
    --green: #0d7c3e;
    --soft: #eef3e5;
    --gold: #c58b10;
    --rust: #8b2d11;
    --ink: #26332b;
    --muted: #69766c;
    --white: #ffffff;
    --line: #dbe4d4;
    --shadow: 0 22px 60px rgba(6, 63, 37, 0.13);
}

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

html {
    scroll-behavior: smooth;
    min-height: 100%;
}

body {
    font-family: 'DM Sans', Arial, sans-serif;
    background: var(--soft);
    color: var(--ink);
    line-height: 1.7;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a {
    text-decoration: none;
    color: inherit;
}

/* NAVBAR */
.navbar {
    min-height: 78px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 0 7%;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--line);
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 800;
    color: var(--dark);
    white-space: nowrap;
}

.logo span {
    color: var(--gold);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    font-weight: 800;
    font-size: 14px;
    color: var(--dark);
}

.nav-links a {
    transition: 0.2s ease;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    padding: 12px 22px;
    font-weight: 800;
    font-size: 14px;
    border: 1px solid var(--dark);
    transition: 0.2s ease;
    cursor: pointer;
}

.btn.primary {
    background: var(--green);
    border-color: var(--green);
    color: var(--white);
    box-shadow: 0 10px 24px rgba(13, 124, 62, 0.22);
}

.btn.light {
    background: var(--white);
    color: var(--dark);
}

.btn:hover {
    transform: translateY(-2px);
}

/* HERO */
.hero {
    min-height: 650px;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    align-items: center;
    gap: 70px;
    padding: 82px 13% 70px;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(46px, 6vw, 70px);
    line-height: 1;
    color: var(--dark);
    margin-bottom: 24px;
}

.hero h1 span {
    color: var(--gold);
}

.hero p {
    max-width: 560px;
    color: var(--muted);
    font-size: 17px;
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-card {
    background: linear-gradient(135deg, #063f25 0%, #0d7c3e 65%, #8aa936 100%);
    min-height: 380px;
    border-radius: 30px;
    padding: 52px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.hero-card::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    right: -70px;
    top: -70px;
    background: rgba(255, 255, 255, 0.12);
}

.hero-card::after {
    content: "Class Schedule";
    position: absolute;
    left: 52px;
    bottom: 32px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 12px;
}

.schedule-line {
    min-height: 62px;
    background: var(--white);
    border-radius: 14px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.schedule-line i {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    display: block;
    flex-shrink: 0;
}

.schedule-line:nth-child(1) i {
    background: var(--rust);
}

.schedule-line:nth-child(2) i {
    background: var(--green);
}

.schedule-line:nth-child(3) i {
    background: var(--gold);
}

.schedule-line b {
    height: 9px;
    width: 78%;
    background: #dfc4aa;
    border-radius: 99px;
    display: block;
    box-shadow: 0 15px 0 #efdfcf;
}

/* STATS */
.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    padding: 0 13% 90px;
}

.stat {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 30px 24px;
    text-align: center;
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.05);
}

.stat strong {
    display: block;
    font-size: 32px;
    color: var(--dark);
    font-family: 'Playfair Display', serif;
}

.stat span {
    font-size: 14px;
    color: var(--muted);
}

/* SECTIONS */
.section {
    padding: 90px 13%;
}

.section-title {
    max-width: 760px;
    margin-bottom: 38px;
}

.section-title small {
    font-weight: 800;
    color: var(--gold);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.section-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(34px, 4vw, 48px);
    color: var(--dark);
    line-height: 1.1;
    margin-top: 10px;
}

.section-title p {
    color: var(--muted);
    margin-top: 14px;
}

/* CARDS */
.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.045);
    transition: 0.2s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.card h3 {
    color: var(--dark);
    margin: 14px 0 8px;
}

.card p {
    color: var(--muted);
}

.icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: #edf8f0;
    display: grid;
    place-items: center;
    color: var(--green);
    font-weight: 900;
}

/* SPLIT / PANEL */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 44px;
    align-items: center;
}

.panel {
    background: var(--white);
    border-radius: 30px;
    padding: 40px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.panel ul {
    padding-left: 20px;
    color: var(--muted);
}

.panel li {
    margin-bottom: 10px;
}

/* PAGE HERO */
.page-hero {
    padding: 95px 13% 55px;
    background: linear-gradient(135deg, #edf4e7, #ffffff);
}

.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(42px, 5vw, 58px);
    color: var(--dark);
    line-height: 1.05;
}

.page-hero p {
    max-width: 720px;
    color: var(--muted);
    margin-top: 14px;
}

/* CONTACT */
.contact-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
}

.field label {
    font-weight: 800;
    color: var(--dark);
}

.field input,
.field textarea {
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 14px 15px;
    font: inherit;
    outline: none;
    background: var(--white);
}

.field input:focus,
.field textarea:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 4px rgba(13, 124, 62, 0.12);
}

.field textarea {
    min-height: 140px;
    resize: vertical;
}

/* FOOTER */
.footer {
    margin-top: auto;
    padding: 24px 7%;
    border-top: 1px solid var(--line);
    text-align: center;
    color: var(--muted);
    background: var(--white);
}

/* PAGE HEIGHT / FOOTER FIX */
html,
body {
    min-height: 100%;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.page-content {
    flex: 1;
}

.footer {
    margin-top: auto;
    padding: 24px 7%;
    border-top: 1px solid var(--line);
    text-align: center;
    color: var(--muted);
    background: var(--white);
}

.footer p {
    margin: 0;
}

.footer {
    margin-top: auto;
}

.footer {
    margin-top: auto;
}

.footer p {
    margin: 0;
}
