/* Lone Tree Acres - Custom Styles */
/* Extracted for easier maintenance - 2026 */

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

:root {
    --forest: #1a2f23;
    --leather: #a36b3f;
    --cream: #f7f2e9;
    --sage: #6b7f5e;
    --earth: #3f2a1d;
}

.font-display {
    font-family: 'Playfair Display', Georgia, serif;
}

.section-header {
    font-family: 'Playfair Display', Georgia, serif;
    letter-spacing: -0.025em;
}

.nav-link {
    position: relative;
    transition: color 0.2s ease;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #a36b3f;
    transition: width 0.3s ease;
}

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

.farm-card {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
               box-shadow 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.farm-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

.gallery-img {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), 
               box-shadow 0.3s ease;
    cursor: pointer;
}

.gallery-img:hover {
    transform: scale(1.04);
    box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.4);
}

.stat-number {
    font-variant-numeric: tabular-nums;
}

.horse-bg {
    background-image: linear-gradient(rgba(26, 47, 35, 0.45), rgba(26, 47, 35, 0.25)), url('../assets/images/hero-barn-mountains.jpg');
    background-size: cover;
    background-position: center 25%;
}

.warm-shadow {
    box-shadow: 0 10px 15px -3px rgb(63 42 29 / 0.15), 
               0 4px 6px -4px rgb(63 42 29 / 0.15);
}

.rustic-btn {
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.rustic-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 15px -3px rgb(163 107 63 / 0.3), 
               0 4px 6px -4px rgb(163 107 63 / 0.3);
}

.nav-scrolled {
    background-color: rgba(247, 242, 233, 0.95);
    backdrop-filter: blur(12px);
}

.modal {
    animation: fadeInScale 0.2s ease forwards;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.96);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.service-tier {
    transition: all 0.3s ease;
}

.service-tier.popular {
    border-color: #a36b3f;
    box-shadow: 0 0 0 3px rgba(163, 107, 63, 0.1);
}

.testimony {
    transition: all 0.3s ease;
}

.value-prop {
    transition: transform 0.2s ease;
}

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

.barn-divider {
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='20' viewBox='0 0 100 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 10 Q 25 0 50 10 Q 75 20 100 10' stroke='%23a36b3f' stroke-opacity='0.15' stroke-width='1.5'/%3E%3C/svg%3E");
    background-repeat: repeat-x;
    background-position: center;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 12px;
}

.light-box {
    background-color: rgba(26, 47, 35, 0.96);
}

.form-input {
    transition: all 0.2s ease;
}

.form-input:focus {
    outline: none;
    border-color: #a36b3f;
    box-shadow: 0 0 0 3px rgba(163, 107, 63, 0.1);
}

.mountain-accent {
    position: relative;
}

.mountain-accent:after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, transparent, #a36b3f, transparent);
    opacity: 0.2;
}