/* Privacy Policy Page - Sportzey Brand Styling */

/* Import base variables */
@import url('base.css');

/* Privacy Policy Hero Section */
.privacy-hero {
    background: linear-gradient(135deg, var(--sportzey-beige) 0%, var(--sportzey-beige-light) 100%);
    padding: 6rem 0 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.privacy-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(27, 54, 93, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(27, 54, 93, 0.03) 0%, transparent 50%);
    opacity: 0.6;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    color: var(--sportzey-black);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: none;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--sportzey-black);
    margin-bottom: 2rem;
    line-height: 1.6;
    opacity: 0.9;
}

.last-updated {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--sportzey-black);
    color: var(--sportzey-beige);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
}

.update-label {
    opacity: 0.8;
}

.update-date {
    font-weight: 700;
}

/* Privacy Policy Content */
.privacy-content {
    padding: 5rem 0;
    background: var(--white);
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.policy-sections {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.policy-section {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(27, 54, 93, 0.08);
    border: 1px solid var(--sportzey-beige-light);
    transition: all 0.3s ease;
}

.policy-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(27, 54, 93, 0.12);
}

.policy-section h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--sportzey-black);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 3px solid var(--sportzey-beige);
    padding-bottom: 1rem;
}

.policy-section h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--sportzey-black);
    margin: 2rem 0 1rem 0;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.policy-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--sportzey-black);
    margin-bottom: 1.5rem;
    text-align: justify;
}

.policy-section ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.policy-section li {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--sportzey-black);
    margin-bottom: 0.75rem;
    text-align: justify;
}

.policy-section strong {
    color: var(--sportzey-black);
    font-weight: 700;
}

/* Contact Information Styling */
.contact-info {
    background: var(--sportzey-beige-light);
    border-radius: 16px;
    padding: 2rem;
    margin-top: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--sportzey-beige);
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item strong {
    min-width: 120px;
    color: var(--sportzey-black);
}

.contact-item a {
    color: var(--sportzey-black);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--sportzey-black);
    text-decoration: underline;
}

/* Footer CTA Section */
.privacy-cta {
    background: var(--sportzey-black);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-width: 150px;
}

.btn-primary {
    background: var(--sportzey-beige);
    color: var(--sportzey-black);
    border-color: var(--sportzey-beige);
}

.btn-primary:hover {
    background: transparent;
    color: var(--sportzey-beige);
    transform: translateY(-3px);
}

.btn-secondary {
    background: transparent;
    color: var(--sportzey-beige);
    border-color: var(--sportzey-beige);
}

.btn-secondary:hover {
    background: var(--sportzey-beige);
    color: var(--sportzey-black);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .privacy-hero {
        padding: 4rem 0 3rem 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .privacy-content {
        padding: 3rem 0;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    .policy-section {
        padding: 2rem 1.5rem;
    }
    
    .policy-section h2 {
        font-size: 1.6rem;
    }
    
    .policy-section h3 {
        font-size: 1.2rem;
    }
    
    .policy-section p,
    .policy-section li {
        font-size: 1rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .privacy-hero {
        padding: 3rem 0 2rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .last-updated {
        flex-direction: column;
        gap: 0.25rem;
        padding: 1rem;
    }
    
    .privacy-content {
        padding: 2rem 0;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .policy-section {
        padding: 1.5rem 1rem;
    }
    
    .policy-section h2 {
        font-size: 1.4rem;
    }
    
    .policy-section h3 {
        font-size: 1.1rem;
    }
    
    .contact-info {
        padding: 1.5rem;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        padding: 1rem;
    }
    
    .contact-item strong {
        min-width: auto;
    }
    
    .cta-content h2 {
        font-size: 1.6rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
}

/* Print Styles */
@media print {
    .privacy-hero {
        background: white !important;
        color: black !important;
    }
    
    .policy-section {
        box-shadow: none !important;
        border: 1px solid #ccc !important;
        page-break-inside: avoid;
    }
    
    .privacy-cta {
        display: none !important;
    }
    
    .btn {
        display: none !important;
    }
}
