﻿:root {
    --flora-bg: #F7F3EE;
    --flora-card: #FFFFFF;
    --flora-primary: #8A9A5B;
    --flora-secondary: #C67C5A;
    --flora-text: #2E2A27;
    --flora-border: #DDD5CB;
    --flora-shadow: 0 12px 30px rgba(0,0,0,.08);
    --flora-radius: 18px;
}

body {
    font-family: 'Poppins',sans-serif;
    background: var(--flora-bg);
    color: var(--flora-text);
}

h1, h2, h3, h4, h5 {
    font-family: 'Cormorant Garamond',serif;
    font-weight: 700;
}

section {
    padding: 90px 0;
}

.btn-flora {
    background: var(--flora-primary);
    color: #fff;
    border-radius: 40px;
    padding: 14px 34px;
    transition: .35s;
    border: none;
}

    .btn-flora:hover {
        background: var(--flora-secondary);
        transform: translateY(-2px);
    }

.flora-card {
    border: none;
    border-radius: var(--flora-radius);
    background: white;
    box-shadow: var(--flora-shadow);
}

.navbar {
    background: white;
    box-shadow: 0 4px 18px rgba(0,0,0,.05);
}

.nav-link {
    font-weight: 500;
    color: #444;
    position: relative;
    margin: 0 12px;
}

    .nav-link::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -8px;
        width: 0;
        height: 2px;
        background: #8A9A5B;
        transition: .35s;
    }

    .nav-link:hover::after {
        width: 100%;
    }

.flora-section {
    background: #fff;
    border-radius: 24px;
    padding: 45px;
    margin-bottom: 70px;
    border: 1px solid #ebe5dd;
    box-shadow: 0 15px 40px rgba(0,0,0,.05);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 35px;
}

.section-subtitle {
    letter-spacing: 4px;
    color: #8A9A5B;
    font-weight: 600;
}

.section-title {
    font-size: 52px;
    margin-top: 5px;
    margin-bottom: 0;
}

.section-divider {
    border: none;
    height: 1px;
    background: #e7e2dc;
    margin-bottom: 40px;
}

.social-icons {
    display: flex;
    gap: 18px;
}

    .social-icons a {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #f6f6f6;
        color: #555;
        font-size: 22px;
        text-decoration: none;
        transition: .35s;
    }

        .social-icons a:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 20px rgba(0,0,0,.15);
        }

        .social-icons a:nth-child(1):hover {
            background: #1877F2;
            color: white;
        }

        .social-icons a:nth-child(2):hover {
            background: linear-gradient( 45deg, #f58529, #dd2a7b, #8134af, #515bd4);
            color: white;
        }

        .social-icons a:nth-child(3):hover {
            background: black;
            color: white;
        }

        .social-icons a:nth-child(4):hover {
            background: #FF0000;
            color: white;
        }