/*
Theme Name: Mularčík a Partneri
Theme URI: https://mularcikpartners.sk
Author: Erik Kokinda - DiverzityStudios.sk
Author URI: https://diverzitystudios.sk
Description: Profesionálna téma pre advokátsku kanceláriu Mularčík a Partneri
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mularcik
*/

/* ==========================================================================
   CSS Reset & Base - Matching Original Tailwind Config
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* Brand Colors from tailwind.config.js */
    --mp-0: #007DC2;
    --mp-l1: #5291cc;
    --mp-l2: #7aa6d7;
    --mp-l3: #9ebce1;
    --mp-l4: #bfd2eb;
    --mp-l5: #dfe8f5;
    --mp-d1: #15679f;
    --mp-d2: #1a527d;
    --mp-d3: #1b3e5c;
    --mp-d4: #172b3e;
    --mp-d5: #111922;

    /* Font sizes from tailwind.config.js */
    --text-sm: 0.9rem;
    --text-base: 1rem;
    --text-md: 1.15rem;
    --text-lg: 1.25rem;
    --text-xl: 1.5rem;
    --text-1-5xl: 1.75rem;
    --text-2xl: 2rem;
    --text-3xl: 3rem;
    --text-4xl: 4.5rem;
    --text-5xl: 6rem;
}

html {
    scroll-behavior: smooth;
    height: 100%;
    background-color: #fff;
}

/* Scroll offset for fixed header */
section[id] {
    scroll-margin-top: 100px;
}

body {
    font-family: 'Rubik', sans-serif;
    font-size: var(--text-base);
    line-height: 1.5;
    color: #000;
    height: 100%;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

/* ==========================================================================
   Typography - Matching Original
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease-in-out;
}

img {
    max-width: 100%;
    height: auto;
}

/* ==========================================================================
   Navigation - Matching Original header.blade.php
   ========================================================================== */
.site-header {
    position: fixed;
    width: 100%;
    z-index: 50;
}

.nav-container {
    padding: 0 0.5rem;
    background: #fff;
    margin-top: 1.25rem;
    margin-left: 1.25rem;
    margin-right: 1.25rem;
    border-radius: 1.5rem;
    filter: drop-shadow(0 10px 8px rgb(0 0 0 / 0.04)) drop-shadow(0 4px 3px rgb(0 0 0 / 0.1));
}

@media (min-width: 640px) {
    .nav-container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .nav-container {
        padding: 0 1rem;
    }
}

.nav-inner {
    position: relative;
    display: flex;
    height: 6rem;
    padding: 1rem 0;
    align-items: center;
    justify-content: space-between;
}

.logo-link {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center;
}

@media (min-width: 640px) {
    .logo-link {
        justify-content: flex-start;
    }
}

.logo-link img {
    flex: none;
    height: 5rem;
}

/* Custom logo from WordPress */
.logo-link .custom-logo {
    height: 5rem;
    width: auto;
}

/* Nav right container - for vertical centering */
.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Desktop Navigation */
.nav-menu {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 640px) {
    .nav-menu {
        display: flex;
    }
}

.nav-menu li a {
    color: #000;
    padding: 0.5rem 0.75rem;
    font-size: var(--text-base);
}

.nav-menu li a:hover {
    color: var(--mp-0);
}

.language-switcher {
    color: #9ca3af;
    padding: 0.5rem 0.75rem;
    font-size: var(--text-base);
}

.language-switcher a {
    color: #9ca3af;
}

.language-switcher a:hover,
.language-switcher a.active {
    color: var(--mp-0);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.375rem;
    padding: 0.5rem;
    color: #000;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s;
}

.mobile-menu-btn:hover {
    background: var(--mp-0);
    color: #fff;
}

.mobile-menu-btn:focus {
    outline: none;
    box-shadow: inset 0 0 0 2px #fff;
}

.mobile-menu-btn svg {
    height: 1.5rem;
    width: 1.5rem;
}

@media (min-width: 640px) {
    .mobile-menu-btn {
        display: none;
    }
}

/* Mobile Menu */
.mobile-menu {
    overflow: hidden;
    background: #fff;
    border-top: 1px solid #e5e7eb;
}

@media (min-width: 640px) {
    .mobile-menu {
        display: none !important;
    }
}

.mobile-menu ul {
    list-style: none;
    margin: 0;
    padding: 1rem;
}

.mobile-menu li a {
    display: block;
    color: #000;
    padding: 1rem;
    font-size: var(--text-lg);
    text-align: center;
    transition: color 0.2s, background-color 0.2s;
    border-radius: 0.5rem;
}

.mobile-menu li a:hover {
    color: var(--mp-0);
    background: var(--mp-l5);
}

.language-switcher-mobile {
    display: flex;
    gap: 0.5rem;
    padding: 1rem;
    margin-top: 0.5rem;
    border-top: 1px solid #e5e7eb;
    justify-content: center;
}

.language-switcher-mobile a {
    padding: 0.75rem 1.5rem !important;
    font-size: var(--text-base) !important;
    border-radius: 0.5rem;
    background: var(--mp-l5);
}

.language-switcher-mobile a.active {
    color: #fff;
    background: var(--mp-0);
    font-weight: 600;
}

.language-switcher-mobile span {
    display: none;
}

[x-cloak] {
    display: none !important;
}

main {
    width: 100%;
    max-width: 100%;
}

/* ==========================================================================
   Hero Section - Matching Original index.blade.php
   ========================================================================== */
.hero {
    width: 100%;
    height: 100vh;
    background-image: linear-gradient(to right bottom, rgba(0, 125, 194, 0.75), rgba(0, 43, 67, 0.75)), url('assets/images/justicak.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

@media (min-width: 1024px) {
    .hero {
        text-align: left;
    }
}

.hero-content {
    width: 100%;
    padding: 0 1.5rem;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .hero-content {
        width: 75%;
        padding: 0;
    }
}

.hero-subtitle {
    font-family: 'Rubik', sans-serif;
    color: #fff;
    font-size: var(--text-base);
}

@media (min-width: 1024px) {
    .hero-subtitle {
        font-size: var(--text-2xl);
        margin-bottom: -0.5rem;
    }
}

.hero-title {
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-size: var(--text-2xl);
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: var(--text-4xl);
    }
}

.hero-description {
    color: rgba(255, 255, 255, 0.75);
    font-weight: 400;
    margin-top: 0.5rem;
    font-size: var(--text-sm);
}

@media (min-width: 1024px) {
    .hero-description {
        width: 50%;
        font-size: var(--text-lg);
        color: #fff;
    }
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    border-radius: 0.75rem;
    background: #fff;
    padding: 1rem;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.hero-btn:hover {
    background: #fff;
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.hero-btn svg {
    height: 1.5rem;
    width: 1.5rem;
}

/* ==========================================================================
   Section Styles - Matching Original
   ========================================================================== */
.section-transition {
    width: 100%;
    height: 4rem;
    position: relative;
    top: -2rem;
    color: transparent;
    background: #fff;
    border-radius: 1.5rem;
}

section {
    scroll-margin-top: 5rem;
    width: 100%;
}

.section-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    margin: 0 0.5rem;
    margin-top: -2rem;
}

@media (min-width: 1024px) {
    .section-inner {
        align-items: flex-start;
        margin: 0 4rem;
        margin-top: -2rem;
    }
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin: 0 2rem 2rem;
}

@media (min-width: 1024px) {
    .section-title {
        font-size: var(--text-3xl);
    }
}

/* ==========================================================================
   About Section - Desktop Grid
   ========================================================================== */
.about-grid {
    display: none;
}

@media (min-width: 1024px) {
    .about-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        text-align: left;
        margin: 0 0.5rem;
        gap: 1rem;
    }
}

@media (min-width: 1024px) {
    .about-grid {
        margin: 0 4rem;
    }
}

.about-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
}

.about-card {
    flex-grow: 1;
    border-radius: 0.5rem;
    border: 2px solid #d1d5db;
    padding: 2rem;
    transition: all 0.3s ease;
}

.about-card:hover {
    border-color: var(--mp-0);
    box-shadow: 0 10px 40px rgba(0, 125, 194, 0.3);
    transform: translateY(-4px);
}

.about-card h2 {
    font-family: 'Rubik', sans-serif;
    font-weight: 500;
    font-size: var(--text-lg);
}

@media (min-width: 1024px) {
    .about-card h2 {
        font-size: var(--text-xl);
    }
}

.about-card p {
    font-size: var(--text-md);
}

@media (min-width: 1024px) {
    .about-card p {
        font-size: var(--text-lg);
    }
}

/* ==========================================================================
   About Section - Mobile Accordion
   ========================================================================== */
.accordion {
    width: 100%;
    max-width: 90vw;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

@media (min-width: 1024px) {
    .accordion {
        display: none;
    }
}

.accordion-item {
    border-radius: 0.75rem;
    overflow: hidden;
    width: 100%;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.accordion-item:has(.accordion-content:not([style*="display: none"])) {
    box-shadow: 0 4px 12px rgba(0, 125, 194, 0.15);
}

.accordion-header {
    width: 100%;
    text-align: left;
    padding: 1rem 1.25rem;
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: none;
    cursor: pointer;
    font-family: 'Rubik', sans-serif;
    font-size: var(--text-base);
    font-weight: 500;
    color: var(--mp-d3);
    transition: color 0.2s, background-color 0.2s;
}

.accordion-header:hover {
    background: var(--mp-l5);
    color: var(--mp-0);
}

.accordion-header span {
    flex: 1;
    padding-right: 1rem;
}

.accordion-header svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--mp-0);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.accordion-header svg.rotate-180 {
    transform: rotate(180deg);
}

.accordion-content {
    padding: 0 1.25rem 1.25rem;
    background: #fff;
    width: 100%;
}

.accordion-content p {
    font-size: var(--text-sm);
    line-height: 1.75;
    word-wrap: break-word;
    color: #4b5563;
}

/* ==========================================================================
   Divider - Matching Original divider.blade.php
   ========================================================================== */
.divider {
    margin: 5rem 0;
    height: 1px;
    border: none;
    background: transparent;
    background-image: linear-gradient(to right, transparent, rgba(23, 23, 23, 0.25), transparent);
}

/* ==========================================================================
   Advocates Section - Matching Original
   ========================================================================== */
.advocates-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    margin-top: -2rem;
    font-family: 'Playfair Display', serif;
}

@media (min-width: 1024px) {
    .advocates-section {
        margin-top: -2rem;
    }
}

.advocates-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
    width: 100%;
    padding: 0 1rem;
    box-sizing: border-box;
}

@media (min-width: 1200px) {
    .advocates-grid {
        justify-content: space-around;
        gap: 2rem;
        padding: 0 2rem;
    }
}

.advocate-card {
    flex: 0 0 auto;
    text-align: center;
    padding: 0 1rem;
    max-width: 100%;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .advocate-card {
        padding: 0;
    }
}

.advocate-card img {
    width: 100%;
    max-width: 20rem;
    height: auto;
    aspect-ratio: 3/4;
    margin-bottom: 1rem;
    border-radius: 0.75rem;
    object-fit: cover;
    border: 3px solid transparent;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

@media (min-width: 768px) {
    .advocate-card img {
        max-width: none;
        width: auto;
        height: 32rem;
    }
}

.advocate-card a:hover img {
    border-color: var(--mp-0);
    box-shadow: 0 10px 40px rgba(0, 125, 194, 0.3);
    transform: translateY(-4px);
}

.advocate-card a {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: var(--text-lg);
    color: #000;
    font-weight: 500;
    transition: color 0.2s;
}

@media (min-width: 1024px) {
    .advocate-card a {
        align-items: flex-start;
    }
}

@media (min-width: 640px) {
    .advocate-card a {
        font-size: var(--text-xl);
    }
}

@media (min-width: 768px) {
    .advocate-card a {
        font-size: var(--text-2xl);
    }
}

.advocate-card a:hover {
    color: var(--mp-0);
}

.advocate-card p {
    font-family: 'Rubik', sans-serif;
    font-size: var(--text-sm);
    line-height: 1.5;
    max-width: 100%;
    color: #4b5563;
    padding: 0 0.5rem;
}

@media (min-width: 768px) {
    .advocate-card p {
        font-size: var(--text-base);
        max-width: 24rem;
        padding: 0;
    }
}

@media (min-width: 1024px) {
    .advocate-card p {
        font-size: var(--text-lg);
    }
}

/* ==========================================================================
   Clients Section - Matching Original
   ========================================================================== */
.clients-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    margin: 0;
    width: 100%;
    margin-top: -2rem;
}

@media (min-width: 1024px) {
    .clients-section {
        align-items: flex-start;
        margin: 0 4rem;
        width: 50%;
    }
}

.clients-content {
    font-size: var(--text-base);
    line-height: 1.625;
    margin: 0 2rem;
}

.clients-content p {
    margin-bottom: 1rem;
}

@media (min-width: 1024px) {
    .clients-content {
        font-size: var(--text-lg);
        margin: 0 4rem;
    }
}

/* ==========================================================================
   Contact Section - Matching Original
   ========================================================================== */
.contact-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    margin-bottom: 4rem;
}

@media (min-width: 1024px) {
    .contact-section {
        align-items: flex-start;
        margin: 0 4rem;
        margin-bottom: 4rem;
    }
}

.contact-wrapper {
    margin: 0 1rem;
    width: calc(100% - 2rem);
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (min-width: 1024px) {
    .contact-wrapper {
        align-items: flex-start;
        flex-direction: row;
        margin: 0 4rem;
        width: calc(100% - 8rem);
    }
}

.contact-form {
    display: flex;
    flex-direction: column;
    padding: 0;
    width: 100%;
    box-sizing: border-box;
}

@media (min-width: 1024px) {
    .contact-form {
        padding: 0;
        width: 33.333%;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-family: 'Rubik', sans-serif;
    font-size: var(--text-sm);
    line-height: 1.75rem;
    color: #4b5563;
}

.form-group input,
.form-group textarea {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    border-radius: 0.25rem;
    border: 1px solid #d1d5db;
    padding: 0.25rem 0.75rem;
    font-size: var(--text-base);
    line-height: 2rem;
    color: #374151;
    outline: none;
    transition: all 0.2s ease-in-out;
    font-family: 'Rubik', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--mp-0);
    box-shadow: 0 0 0 2px var(--mp-l4);
}

.form-group textarea {
    height: 8rem;
    resize: none;
    line-height: 1.5rem;
}

/* GDPR Checkbox */
.gdpr-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: var(--text-sm);
    color: #4b5563;
}

.gdpr-checkbox input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
    accent-color: var(--mp-0);
}

.gdpr-checkbox a {
    color: var(--mp-0);
    text-decoration: underline;
}

.gdpr-checkbox a:hover {
    color: var(--mp-d1);
}

.submit-btn {
    background: var(--mp-l3);
    color: #000;
    font-family: 'Rubik', sans-serif;
    border-radius: 0.75rem;
    padding: 0.5rem 1.5rem;
    margin-top: 1rem;
    font-size: var(--text-lg);
    border: none;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s;
}

.submit-btn:hover {
    background: var(--mp-l1);
    color: #fff;
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (min-width: 1024px) {
    .contact-info {
        align-items: flex-start;
    }
}

.contact-info-item {
    display: flex;
    flex-direction: row;
    padding-top: 0.75rem;
    align-items: center;
    transition: color 0.2s;
}

a.contact-info-item:hover {
    color: var(--mp-0);
}

a.contact-info-item:hover svg {
    fill: var(--mp-d1);
}

.contact-info-item svg {
    margin-top: 0.5rem;
    width: 2rem;
    height: 2rem;
    fill: var(--mp-0);
    transition: fill 0.2s;
}

.contact-info-item p {
    font-family: 'Rubik', sans-serif;
    margin-left: 0.75rem;
    margin-top: 0.5rem;
    font-size: var(--text-md);
}

.map-container {
    position: relative;
    margin-left: 0;
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    background: #d4d4d4;
    padding: 1rem;
    width: calc(100% - 2rem);
    max-width: 85vw;
    aspect-ratio: 1;
}

@media (min-width: 1024px) {
    .map-container {
        margin-left: 5rem;
        margin-top: 0;
        align-items: flex-end;
        justify-content: flex-start;
        width: 50%;
        aspect-ratio: 16/9;
    }
}

.map-container iframe {
    position: absolute;
    inset: 0;
    opacity: 0.8;
    filter: grayscale(1);
    border: none;
    width: 100%;
    height: 100%;
}

/* ==========================================================================
   Footer - Matching Original footer.blade.php
   ========================================================================== */
.site-footer {
    background: #f5f5f5;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem 1.25rem;
}

@media (min-width: 1024px) {
    .footer-container {
        gap: 0;
    }
}

@media (min-width: 640px) {
    .footer-container {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo img {
    height: 4rem;
}

@media (min-width: 1024px) {
    .footer-logo img {
        height: 5rem;
    }
}

.footer-nav {
    display: flex;
    flex-direction: row;
}

.footer-nav-column {
    font-family: 'Rubik', sans-serif;
    display: flex;
    flex-direction: column;
    color: #4b5563;
}

.footer-nav-column a {
    line-height: 1.75;
}

.footer-nav-column a:hover {
    color: var(--mp-0);
}

.footer-info {
    font-family: 'Rubik', sans-serif;
    margin-top: 1rem;
    max-width: 24rem;
    font-size: var(--text-sm);
    color: #6b7280;
    text-align: center;
}

@media (min-width: 640px) {
    .footer-info {
        margin-top: 0;
        text-align: right;
    }
}

/* ==========================================================================
   Advocate Single Page - Matching Original advocate pages
   ========================================================================== */
.advocate-hero {
    background-size: cover;
    background-position: center;
    background-image: linear-gradient(to right bottom, rgba(0, 125, 194, 0.85), rgba(0, 43, 67, 0.85)), url('assets/images/justicak.jpg');
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 8rem 1rem 3rem;
}

@media (min-width: 1024px) {
    .advocate-hero {
        padding: 8rem 4rem 4rem;
        justify-content: center;
    }
}

.advocate-hero-inner {
    max-width: 1400px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .advocate-hero-inner {
        flex-direction: row;
        align-items: flex-start;
        gap: 4rem;
    }
}

.advocate-profile {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    font-family: 'Playfair Display', serif;
    flex-shrink: 0;
}

@media (min-width: 1024px) {
    .advocate-profile {
        text-align: left;
        align-items: flex-start;
        width: 280px;
    }
}

.advocate-profile img {
    width: 200px;
    height: auto;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

@media (min-width: 1024px) {
    .advocate-profile img {
        width: 280px;
    }
}

.advocate-profile h1 {
    font-size: var(--text-xl);
    color: #fff;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

@media (min-width: 1024px) {
    .advocate-profile h1 {
        font-size: var(--text-2xl);
    }
}

.advocate-profile .subtitle {
    font-family: 'Rubik', sans-serif;
    font-size: var(--text-sm);
    line-height: 1.5;
    max-width: 280px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
}

@media (min-width: 1024px) {
    .advocate-profile .subtitle {
        font-size: var(--text-base);
    }
}

.advocate-bio {
    text-align: left;
    width: 100%;
    color: #fff;
    font-size: var(--text-base);
    font-family: 'Rubik', sans-serif;
    line-height: 1.8;
}

@media (min-width: 1024px) {
    .advocate-bio {
        flex: 1;
        font-size: var(--text-md);
    }
}

.advocate-bio p {
    margin-bottom: 1rem;
}

.advocate-languages {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* ==========================================================================
   GDPR Page
   ========================================================================== */
.gdpr-page {
    padding: 6rem 2rem 4rem;
    max-width: 900px;
    margin: 0 auto;
}

.gdpr-page h1 {
    font-size: var(--text-3xl);
    margin-bottom: 2rem;
    color: var(--mp-0);
}

.gdpr-page h2 {
    font-size: var(--text-xl);
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--mp-d2);
}

.gdpr-page p {
    font-size: var(--text-base);
    line-height: 1.75;
    margin-bottom: 1rem;
    text-align: justify;
}

.gdpr-page ul, .gdpr-page ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.gdpr-page h3 {
    font-size: var(--text-lg);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--mp-d3);
}

.gdpr-page a {
    color: var(--mp-0);
}

.gdpr-page a:hover {
    color: var(--mp-d1);
    text-decoration: underline;
}

.gdpr-toc {
    background: var(--mp-l5);
    padding: 1.5rem 2rem;
    border-radius: 0.5rem;
    margin-bottom: 2rem;
}

.gdpr-toc ol {
    margin-bottom: 0;
    columns: 2;
}

@media (max-width: 640px) {
    .gdpr-toc ol {
        columns: 1;
    }
}

.gdpr-contact {
    background: var(--mp-l5);
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-top: 1rem;
}

.gdpr-page li {
    margin-bottom: 0.5rem;
    line-height: 1.75;
}

/* ==========================================================================
   Subtle Reveal Animations
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ==========================================================================
   WordPress Utilities
   ========================================================================== */
.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.alignleft {
    float: left;
    margin-right: 1.5rem;
}

.alignright {
    float: right;
    margin-left: 1.5rem;
}

#form-message {
    margin-top: 1rem;
}

#form-message.success {
    color: #059669;
}

#form-message.error {
    color: #dc2626;
}
