:root {
    --deep-teal: hsla(169, 25%, 41%, 1);
    --brown-bark: hsla(28, 67%, 23%, 1);
    --taupe: hsla(35, 20%, 26%, 1);
    --floral-white: hsla(45, 73%, 96%, 1);
    --deep-walnut: hsla(35, 44%, 16%, 1);
    --olive: hsla(62, 85%, 26%, 1);
    --burnt-tangerine: hsla(6, 87%, 45%, 1);
    --carrot-orange: hsla(33, 79%, 52%, 1);

    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --max-width: 1200px;

    /* Glassmorphism Variables */
    --glass-bg: rgba(255, 255, 255, 0.3);
    --glass-border: rgba(255, 255, 255, 0.4);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    --glass-blur: blur(16px);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: var(--font-primary);
    background-color: var(--floral-white);
    color: var(--taupe);
    line-height: 1.6;
}

img {
    max-width: 100%;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.site-header {
    background-color: var(--floral-white);
    color: var(--deep-walnut);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.navbar {
    padding: 1rem 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--floral-white);
    text-decoration: none;
    letter-spacing: -0.02em;
    max-width: 128px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    position: relative;
}

.nav-link {
    background-color: rgba(139, 69, 19, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 8px;
    padding: 1em 1.5rem;
    font-size: 0.95rem;
    color: var(--floral-white);
    text-decoration: none;
    transition: opacity 0.2s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.nav-link:hover {
    opacity: 1;
    background-color: rgba(139, 69, 19, 0.9);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.nav-link::before {
    content: '';
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--floral-white);
    transition: width 0.3s ease;
}

.nav-link:hover::before {
    width: 100%;
}

/* Hero Section */
.hero-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--deep-walnut) 0%, var(--taupe) 100%);
    color: var(--floral-white);
}

.hero-content {
    text-align: center;
}

.hero-title {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.35rem);
    opacity: 0.9;
    max-width: 640px;
    margin: 0 auto 2.5rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.85rem 1.75rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
    background-color: var(--burnt-tangerine);
    color: var(--floral-white);
    border: 2px solid var(--burnt-tangerine);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(255, 138, 74, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-full {
    width: 100%;
}

/* Section Titles */
.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--deep-teal);
    text-align: center;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--taupe);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

/* items Section */
.items-section {
    background: url("../images/alwaysdreaming_logo.jpeg");
    background-size: 150rem;
    background-position: top center;
    background-repeat: no-repeat;
    padding: 5rem 0;
}

.items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.item-card {
    background-color: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.item-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
    background-color: rgba(255, 255, 255, 0.5);
}

.item-icon {
    font-size: 2.5rem;
    color: var(--carrot-orange);
    margin-bottom: 1rem;
}

.item-card .item-icon {
    transition: transform 0.3s ease;
}

.item-card:hover .item-icon {
    transform: scale(1.1);
}

.item-title {
    font-size: 1.25rem;
    color: var(--deep-teal);
    margin-bottom: 0.75rem;
}

.item-description {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background-color: white;
}

.about-content {
    text-align: center;
}

.lead {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: var(--taupe);
}

.about-grid {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--deep-teal);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--taupe);
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
}

.contact-form {
    max-width: 640px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.75rem;
}

.form-label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--deep-teal);
    margin-bottom: 0.4rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 2px solid rgba(168, 193, 169, 0.5);
    font-size: 1rem;
    font-family: inherit;
    color: var(--taupe);
    background-color: rgba(255, 255, 255, 0.4);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--burnt-tangerine);
    background-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 0 3px rgba(255, 138, 74, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: hsla(0, 0%, 60%, 0.7);
}

/* Footer */
.site-footer {
    background-color: var(--deep-walnut);
    padding: 2rem 0;
    text-align: center;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.copyright {
    color: hsla(0, 0%, 60%);
    font-size: 0.9rem;
}

.footer-nav {
    display: flex;
    gap: 1.25rem;
}

.footer-link {
    color: var(--floral-white);
    text-decoration: none;
    font-size: 0.9rem;
    transition: opacity 0.2s ease;
}

.footer-link:hover {
    opacity: 0.85;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .logo {
        max-width: 64px;
    }

    .about-grid {
        gap: 2rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-section {
        padding: 4rem 0;
    }
}