/* ============================================
   OLYMPUS STARTER - Base Styles (Premium Boxed)
   ============================================ */

/* --- Font Face --- */
@font-face {
    font-family: 'Manrope';
    src: url('../fonts/Manrope-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Manrope';
    src: url('../fonts/Manrope-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Manrope';
    src: url('../fonts/Manrope-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Manrope';
    src: url('../fonts/Manrope-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Manrope';
    src: url('../fonts/Manrope-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Manrope';
    src: url('../fonts/Manrope-ExtraBold.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

/* --- CSS Custom Properties --- */
:root {
    --woocommerce: #2d7a4f;
    --wc-primary: #2d7a4f;
    --primary: #114639;
    --primary-dark: #004418;
    --primary-medium: #2d7a4f;
    --accent: #6CD04E;
    --accent-gold: #fbbc34;
    --bg: #e8eaed;
    --bg-white: #ffffff;
    --bg-light: #f5f7f9;
    --text: #5e5e5e;
    --text-dark: #1a1a1a;
    --text-light: #888888;
    --border: #e0e0e0;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 8px 28px rgba(0, 0, 0, 0.12);
    --radius: 14px;
    --radius-sm: 10px;
    --radius-md: 12px;
    --container: 1200px;
    --site-width: 1400px;
    --font: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --transition: 0.3s ease;
}

/* --- Reset --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font);
    font-size: 15px;
    line-height: 1.7;
    color: var(--text);
    background-color: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* --- BOXED LAYOUT --- */
#page {
    max-width: var(--site-width);
    margin: 0 auto;
    background: var(--bg-white);
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.08);
    position: relative;
}

@media (min-width: 1440px) {
    body {
        padding-top: 20px;
        padding-bottom: 20px;
    }
    #page {
        border-radius: 16px;
        overflow: clip;
    }
}

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

a {
    color: var(--primary-medium);
    text-decoration: none;
    transition: color var(--transition);
}
a:hover {
    color: var(--primary-dark);
}

ul, ol {
    list-style: none;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    color: #242424;
    font-weight: 300;
    line-height: 1.25;
    margin-bottom: 0.5em;
}

h1 { font-size: 38px; }
h2 { font-size: 30px; }
h3 { font-size: 22px; }
h4 { font-size: 18px; }
h5 { font-size: 16px; }
h6 { font-size: 15px; }

p {
    margin-bottom: 1em;
}

/* --- Container --- */
.container {
    max-width: var(--container);
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

/* --- Section Spacing --- */
.section {
    padding: 80px 0;
}

.section--dark {
    background: linear-gradient(135deg, #002a10 0%, var(--primary-dark) 50%, var(--primary) 100%);
    color: #ffffff;
}

.section--light {
    background-color: var(--bg-light);
}

.section__title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 28px;
    font-weight: 300;
    color: #242424;
    position: relative;
    letter-spacing: -0.02em;
}

.section__title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--primary-medium));
    margin: 14px auto 0;
    border-radius: 2px;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 30px;
    border: none;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all 0.35s ease;
    text-decoration: none;
    line-height: 1.4;
    position: relative;
    overflow: hidden;
}

.btn--primary {
    background: linear-gradient(135deg, var(--primary-medium) 0%, var(--primary) 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(6, 101, 39, 0.3);
}
.btn--primary:hover {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(6, 101, 39, 0.4);
}

.btn--outline {
    background: transparent;
    color: var(--primary-medium);
    border: 2px solid var(--primary-medium);
}
.btn--outline:hover {
    background: linear-gradient(135deg, var(--primary-medium) 0%, var(--primary) 100%);
    color: #ffffff;
    border-color: transparent;
    transform: translateY(-2px);
}

.btn--white {
    background-color: #ffffff;
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.btn--white:hover {
    background: linear-gradient(135deg, var(--primary-medium) 0%, var(--primary) 100%);
    color: #ffffff;
    transform: translateY(-2px);
}

.btn--accent {
    background: linear-gradient(135deg, var(--accent) 0%, #4fb83a 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(108, 208, 78, 0.3);
}
.btn--accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(108, 208, 78, 0.4);
}

.btn--lg {
    padding: 16px 40px;
    font-size: 14px;
    letter-spacing: 0.1em;
}

.btn--sm {
    padding: 9px 20px;
    font-size: 12px;
}

/* --- Cards --- */
.card {
    background: var(--bg-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-6px);
    border-color: rgba(6, 101, 39, 0.08);
}

/* --- Breadcrumbs --- */
.breadcrumbs {
    padding: 15px 0;
    font-size: 14px;
    color: var(--text-light);
}

.breadcrumbs a {
    color: var(--text-light);
}
.breadcrumbs a:hover {
    color: var(--primary-medium);
}

.breadcrumbs .sep {
    margin: 0 8px;
    color: var(--border);
}

.breadcrumbs .current {
    color: var(--text-dark);
    font-weight: 300;
}

/* --- Site Content --- */
.site-content {
    min-height: 50vh;
    padding-top: 30px;
    padding-bottom: 60px;
}

/* --- Page Content --- */
.page-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-content h1 {
    margin-bottom: 30px;
}

.page-content p,
.page-content ul,
.page-content ol {
    margin-bottom: 1.2em;
}

.page-content ul {
    list-style: disc;
    padding-left: 1.5em;
}
.page-content ol {
    list-style: decimal;
    padding-left: 1.5em;
}

/* --- Form inputs --- */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="number"],
input[type="url"],
input[type="search"],
textarea,
select {
    font-family: var(--font);
    font-size: 14px;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--bg-white);
    color: var(--text-dark);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    outline: none;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
textarea:focus,
select:focus {
    border-color: var(--primary-medium);
    box-shadow: 0 0 0 3px rgba(6, 101, 39, 0.1);
}

/* --- Scroll reveal --- */
.reveal {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Accessibility --- */
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    word-wrap: normal;
}

/* --- Scrollbar --- */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg);
}
::-webkit-scrollbar-thumb {
    background: var(--primary-medium);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}
