/* ============================================
   GREEN ROOM GARDENS - PRIVACY POLICY
   Styles for privacy.php
============================================ */

/* ===========================================
   PAGE HEADER
=========================================== */

.grg-privacy-header {
    background: linear-gradient(135deg, var(--grg-dark-deep) 0%, #1a2e1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 116px;
    padding: 50px 24px;
}

.grg-privacy-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(6, 163, 75, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.grg-privacy-header::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(200, 174, 121, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.grg-privacy-header-inner {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.grg-privacy-header h1 {
    font-family: var(--grg-font);
    font-size: 3rem;
    font-weight: 700;
    color: var(--grg-white);
    margin-bottom: 16px;
}

.grg-privacy-header p {
    font-family: var(--grg-font);
    font-size: 1.15rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
}

/* ===========================================
   PRIVACY CONTENT
=========================================== */

.grg-privacy-content {
    background: var(--grg-white);
    padding: 90px 24px;
}

.grg-privacy-content-inner {
    max-width: 900px;
    margin: 0 auto;
}

.grg-privacy-intro {
    margin-bottom: 56px;
    padding: 32px 40px;
    background: linear-gradient(135deg, rgba(6, 163, 75, 0.06) 0%, rgba(6, 163, 75, 0.02) 100%);
    border-left: 4px solid var(--grg-green);
    border-radius: 0 12px 12px 0;
}

.grg-privacy-intro p {
    font-family: var(--grg-font);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--grg-dark);
    line-height: 1.8;
    margin: 0;
}

.grg-privacy-section {
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.grg-privacy-section:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.grg-privacy-section h2 {
    font-family: var(--grg-font);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--grg-dark);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--grg-green);
    display: inline-block;
}

.grg-privacy-section p {
    font-family: var(--grg-font);
    font-size: 1.05rem;
    font-weight: 300;
    color: #555;
    line-height: 1.85;
    margin-bottom: 18px;
}

.grg-privacy-section p:last-child {
    margin-bottom: 0;
}

.grg-privacy-section ul {
    list-style: none;
    padding: 0;
    margin: 24px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 24px;
}

.grg-privacy-section ul li {
    font-family: var(--grg-font);
    font-size: 1rem;
    font-weight: 400;
    color: var(--grg-dark);
    line-height: 1.6;
    padding: 12px 16px 12px 44px;
    position: relative;
    background: var(--grg-off-white);
    border-radius: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.grg-privacy-section ul li:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.grg-privacy-section ul li::before {
    content: '✓';
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--grg-green);
    font-weight: 600;
    font-size: 1rem;
}

.grg-privacy-section a {
    color: var(--grg-green);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
    border-bottom: 1px solid transparent;
}

.grg-privacy-section a:hover {
    color: var(--grg-gold);
    border-bottom-color: var(--grg-gold);
}

/* Contact card styling */
.grg-privacy-section p strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--grg-dark);
    margin-bottom: 8px;
}

.grg-privacy-updated {
    margin-top: 56px;
    padding-top: 32px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    text-align: center;
}

.grg-privacy-updated p {
    font-family: var(--grg-font);
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--grg-mid-grey);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--grg-off-white);
    padding: 10px 20px;
    border-radius: 50px;
}

.grg-privacy-updated p::before {
    content: '📅';
    font-size: 0.85rem;
}

/* ===========================================
   RESPONSIVE
=========================================== */

@media (max-width: 1024px) {
    .grg-privacy-header {
        margin-top: 109px;
        padding: 44px 24px;
    }

    .grg-privacy-content-inner {
        max-width: 800px;
    }
}

@media (max-width: 768px) {
    .grg-privacy-header {
        margin-top: 68px;
        padding: 40px 20px;
    }

    .grg-privacy-header h1 {
        font-size: 2.4rem;
    }

    .grg-privacy-header p {
        font-size: 1.05rem;
    }

    .grg-privacy-content {
        padding: 70px 20px;
    }

    .grg-privacy-intro {
        padding: 24px 28px;
        margin-bottom: 48px;
    }

    .grg-privacy-intro p {
        font-size: 1.1rem;
    }

    .grg-privacy-section {
        margin-bottom: 40px;
        padding-bottom: 40px;
    }

    .grg-privacy-section h2 {
        font-size: 1.35rem;
    }

    .grg-privacy-section p {
        font-size: 1rem;
    }

    .grg-privacy-section ul {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .grg-privacy-section ul li {
        padding: 14px 16px 14px 42px;
    }
}

@media (max-width: 480px) {
    .grg-privacy-header {
        margin-top: 62px;
        padding: 32px 16px;
    }

    .grg-privacy-header h1 {
        font-size: 2rem;
    }

    .grg-privacy-header p {
        font-size: 1rem;
    }

    .grg-privacy-content {
        padding: 56px 16px;
    }

    .grg-privacy-intro {
        padding: 20px 20px;
        margin-bottom: 40px;
    }

    .grg-privacy-intro p {
        font-size: 1rem;
    }

    .grg-privacy-section {
        margin-bottom: 32px;
        padding-bottom: 32px;
    }

    .grg-privacy-section h2 {
        font-size: 1.2rem;
    }

    .grg-privacy-section p {
        font-size: 0.95rem;
    }

    .grg-privacy-section ul li {
        font-size: 0.92rem;
        padding: 12px 14px 12px 38px;
    }

    .grg-privacy-section ul li::before {
        left: 14px;
        font-size: 0.9rem;
    }

    .grg-privacy-updated {
        margin-top: 40px;
        padding-top: 24px;
    }

    .grg-privacy-updated p {
        font-size: 0.85rem;
        padding: 8px 16px;
    }
}

/* ===========================================
   REDUCED MOTION
=========================================== */

@media (prefers-reduced-motion: reduce) {
    .grg-privacy-section ul li,
    .grg-privacy-section a {
        transition: none;
    }
}