:root {
    --cream: #F9F7F3; /* Более чистый белый для свежести */
    --dark-green: #2F4F4F; /* Темный серо-зеленый, более мягкий */
    --olive: #556B2F; /* Насыщенный оливковый для акцентов */
    --charcoal: #36454F; /* Угольный для текста, для лучшей читаемости */
    --border-color: #E5E7EB; /* Светло-серый для рамок */
}

body {
    font-family: 'Work Sans', sans-serif;
    background-color: var(--cream);
    color: var(--charcoal);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.font-heading { font-family: 'Playfair Display', serif; }
.font-body { font-family: 'Work Sans', sans-serif; }
.bg-cream { background-color: var(--cream); }
.bg-dark-green { background-color: var(--dark-green); }
.bg-olive { background-color: var(--olive); }
.text-dark-green { color: var(--dark-green); }
.text-charcoal { color: var(--charcoal); }

/* --- Navigation --- */
.gxh-nav-link {
    font-size: 1rem;
    font-weight: 500;
    position: relative;
    padding-bottom: 0.5rem;
    transition: color 0.3s ease-in-out;
}
.gxh-nav-link.active, .gxh-nav-link:hover {
    color: var(--dark-green);
}
.gxh-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--dark-green);
    transition: width 0.3s ease-in-out;
}
.gxh-nav-link:hover::after, .gxh-nav-link.active::after {
    width: 100%;
}

.gxh-mobile-nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem; /* 12px */
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    color: #9ca3af; /* text-gray-400 */
    transition: color 0.2s ease-in-out;
    flex-grow: 1; /* Чтобы элементы равномерно занимали место */
}
.gxh-mobile-nav-link.active, .gxh-mobile-nav-link:hover {
    color: var(--dark-green);
}

.shadow-t-strong {
    box-shadow: 0 -4px 15px rgba(0,0,0,0.06);
}

/* --- Buttons --- */
.gxh-btn, .gxh-btn-light {
    display: inline-block;
    font-weight: 700;
    padding: 0.75rem 2rem; /* py-3 px-8 */
    border-radius: 9999px; /* rounded-full */
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid transparent;
}
.gxh-btn:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}
.gxh-btn {
    background-color: var(--dark-green);
    color: white;
}
.gxh-btn:hover {
     background-color: var(--olive);
}
.gxh-btn-light {
     background-color: var(--cream);
     color: var(--dark-green);
     border-color: #D1D5DB;
}
.gxh-btn-light:hover {
    background-color: white;
    border-color: var(--dark-green);
}


/* --- Hero Slider --- */
.hero-slider {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}
.hero-slider .slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: opacity 1.5s ease-in-out, transform 1.5s ease-in-out;
    opacity: 0;
    transform: scale(1.05);
}
.hero-slider .slide.active {
    opacity: 1;
    transform: scale(1);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
}
.hero-content {
    position: relative;
    z-index: 10;
}

/* --- Plant Card --- */
.plant-card {
    background-color: white;
    border-radius: 0.5rem; /* rounded-lg */
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); /* shadow-md */
    text-align: center;
    transition: all 0.3s ease-in-out;
}
.plant-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); /* shadow-xl */
}
.plant-card-img {
    width: 100%;
    height: 20rem; /* h-80 */
    object-fit: cover;
}

/* --- Form Styles (Clear Design) --- */
.gxh-label {
    display: block;
    font-size: 0.875rem; /* 14px */
    font-weight: 500;
    color: #4b5563; /* text-gray-600 */
    margin-bottom: 0.5rem; /* mb-2 */
}
.gxh-input {
    width: 100%;
    padding: 0.75rem 1rem; /* p-3 px-4 */
    background-color: #f9fafb; /* bg-gray-50 */
    border: 1px solid var(--border-color);
    border-radius: 0.5rem; /* rounded-lg */
    color: var(--charcoal);
    transition: border-color 0.2s ease-out, box-shadow 0.2s ease-out;
}
.gxh-input:focus {
    outline: none;
    border-color: var(--olive);
    box-shadow: 0 0 0 3px rgba(85, 107, 47, 0.15); /* ring-2-like effect */
}
textarea.gxh-input {
    resize: vertical;
    min-height: 120px;
}

/* --- Prose for legal pages --- */
.prose {
    line-height: 1.75;
}
.prose h3, .prose h2 {
    font-family: 'Playfair Display', serif;
    color: var(--dark-green);
    margin-top: 2rem;
    margin-bottom: 1rem;
}
