/* Privacy Policy Page Styles */

/* Privacy Hero Section */
.privacy-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
                url('../assets/images/header.png');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
}

/* Privacy Section */
.privacy-section {
    background-color: var(--background-cream);
    padding: 5rem 0;
}

.privacy-section h2 {
    font-family: var(--heading-font, 'Lora', Georgia, serif);
    font-size: 3.5rem;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.privacy-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
}

/* Privacy Content Layout */
.privacy-content {
    max-width: 1000px;
    margin: 0 auto 4rem;
}

/* Privacy Items */
.privacy-item {
    margin-bottom: 3rem;
    padding: 2.5rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid var(--accent-color);
}

.privacy-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.privacy-item h3 {
    color: var(--text-color);
    font-family: var(--heading-font, 'Lora', Georgia, serif);
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.privacy-item h3 i {
    color: var(--accent-color);
    font-size: 1.4rem;
    width: 24px;
    text-align: center;
}

.privacy-item p {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.privacy-item ul {
    margin: 1rem 0;
    padding-left: 0;
    list-style: none;
}

.privacy-item ul li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.75rem;
    color: var(--text-color);
    line-height: 1.6;
}

.privacy-item ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.1rem;
}

.privacy-item strong {
    color: var(--text-color);
    font-weight: 600;
}

/* Contact Info Box */
.contact-info {
    background: var(--background-warm);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 1.5rem;
    border: 1px solid rgba(242, 159, 5, 0.2);
}

.contact-info p {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
}

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

.contact-info i {
    color: var(--accent-color);
    width: 24px;
    text-align: center;
    font-size: 1.1rem;
}

.contact-info a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--accent-color);
}

/* Privacy Actions */
.privacy-actions {
    text-align: center;
    margin-top: 4rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.privacy-actions .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--accent-color);
    color: var(--light-text);
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.privacy-actions .cta-button:hover {
    background-color: var(--text-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.privacy-actions .cta-button i {
    font-size: 1rem;
}

/* Links Styling */
.privacy-item a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .privacy-section {
        padding: 3rem 0;
    }
    
    .privacy-section h2 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .privacy-item {
        padding: 2rem 1.5rem;
        border-left-width: 3px;
    }
    
    .privacy-item h3 {
        font-size: 1.4rem;
        gap: 0.5rem;
    }
    
    .privacy-item h3 i {
        font-size: 1.2rem;
        width: 20px;
    }
    
    .contact-info {
        padding: 1.5rem;
    }
    
    .contact-info p {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .contact-info i {
        width: auto;
    }
    
    .privacy-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .privacy-actions .cta-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .privacy-section h2 {
        font-size: 2rem;
    }
    
    .privacy-item {
        padding: 1.5rem 1rem;
        margin-bottom: 2rem;
    }
    
    .privacy-item h3 {
        font-size: 1.2rem;
    }
    
    .privacy-item ul li {
        padding-left: 1.5rem;
    }
    
    .contact-info {
        padding: 1rem;
    }
} 