/* Legal Pages Styles */
/* KVKK Bilgilendirme and Gizlilik Sözleşmesi */

/* ===== COMMON LEGAL STYLES ===== */
.legal-hero-section {
    background: var(--kraft-gradient);
    color: var(--kraft-white);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.legal-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="legal-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23legal-grain)"/></svg>');
    opacity: 0.3;
}

.legal-hero-content {
    position: relative;
    z-index: 2;
}

.legal-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.legal-hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Legal Content Section */
.legal-content-section {
    padding: 80px 0;
    background: var(--kraft-white);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.7;
}

.legal-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
}

.legal-section:last-child {
    border-bottom: none;
}

.legal-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--kraft-black);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--kraft-green);
    display: inline-block;
}

.legal-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--kraft-black);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.legal-section p {
    color: var(--kraft-gray);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.legal-section ul,
.legal-section ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-section li {
    color: var(--kraft-gray);
    margin-bottom: 0.5rem;
}

.legal-section strong {
    color: var(--kraft-black);
    font-weight: 600;
}

/* ===== KVKK SPECIFIC STYLES ===== */

/* Data Categories */
.data-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.data-category {
    background: #f8fffe;
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(16, 185, 129, 0.1);
    transition: all 0.3s ease;
}

.data-category:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(13, 150, 104, 0.1);
}

.data-category h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--kraft-green);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.data-category h3::before {
    content: '';
    width: 4px;
    height: 20px;
    background: var(--kraft-gradient);
    margin-right: 0.75rem;
    border-radius: 2px;
}

.data-category ul {
    padding-left: 1.5rem;
    margin: 0;
}

.data-category li {
    margin-bottom: 0.5rem;
    position: relative;
}

.data-category li::marker {
    color: var(--kraft-green);
}

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

.purpose-item {
    background: var(--kraft-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 15px rgba(13, 150, 104, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.purpose-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(13, 150, 104, 0.15);
}

.purpose-icon {
    width: 60px;
    height: 60px;
    background: var(--kraft-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--kraft-white);
    font-size: 1.5rem;
}

.purpose-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--kraft-black);
    margin-bottom: 1rem;
}

.purpose-item p {
    font-size: 0.9rem;
    margin: 0;
}

/* Legal Reasons */
.legal-reasons {
    background: #f8fffe;
    padding: 2rem;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--kraft-green);
    margin: 2rem 0;
}

.legal-reasons li {
    margin-bottom: 1rem;
    padding-left: 1rem;
    position: relative;
}

.legal-reasons li::before {
    content: '✓';
    position: absolute;
    left: -1rem;
    color: var(--kraft-green);
    font-weight: bold;
}

/* Sharing Parties */
.sharing-parties {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.party-item {
    background: var(--kraft-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 15px rgba(13, 150, 104, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.1);
    transition: all 0.3s ease;
}

.party-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(13, 150, 104, 0.15);
}

.party-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--kraft-green);
    margin-bottom: 1rem;
}

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

/* Retention Periods */
.retention-periods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.retention-item {
    background: #f8fffe;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(16, 185, 129, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.retention-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(13, 150, 104, 0.1);
}

.retention-item h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--kraft-green);
    margin-bottom: 0.5rem;
}

.retention-item p {
    margin: 0;
    font-size: 0.9rem;
}

.retention-item strong {
    color: var(--kraft-green);
    font-size: 1.1rem;
}

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

.right-item {
    background: var(--kraft-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 15px rgba(13, 150, 104, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.right-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(13, 150, 104, 0.15);
}

.right-icon {
    width: 60px;
    height: 60px;
    background: var(--kraft-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--kraft-white);
    font-size: 1.5rem;
}

.right-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--kraft-black);
    margin-bottom: 1rem;
}

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

/* Contact Methods */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.contact-method {
    background: var(--kraft-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 15px rgba(13, 150, 104, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(13, 150, 104, 0.15);
}

.method-icon {
    width: 50px;
    height: 50px;
    background: var(--kraft-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--kraft-white);
    font-size: 1.25rem;
}

.contact-method h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--kraft-green);
    margin-bottom: 0.5rem;
}

.contact-method p {
    margin: 0;
    font-size: 0.9rem;
}

/* Application Process */
.application-process {
    background: #f8fffe;
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(16, 185, 129, 0.1);
    margin: 2rem 0;
}

.application-process h3 {
    color: var(--kraft-green);
    margin-bottom: 1rem;
}

.application-process ol {
    padding-left: 2rem;
}

.application-process li {
    margin-bottom: 0.75rem;
}

/* ===== GİZLİLİK SÖZLEŞMESİ SPECIFIC STYLES ===== */

/* Info Categories */
.info-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.info-category {
    background: #f8fffe;
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(16, 185, 129, 0.1);
    transition: all 0.3s ease;
}

.info-category:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(13, 150, 104, 0.1);
}

.info-category h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--kraft-green);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.info-category h3::before {
    content: '';
    width: 4px;
    height: 20px;
    background: var(--kraft-gradient);
    margin-right: 0.75rem;
    border-radius: 2px;
}

.info-category ul {
    padding-left: 1.5rem;
    margin: 0;
}

.info-category li {
    margin-bottom: 0.5rem;
}

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

.purpose-card {
    background: var(--kraft-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 15px rgba(13, 150, 104, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.purpose-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(13, 150, 104, 0.15);
}

.purpose-card .purpose-icon {
    width: 60px;
    height: 60px;
    background: var(--kraft-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--kraft-white);
    font-size: 1.5rem;
}

.purpose-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--kraft-black);
    margin-bottom: 1rem;
}

.purpose-card p {
    font-size: 0.9rem;
    margin: 0;
}

/* Cookie Types */
.cookie-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.cookie-type {
    background: var(--kraft-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 15px rgba(13, 150, 104, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.1);
    transition: all 0.3s ease;
}

.cookie-type:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(13, 150, 104, 0.15);
}

.cookie-type h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--kraft-green);
    margin-bottom: 1rem;
}

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

.cookie-type ul {
    padding-left: 1.5rem;
    margin: 0;
}

.cookie-type li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

/* Cookie Control */
.cookie-control {
    background: #f8fffe;
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(16, 185, 129, 0.1);
    margin: 2rem 0;
    text-align: center;
}

.cookie-control h3 {
    color: var(--kraft-green);
    margin-bottom: 1rem;
}

.cookie-control p {
    margin: 0;
    font-size: 0.95rem;
}

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

.security-item {
    background: var(--kraft-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 15px rgba(13, 150, 104, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.security-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(13, 150, 104, 0.15);
}

.security-icon {
    width: 50px;
    height: 50px;
    background: var(--kraft-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--kraft-white);
    font-size: 1.25rem;
}

.security-item h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--kraft-green);
    margin-bottom: 0.5rem;
}

.security-item p {
    margin: 0;
    font-size: 0.9rem;
}

/* Sharing Scenarios */
.sharing-scenarios {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.scenario-item {
    background: #f8fffe;
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(16, 185, 129, 0.1);
    transition: all 0.3s ease;
}

.scenario-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(13, 150, 104, 0.1);
}

.scenario-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--kraft-green);
    margin-bottom: 1rem;
}

.scenario-item p {
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.scenario-item ul {
    padding-left: 1.5rem;
    margin: 0;
}

.scenario-item li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

/* Retention Table */
.retention-table {
    background: var(--kraft-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(13, 150, 104, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.1);
    margin: 2rem 0;
}

.retention-row {
    display: grid;
    grid-template-columns: 1fr 150px 1fr;
    gap: 1rem;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
    align-items: center;
}

.retention-row:last-child {
    border-bottom: none;
}

.retention-row:nth-child(even) {
    background: #f8fffe;
}

.data-type {
    font-weight: 600;
    color: var(--kraft-black);
}

.retention-period {
    font-weight: 600;
    color: var(--kraft-green);
    text-align: center;
}

.reason {
    color: var(--kraft-gray);
    font-size: 0.9rem;
}

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

.rights-list .right-item {
    background: var(--kraft-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 15px rgba(13, 150, 104, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.rights-list .right-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(13, 150, 104, 0.15);
}

.rights-list .right-item h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--kraft-green);
    margin-bottom: 0.5rem;
}

.rights-list .right-item p {
    margin: 0;
    font-size: 0.9rem;
}

/* Contact Info */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.contact-item {
    background: var(--kraft-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 15px rgba(13, 150, 104, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(13, 150, 104, 0.15);
}

.contact-item h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--kraft-green);
    margin-bottom: 0.5rem;
}

.contact-item p {
    margin: 0;
    font-size: 0.9rem;
}

/* Response Time */
.response-time {
    background: #f8fffe;
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(16, 185, 129, 0.1);
    margin: 2rem 0;
    text-align: center;
}

.response-time h3 {
    color: var(--kraft-green);
    margin-bottom: 1rem;
}

.response-time p {
    margin: 0;
    font-size: 0.95rem;
}

.response-time strong {
    color: var(--kraft-green);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .data-categories,
    .purposes-grid,
    .sharing-parties,
    .rights-grid,
    .usage-purposes,
    .cookie-types,
    .sharing-scenarios,
    .rights-list {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .retention-periods,
    .security-measures,
    .contact-methods,
    .contact-info {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
    
    .retention-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        text-align: left;
    }
    
    .retention-period {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .legal-hero-title {
        font-size: 2.5rem;
    }
    
    .legal-hero-subtitle {
        font-size: 1.125rem;
    }
    
    .legal-content {
        padding: 0 1rem;
    }
    
    .legal-section h2 {
        font-size: 1.75rem;
    }
    
    .legal-section h3 {
        font-size: 1.25rem;
    }
    
    .data-categories,
    .purposes-grid,
    .sharing-parties,
    .rights-grid,
    .usage-purposes,
    .cookie-types,
    .sharing-scenarios,
    .rights-list,
    .info-categories {
        grid-template-columns: 1fr;
    }
    
    .retention-periods,
    .security-measures,
    .contact-methods,
    .contact-info {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .data-category,
    .purpose-item,
    .party-item,
    .right-item,
    .purpose-card,
    .cookie-type,
    .scenario-item,
    .security-item,
    .contact-method,
    .contact-item,
    .info-category {
        padding: 1.5rem;
    }
    
    .retention-item {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .legal-hero-section {
        padding: 80px 0 60px;
    }
    
    .legal-hero-title {
        font-size: 2rem;
    }
    
    .legal-content-section {
        padding: 60px 0;
    }
    
    .legal-content {
        padding: 0 0.5rem;
    }
    
    .legal-section {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }
    
    .legal-section h2 {
        font-size: 1.5rem;
    }
    
    .legal-section h3 {
        font-size: 1.125rem;
    }
    
    .retention-periods,
    .security-measures,
    .contact-methods,
    .contact-info {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .data-category,
    .purpose-item,
    .party-item,
    .right-item,
    .purpose-card,
    .cookie-type,
    .scenario-item,
    .security-item,
    .contact-method,
    .contact-item,
    .info-category {
        padding: 1rem;
    }
    
    .retention-item {
        padding: 0.75rem;
    }
    
    .legal-reasons,
    .application-process,
    .cookie-control,
    .response-time {
        padding: 1.5rem;
    }
    
    .retention-table {
        margin: 1rem 0;
    }
    
    .retention-row {
        padding: 1rem;
        gap: 0.25rem;
    }
}

