﻿/* ===================================================
   MARÈVA AT THE OASIS - Privacy & Terms Stylesheet
   Professional Legal Page Styling
   =================================================== */

/* ===== CSS VARIABLES (MATCHING PRIVACY.CSS) ===== */
:root {
    /* Primary Colors */
    --primary-gold: #C4975F;
    --primary-gold-light: #D4A76A;
    --gold-dark: #A67C4E;
    
    /* Dark Colors */
    --primary-dark: #0D0D0D;
    --secondary-dark: #1A1A1A;
    --tertiary-dark: #2A2A2A;
    
    /* Light Colors */
    --primary-white: #FFFFFF;
    --off-white: #FEFDFB;
    --cream: #F5F3EF;
    --cream-dark: #EBE8E2;
    
    /* Text Colors */
    --text-dark: #1A1A1A;
    --text-medium: #4A4A4A;
    --text-light: #666666;
    --text-lighter: #999999;
    
    /* Background Colors */
    --bg-light: #F8F7F5;
    
    /* Border & Shadow */
    --border-light: #E5E5E5;
    --border-gold: rgba(196, 151, 95, 0.3);
    
    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-elegant: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Transitions */
    --transition-fast: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--primary-white);
    overflow-x: hidden;
}

/* ===== CUSTOM CURSOR ===== */
.cursor-outer {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(196, 151, 95, 0.5);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99998;
    transition: transform 0.15s ease-out, opacity 0.3s, width 0.3s, height 0.3s, border-color 0.3s;
    transform: translate(-50%, -50%);
}

.cursor-inner {
    width: 8px;
    height: 8px;
    background: var(--primary-gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99998;
    transition: transform 0.08s ease-out, width 0.2s, height 0.2s;
    transform: translate(-50%, -50%);
}

.cursor-outer.hover {
    width: 60px;
    height: 60px;
    border-color: var(--primary-gold);
    background: rgba(196, 151, 95, 0.1);
}

.cursor-inner.hover {
    width: 4px;
    height: 4px;
}

/* ===== HEADER ===== */
.page-header {
    background: var(--primary-dark);
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--primary-white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-logo span {
    color: var(--primary-gold);
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.header-nav a {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: color 0.3s ease;
}

.header-nav a:hover {
    color: var(--primary-gold);
}

.header-btn {
    padding: 12px 28px;
    background: var(--primary-gold);
    color: var(--primary-white);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.header-btn:hover {
    background: var(--gold-dark);
}

/* ===== HERO SECTION ===== */
.policy-hero {
    position: relative;
    padding: 100px 20px 80px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, #2a2a2a 100%);
    text-align: center;
}

.policy-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?w=1920&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
}

.policy-hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.policy-hero-icon {
    width: 80px;
    height: 80px;
    background: rgba(196, 151, 95, 0.15);
    border: 2px solid rgba(196, 151, 95, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.policy-hero-icon i {
    font-size: 2rem;
    color: var(--primary-gold);
}

.policy-hero-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 400;
    color: var(--primary-white);
    margin-bottom: 20px;
}

.policy-hero-subtitle {
    font-family: var(--font-body);
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.policy-meta {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.policy-meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.policy-meta-item i {
    color: var(--primary-gold);
}

/* ===== CONTENT SECTION ===== */
.policy-content {
    padding: 80px 20px;
    background: var(--primary-white);
}

.policy-container {
    max-width: 900px;
    margin: 0 auto;
}

/* Important Notice Box */
.important-notice {
    background: linear-gradient(135deg, #fff8f0 0%, #fff5eb 100%);
    border: 2px solid var(--primary-gold);
    border-radius: 16px;
    padding: 35px 40px;
    margin-bottom: 60px;
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.important-notice-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.important-notice-icon i {
    font-size: 1.5rem;
    color: var(--primary-white);
}

.important-notice-content h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.important-notice-content p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

/* Table of Contents */
.policy-toc {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 35px 40px;
    margin-bottom: 60px;
    border: 1px solid var(--border-light);
}

.policy-toc-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.policy-toc-title i {
    color: var(--primary-gold);
}

.policy-toc-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.policy-toc-list li a {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-light);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.policy-toc-list li a:hover {
    background: var(--primary-white);
    color: var(--primary-gold);
}

.policy-toc-list li a i {
    font-size: 0.7rem;
    color: var(--primary-gold);
}

/* Policy Sections */
.policy-section {
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid var(--border-light);
}

.policy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.policy-section-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-gold);
    color: var(--primary-white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 50%;
    margin-bottom: 15px;
}

.policy-section-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
    line-height: 1.4;
}

.policy-section p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 18px;
}

.policy-section p:last-child {
    margin-bottom: 0;
}

.policy-section ul {
    list-style: none;
    margin: 20px 0;
}

.policy-section ul li {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.8;
    padding: 10px 0 10px 30px;
    position: relative;
    border-bottom: 1px solid var(--border-light);
}

.policy-section ul li:last-child {
    border-bottom: none;
}

.policy-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 18px;
    width: 8px;
    height: 8px;
    background: var(--primary-gold);
    border-radius: 50%;
}

.policy-highlight {
    background: var(--bg-light);
    border-left: 4px solid var(--primary-gold);
    padding: 25px 30px;
    border-radius: 0 12px 12px 0;
    margin: 25px 0;
}

.policy-highlight p {
    margin-bottom: 0;
    font-weight: 500;
    color: var(--primary-dark);
}

.policy-warning {
    background: #fff5f5;
    border-left: 4px solid #e74c3c;
    padding: 25px 30px;
    border-radius: 0 12px 12px 0;
    margin: 25px 0;
}

.policy-warning p {
    margin-bottom: 0;
    font-weight: 500;
    color: #c0392b;
}

/* Contact Box */
.policy-contact {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #2a2a2a 100%);
    border-radius: 16px;
    padding: 40px;
    margin-top: 60px;
    text-align: center;
}

.policy-contact h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--primary-white);
    margin-bottom: 15px;
}

.policy-contact p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
}

.policy-contact-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.policy-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--primary-white);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.policy-contact-item:hover {
    color: var(--primary-gold);
}

.policy-contact-item i {
    width: 45px;
    height: 45px;
    background: rgba(196, 151, 95, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
}

/* ===== FOOTER ===== */
.policy-footer {
    background: #111111;
    padding: 50px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--primary-white);
}

.footer-logo span {
    color: var(--primary-gold);
}

.footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-gold);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-copyright a {
    color: var(--primary-gold);
    text-decoration: none;
}

.footer-disclaimer {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    max-width: 500px;
    text-align: right;
    line-height: 1.6;
}

/* ===== RESPONSIVE ===== */
@media screen and (max-width: 992px) {
    .header-nav {
        display: none;
    }
    
    .policy-hero-title {
        font-size: 2.5rem;
    }
    
    .policy-toc-list {
        grid-template-columns: 1fr;
    }
    
    .policy-meta {
        flex-direction: column;
        gap: 15px;
    }
    
    .important-notice {
        flex-direction: column;
        text-align: center;
    }
    
    .important-notice-icon {
        margin: 0 auto;
    }
    
    /* Hide custom cursor on tablet/mobile */
    .cursor-outer,
    .cursor-inner {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .page-header {
        padding: 15px 20px;
    }
    
    .header-logo {
        font-size: 1.3rem;
    }
    
    .policy-hero {
        padding: 70px 20px 60px;
    }
    
    .policy-hero-title {
        font-size: 2rem;
    }
    
    .policy-hero-icon {
        width: 65px;
        height: 65px;
    }
    
    .policy-hero-icon i {
        font-size: 1.5rem;
    }
    
    .policy-content {
        padding: 50px 20px;
    }
    
    .policy-toc,
    .important-notice {
        padding: 25px;
    }
    
    .policy-section-title {
        font-size: 1.4rem;
    }
    
    .policy-contact {
        padding: 30px 20px;
    }
    
    .policy-contact-info {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-top, .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-disclaimer {
        text-align: center;
        max-width: 100%;
    }
}