/* ===========================
   Privacy Policy - Vintage Styles
   =========================== */

/* Hero Section */
.privacy-hero-vintage {
    background: linear-gradient(135deg, var(--dark-cream) 0%, var(--cream-bg) 50%, rgba(212, 165, 116, 0.1) 100%);
    padding: 6rem 1rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.privacy-hero-vintage::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4A574' fill-opacity='0.05'%3E%3Cpath d='M50 30c11.046 0 20 8.954 20 20s-8.954 20-20 20-20-8.954-20-20 8.954-20 20-20zm0 10c-5.523 0-10 4.477-10 10s4.477 10 10 10 10-4.477 10-10-4.477-10-10-10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    animation: floatPattern 30s linear infinite;
}

@keyframes floatPattern {
    from { transform: translateX(0); }
    to { transform: translateX(100px); }
}

.vintage-header {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.last-update {
    color: var(--olive-green);
    font-style: italic;
    margin-top: 1rem;
    font-size: 1.1rem;
}

/* Table of Contents */
.toc-vintage {
    padding: 3rem 1rem;
    background: var(--cream-bg);
}

.toc-box-vintage {
    max-width: 600px;
    margin: 0 auto;
    background: var(--dark-cream);
    border: 3px double var(--vintage-ochre);
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.toc-box-vintage h2 {
    text-align: center;
    font-size: 1.8rem;
    color: var(--terracotta);
    margin-bottom: 2rem;
}

.toc-list-vintage {
    list-style: none;
    counter-reset: toc-counter;
}

.toc-list-vintage li {
    counter-increment: toc-counter;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 2rem;
}

.toc-list-vintage li::before {
    content: counter(toc-counter, upper-roman) ".";
    position: absolute;
    left: 0;
    color: var(--terracotta);
    font-weight: bold;
}

.toc-list-vintage a {
    color: var(--warm-indigo);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.toc-list-vintage a:hover {
    color: var(--terracotta);
    transform: translateX(5px);
}

/* Privacy Content */
.privacy-content-vintage {
    padding: 2rem 1rem 5rem;
    background: var(--cream-bg);
}

.content-wrapper-vintage {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-article {
    margin-bottom: 4rem;
    scroll-margin-top: 100px;
}

.privacy-article h2 {
    font-size: 2rem;
    color: var(--terracotta);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--vintage-ochre);
    position: relative;
}

.privacy-article h2::after {
    content: '❦';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--cream-bg);
    padding: 0 1rem;
    color: var(--vintage-ochre);
}

.article-content {
    background: var(--dark-cream);
    border: 1px solid var(--vintage-ochre);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.article-content p {
    color: var(--warm-indigo);
    line-height: 2;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.article-content h3 {
    color: var(--olive-green);
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
}

/* Drop Cap */
.drop-cap {
    float: left;
    font-size: 4rem;
    line-height: 0.8;
    margin: 0.1em 0.1em 0 0;
    color: var(--terracotta);
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

/* Vintage Highlight */
.vintage-highlight {
    background: rgba(212, 165, 116, 0.1);
    border-left: 4px solid var(--vintage-ochre);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 8px;
}

.vintage-highlight p {
    margin: 0;
    color: var(--dark-brown);
}

/* Data Categories */
.data-category {
    background: var(--cream-bg);
    border: 1px solid var(--vintage-ochre);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.data-category h3 {
    margin-top: 0;
}

.vintage-list {
    list-style: none;
    padding-left: 1.5rem;
}

.vintage-list li {
    position: relative;
    margin-bottom: 0.8rem;
    padding-left: 1rem;
}

.vintage-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--terracotta);
    font-weight: bold;
}

/* Vintage Note */
.vintage-note {
    background: rgba(112, 130, 56, 0.1);
    border: 1px solid var(--olive-green);
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.note-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.vintage-note p {
    margin: 0;
}

/* Usage Grid */
.usage-grid-vintage {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.usage-item {
    background: var(--cream-bg);
    border: 1px solid var(--vintage-ochre);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.usage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.usage-item h3 {
    margin: 0 0 0.5rem;
}

.usage-item p {
    margin: 0;
    font-size: 0.95rem;
}

/* Vintage Promise */
.vintage-promise {
    background: linear-gradient(135deg, rgba(198, 93, 0, 0.1) 0%, rgba(212, 165, 116, 0.1) 100%);
    border: 2px solid var(--terracotta);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2rem;
    text-align: center;
}

.vintage-promise p {
    margin: 0;
    font-size: 1.1rem;
    color: var(--dark-brown);
}

/* Sharing Cases */
.sharing-cases {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.sharing-case {
    background: var(--cream-bg);
    border-left: 3px solid var(--olive-green);
    padding: 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.sharing-case:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.sharing-case h3 {
    margin: 0 0 0.5rem;
}

.sharing-case p {
    margin: 0;
}

/* Security Measures */
.security-measures {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.measure-item {
    text-align: center;
}

.measure-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.measure-item h3 {
    margin: 0 0 0.5rem;
}

.measure-item p {
    margin: 0;
    font-size: 0.95rem;
}

/* Rights List */
.rights-list-vintage {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.right-item {
    background: var(--cream-bg);
    border: 1px solid var(--vintage-ochre);
    border-radius: 10px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.right-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.right-item h3 {
    margin: 0 0 0.5rem;
}

.right-item p {
    margin: 0;
    font-size: 0.95rem;
}

/* Rights CTA */
.rights-cta {
    text-align: center;
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(212, 165, 116, 0.1);
    border-radius: 12px;
}

.rights-cta p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.vintage-cta-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--terracotta);
    color: var(--cream-bg);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(198, 93, 0, 0.3);
}

.vintage-cta-btn:hover {
    background: var(--olive-green);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(112, 130, 56, 0.4);
}

/* Cookies Grid */
.cookies-grid-vintage {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.cookie-type-vintage {
    background: var(--cream-bg);
    border: 1px solid var(--vintage-ochre);
    border-radius: 10px;
    padding: 1.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.cookie-type-vintage:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.cookie-type-vintage h4 {
    color: var(--olive-green);
    margin: 0 0 0.5rem;
}

.cookie-type-vintage p {
    margin: 0 0 1rem;
    font-size: 0.95rem;
}

.cookie-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.cookie-badge.required {
    background: rgba(198, 93, 0, 0.2);
    color: var(--terracotta);
}

.cookie-badge.optional {
    background: rgba(112, 130, 56, 0.2);
    color: var(--olive-green);
}

/* Cookie Management */
.cookie-management {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(212, 165, 116, 0.05);
    border-radius: 10px;
}

/* Contact Privacy */
.contact-privacy-vintage {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.contact-card-vintage {
    background: var(--cream-bg);
    border: 1px solid var(--vintage-ochre);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card-vintage:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.contact-card-vintage h3 {
    margin: 0 0 1rem;
}

.contact-card-vintage p {
    margin: 0.5rem 0;
    line-height: 1.6;
}

.contact-card-vintage a {
    color: var(--terracotta);
    text-decoration: none;
}

.contact-card-vintage a:hover {
    text-decoration: underline;
}

/* Updates Section */
.privacy-updates {
    background: var(--dark-cream);
    border: 2px solid var(--vintage-ochre);
    border-radius: 15px;
    padding: 2.5rem;
    margin-top: 3rem;
}

.privacy-updates h2 {
    font-size: 1.8rem;
    color: var(--terracotta);
    margin-bottom: 1.5rem;
}

.privacy-updates p {
    color: var(--warm-indigo);
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Final Note */
.final-note-vintage {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px dashed var(--vintage-ochre);
}

.final-note-vintage p {
    margin: 0.5rem 0;
}

.signature {
    font-style: italic;
    color: var(--terracotta);
}

/* Media Queries */
@media (min-width: 768px) {
    .privacy-article {
        margin-bottom: 5rem;
    }
    
    .article-content {
        padding: 3rem;
    }
    
    .cookies-grid-vintage,
    .rights-list-vintage {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 900px) {
    .privacy-hero-vintage {
        padding: 8rem 2rem 5rem;
    }
    
    .security-measures {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Animations */
.vintage-header,
.toc-box-vintage,
.privacy-article {
    animation: fadeInUp 0.8s ease backwards;
}

.privacy-article:nth-child(2) {
    animation-delay: 0.1s;
}

.privacy-article:nth-child(3) {
    animation-delay: 0.2s;
}