/* Modern CSS for EnSomme - Math Tutoring Website */

/* ===== 1. BRAND COLOR SYSTEM ===== */
:root {
    --primary: #1877F2;         /* Modern Facebook-style blue */
    --primary-dark: #003366;    /* Dark blue for headers/backgrounds */
    --accent: #FF5F5F;          /* Coral accent for CTAs and highlights */
    --neutral-dark: #4A4A4A;    /* Body text */
    --neutral-medium: #6E7C91;  /* Secondary text */
    --neutral-light: #E0E4EA;   /* Dividers, borders */
    --neutral-bg: #F7F9FB;      /* Light backgrounds */
    --success: #22C55E;         /* Success messages */
    --warning: #F59E0B;         /* Warning messages */
    --error: #EF4444;           /* Error messages */
    --white: #FFFFFF;
    --black: #111111;
    
    /* Typography Scale */
    --text-xs: 0.875rem;   /* 14px */
    --text-sm: 1rem;       /* 16px */
    --text-md: 1.125rem;   /* 18px */
    --text-lg: 1.25rem;    /* 20px */
    --text-xl: 1.5rem;     /* 24px */
    --text-2xl: 1.75rem;   /* 28px */
    --text-3xl: 2.25rem;   /* 36px */
    --text-4xl: 2.5rem;    /* 40px */
    
    /* Spacing System */
    --space-1: 0.25rem;    /* 4px */
    --space-2: 0.5rem;     /* 8px */
    --space-3: 0.75rem;    /* 12px */
    --space-4: 1rem;       /* 16px */
    --space-6: 1.5rem;     /* 24px */
    --space-8: 2rem;       /* 32px */
    --space-12: 3rem;      /* 48px */
    --space-16: 4rem;      /* 64px */
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 6px;
    --radius-lg: 8px;
    --radius-xl: 12px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.2s ease;
    --transition-slow: 0.3s ease;
}

/* ===== 2. TYPOGRAPHY ===== */
/*
@font-face {
  font-family: Poppins;
  font-weight: 400;
  src: url('../fonts/Poppins-Regular.ttf');
  src: url('../fonts/Poppins-Regular.eot') format('embedded-opentype'),
       url('../fonts/Poppins-Regular.woff2') format('woff2'),
       url('../fonts/Poppins-Regular.woff') format('woff'),
       url('../fonts/Poppins-Regular.ttf') format('truetype'),
       url('../fonts/Poppins-Regular.svg') format('svg');
  font-display: swap;
}

@font-face {
  font-family: Poppins;
  font-weight: 600;
  src: url('../fonts/Poppins-Regular.woff2') format('woff2');
  font-display: swap;
}

@font-face {
  font-family: Poppins;
  font-weight: 700;
  src: url('../fonts/Poppins-Regular.woff2') format('woff2');
  font-display: swap;
}
*/
/* Import Poppins and Inter for body text */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

body {
    font-family: 'Poppins', 'Tahoma', sans-serif;
    font-weight: 400;
    margin: 0;
    color: var(--neutral-dark);
    line-height: 1.6;
    font-size: var(--text-sm);
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    margin-top: 0;
    line-height: 1.2;
    color: var(--primary-dark);
}

h1 {
    color: white;
    font-size: var(--text-4xl);
    font-weight: 700;
    margin-bottom: var(--space-4);
}

h2 {
    font-size: var(--text-3xl);
    font-weight: 700;
    margin-bottom: var(--space-6);
}

h3 {
    font-size: var(--text-2xl);
    font-weight: 600;
    margin-bottom: var(--space-4);
}

h4 {
    font-size: var(--text-xl);
    font-weight: 600;
    margin-bottom: var(--space-3);
}

p {
    margin-bottom: var(--space-6);
}

small {
    font-size: var(--text-xs);
    color: var(--neutral-medium);
}

/* ===== 3. LAYOUT & CONTAINER ===== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-4);
}

section {
    padding: var(--space-12) var(--space-4);
    margin: 0 auto;
    max-width: 1200px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -1rem;
}

.col {
    flex: 1;
    padding: 0 1rem;
}

.card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: var(--space-6);
    margin-bottom: var(--space-6);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* ===== 4. HEADER & NAVIGATION ===== */
header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: var(--space-6) var(--space-4);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: padding var(--transition-normal);
    box-shadow: var(--shadow-md);
    text-align: center;
}

header.scrolled {
    padding: var(--space-3) var(--space-4);
}

header h1 {
    margin: 0;
    font-size: var(--text-3xl);
    transition: font-size var(--transition-normal);
}

header.scrolled h1 {
    font-size: var(--text-2xl);
}

header h3 {
    margin: var(--space-1) 0 0;
    font-weight: 400;
    font-size: var(--text-md);
    color: rgba(255, 255, 255, 0.9);
}

nav {
    background-color: var(--primary-dark);
    padding: 0;
    position: relative;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

nav ul li {
    margin: 0;
}

nav a {
    color: var(--white);
    text-decoration: none;
    padding: var(--space-4) var(--space-6);
    display: block;
    font-weight: 500;
    transition: all var(--transition-normal);
    position: relative;
}

nav a:hover {
    color: var(--white);
    background-color: rgba(255, 255, 255, 0.1);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background-color: var(--accent);
    transition: width var(--transition-normal);
}

nav a:hover::after {
    width: 60%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: var(--text-xl);
    cursor: pointer;
}

/* ===== 5. HERO SECTION ===== */
#intro {
    position: relative;
    text-align: center;
    padding: var(--space-16) var(--space-8);
    background: linear-gradient(135deg, #e6f7ff 0%, #ffffff 100%);
    overflow: hidden;
}

#intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://media1.thehungryjpeg.com/thumbs/800_4167541_tgvt1vvxarfji7gxgdczzfbdt1yp945y06wwwvjo.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0;
    z-index: 0;
}

#intro .hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

#intro h2 {
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: var(--space-6);
}

#intro p {
    font-size: var(--text-lg);
    margin-bottom: var(--space-8);
    color: var(--neutral-dark);
}

#intro .one {
    margin-bottom: var(--space-8);
    min-height: 60px;
}

.responsive {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    margin-bottom: var(--space-8);
}

.hero-image {
    margin-bottom: var(--space-8);
    height: 50px;
    background-size: contain !important;
    background-position: center !important;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

/* ===== 6. BUTTONS & LINKS ===== */
.cta-button {
    display: inline-block;
    justify-content: center;
    align-items: center;
    background-color: var(--accent);
    color: var(--white) !important;
    padding: var(--space-3) var(--space-6);
    text-decoration: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    border: none;
    cursor: pointer;
    text-align: center;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
    margin: var(--space-2);
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-md);
}

.cta-button:hover {
    background-color: #ff4545;
    transform: translateY(-2px) scale(1.03);
    box-shadow: var(--shadow-md);
}

.cta-button:active {
    transform: translateY(0) scale(0.98);
}

.cta-button.secondary {
    background-color: transparent;
    color: var(--accent) !important;
    border: 2px solid var(--accent);
}

.cta-button.secondary:hover {
    background-color: rgba(255, 95, 95, 0.1);
}

.pathChoice-btn {
    margin: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background-color: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-normal);
    font-weight: 500;
}

.pathChoice-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

/* ===== 7. FORMS ===== */
form {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--white);
    padding: var(--space-8);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

form label {
    display: block;
    margin-bottom: var(--space-2);
    font-weight: 600;
    color: var(--primary-dark);
}

form input,
form textarea,
form select {
    width: 100%;
    padding: var(--space-3);
    margin-bottom: var(--space-6);
    border: 1px solid var(--neutral-light);
    border-radius: var(--radius-md);
    font-size: var(--text-sm);
    transition: border var(--transition-normal), box-shadow var(--transition-normal);
}

form input:focus,
form textarea:focus,
form select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(24, 119, 242, 0.2);
}

form button {
    background-color: var(--accent);
    color: var(--white);
    padding: var(--space-3) var(--space-6);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    font-size: var(--text-md);
    font-weight: 600;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

form button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(60deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: rotate(30deg);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

form button:hover {
    background-color: #ff4545;
    transform: translateY(-2px);
}

form button:hover::after {
    opacity: 1;
    animation: shine 1.5s ease-out;
}

form button:active {
    transform: translateY(0) scale(0.98);
}

form button:disabled {
    background-color: var(--neutral-light);
    cursor: not-allowed;
    transform: none;
}

@keyframes shine {
    0% {
        left: -100%;
        opacity: 0;
    }
    20% {
        opacity: 0.5;
    }
    100% {
        left: 100%;
        opacity: 0;
    }
}

/* ===== 8. EXERCISE CONTAINER ===== */
#exercise-container {
    background-color: var(--white);
    padding: var(--space-8);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin: var(--space-8) auto;
    max-width: 800px;
    justify-content: center;
    align-items:center;
    text-align: center;
}

main {
    padding: var(--space-4) var(--space-8);
}

#question {
    font-size: var(--text-lg);
    margin-bottom: var(--space-6);
    background-color: var(--neutral-bg);
    padding: var(--space-4);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary);
}

.answer-btn {
    margin: var(--space-2);
    padding: var(--space-4) var(--space-6);
    background-color: var(--white);
    color: var(--primary-dark);
    border: 2px solid var(--neutral-light);
    border-radius: var(--radius-md);
    cursor: pointer;
    font-size: var(--text-md);
    transition: all var(--transition-normal);
    width: 80%;
}

.answer-btn:hover {
    border-color: var(--primary);
    background-color: rgba(24, 119, 242, 0.05);
}

/* Only style previously selected answers, not all correct answers */
.answer-btn.previously-selected {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}


#result {
    margin-top: var(--space-6);
    padding: var(--space-4);
    border-radius: var(--radius-md);
    text-align: center;
    font-weight: 600;
}

#result:not(:empty) {
    background-color: rgba(34, 197, 94, 0.1);
    color: var(--success);
    animation: fadeIn var(--transition-normal);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== 9. PROGRESS INDICATORS ===== */
.exam-progress {
    padding: var(--space-4);
    background: var(--neutral-bg);
    margin-bottom: var(--space-6);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: var(--neutral-light);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-3);
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--accent);
    border-radius: var(--radius-full);
    transition: width 0.5s ease;
}

.progress-text {
    text-align: center;
    margin-bottom: var(--space-3);
    font-weight: 600;
    color: var(--primary-dark);
}

.progress-navigation {
    display: flex;
    gap: var(--space-2);
    flex-wrap: wrap;
    justify-content: center;
}

.nav-button {
    width: 36px;
    height: 36px;
    border: 1px solid var(--neutral-light);
    border-radius: var(--radius-full);
    background: var(--white);
    cursor: pointer;
    font-size: var(--text-sm);
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-button.current {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: scale(1.1);
}

.nav-button.answered {
    background: var(--neutral-bg);
    border-color: var(--primary);
}

.nav-button:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: scale(1.1);
}

/* ===== 10. TESTIMONIALS ===== */


/* ===== 11. PROFILE & AUTH PAGES ===== */
.auth-container, .profile-container {
    max-width: 600px;
    margin: var(--space-12) auto;
    padding: var(--space-6);
    background-color: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.profile-tabs {
    display: flex;
    border-bottom: 1px solid var(--neutral-light);
    margin-bottom: var(--space-6);
}

.tab-button {
    padding: var(--space-3) var(--space-6);
    background: none;
    border: none;
    cursor: pointer;
    font-size: var(--text-md);
    font-weight: 600;
    color: var(--neutral-medium);
    transition: all var(--transition-normal);
    position: relative;
}

.tab-button.active {
    color: var(--primary);
}

.tab-button.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary);
    border-radius: var(--radius-full) var(--radius-full) 0 0;
}

.tab-content {
    display: none;
    padding: var(--space-4) 0;
}

.tab-content.active {
    display: block;
    animation: fadeIn var(--transition-normal);
}

.error-message, .success-message {
    padding: var(--space-4);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-6);
}

.error-message {
    background-color: rgba(239, 68, 68, 0.1);
    color: var(--error);
    border-left: 4px solid var(--error);
}

.success-message {
    background-color: rgba(34, 197, 94, 0.1);
    color: var(--success);
    border-left: 4px solid var(--success);
}

/* ===== 12. POPUP & MODALS ===== */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 1;
    transition: opacity var(--transition-normal);
}

.popup.hidden {
    opacity: 0;
    pointer-events: none;
}

.popup-content {
    background-color: var(--white);
    padding: var(--space-6);
    border-radius: var(--radius-lg);
    max-width: 90%;
    width: 400px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transform: translateY(0);
    transition: transform var(--transition-normal);
}

.popup.hidden .popup-content {
    transform: translateY(20px);
}

/* ===== 13. FOOTER ===== */
footer {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--white);
    text-align: center;
    padding: var(--space-8) 0;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--primary) 100%);
}

footer p {
    margin: 0;
    font-size: var(--text-sm);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-4);
}

.footer-logo {
    margin-bottom: var(--space-4);
}

.footer-logo img {
    height: 60px;
}

.footer-tagline {
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: var(--space-4);
}

.footer-links {
    display: flex;
    gap: var(--space-8);
    margin-bottom: var(--space-6);
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: color var(--transition-normal);
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-badges {
    display: flex;
    justify-content: center;
    gap: var(--space-4);
    margin-top: var(--space-6);
}

.footer-badge {
    padding: var(--space-2) var(--space-4);
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    font-size: var(--text-xs);
}

/* ===== 14. BIO & CONTACT PAGES ===== */
.bio-container {
    display: flex;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--space-6);
    gap: var(--space-8);
    background-color: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.profile-image {
    flex: 0 0 300px;
}

.profile-pic {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal);
}

.profile-pic:hover {
    transform: scale(1.02);
}

.bio-content {
    flex: 1;
}

.bio-content h2 {
    color: var(--primary-dark);
    margin-bottom: var(--space-4);
    position: relative;
}

.bio-content h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--accent);
    border-radius: var(--radius-full);
}

.bio-content p {
    margin-bottom: var(--space-4);
    font-size: var(--text-md);
}

/* Contact Form Styling */
.auth-container {
    max-width: 600px;
    margin: 50px auto;
    padding: var(--space-8);
    background-color: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.auth-container h2 {
    text-align: center;
    margin-bottom: var(--space-6);
    color: var(--primary);
    position: relative;
}

.auth-container h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    margin: var(--space-2) auto 0;
    border-radius: var(--radius-full);
}

.intro-text {
    text-align: center;
    margin-bottom: var(--space-6);
    color: var(--neutral-medium);
    font-size: var(--text-md);
}

.form-group label {
    font-weight: 600;
    color: var(--primary-dark);
}

#search-bar {
    text-align: center;
    margin-bottom: 20px;
}

#searchInput {
    width: 60%;
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

a.read-more {
    visibility: hidden;
}

#feedback {
    display :grid;
}

/* === RESPONSIVE DESIGN ADDITIONS === */
/* Base responsive container */
.responsive-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
    box-sizing: border-box;
}

/* Responsive text adjustments */
@media (max-width: 768px) {
    body {
        font-size: 16px;
        line-height: 1.4;
    }
    
    h1 {
        font-size: var(--text-2xl);
        margin-bottom: var(--space-2);
    }
    
    h3 {
        font-size: var(--text-lg);
        margin-bottom: var(--space-2);
    }
    
    p {
        margin-bottom: var(--space-4);
    }
    
    #exercise-container {
        padding: var(--space-4);
        margin: var(--space-4) auto;
    }

    .cta-button {
        padding: var(--space-2) var(--space-4);
        margin: var(--space-2) auto;
        display: block;
        width: 80%;
        max-width: 300px;
    }
    
    .answer-btn {
        width: 90%;
        max-width: 300px;
        margin: 8px auto;
        padding: 12px;
        display: block;
    }
}

/* Responsive table adjustments */
@media (max-width: 768px) {
    table {
        width: 100%;
        display: block;
        overflow-x: auto;
    }
    
    .data-table {
        width: 100%;
    }
}

/* Responsive SVG and Canvas element handling */
svg, canvas, .box-plot, #graph, #graph-container, .vector-canvas, 
#graphCanvas, .graph-container, #graph-svg, #triangle-container {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
    margin: 0 auto 20px auto !important;
    box-sizing: border-box !important;
}

@media (max-width: 768px) {
    svg, canvas {
        transform-origin: center;
        transform: scale(0.9);
    }
    
    #graph-container svg,
    .graph-box,
    .figure-container {
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .figure-container {
        display: block !important;
        gap: 10px !important;
        margin: 10px 0 !important;
    }
    
    .graph-box {
        margin-bottom: 15px !important;
    }
}

/* Specific adjustments for math content */
@media (max-width: 768px) {
    .MathJax {
        max-width: 100% !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
    }
    
    #triangle-svg,
    #triangle-container,
    #box-plot,
    #vector-canvas {
        width: 100% !important;
        height: auto !important;
    }
}

.fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  }
  
  .fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .guest-notice {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px;
    margin: 10px 0;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.guest-notice a {
    color: #ffffff;
    text-decoration: underline;
    font-weight: bold;
}

.guest-notice a:hover {
    color: #f0f0f0;
}

/* Style pour mentions compactes */
.privacy-notice-compact {
    background: #f0f9ff;
    border-left: 3px solid #0ea5e9;
    padding: 0.75rem;
    margin: 0.75rem 0;
    border-radius: 4px;
    font-size: 0.85rem;
    line-height: 1.4;
}

.privacy-notice-compact p {
    margin: 0;
    color: #374151;
}

.privacy-notice-compact a {
    color: #0ea5e9;
    text-decoration: underline;
    font-weight: 500;
}

.privacy-notice-compact a:hover {
    color: #0284c7;
}

/* Version ultra-compacte */
.privacy-notice-mini {
    background: #f9fafb;
    border: 1px solid #d1d5db;
    padding: 0.5rem;
    margin: 0.5rem 0;
    border-radius: 3px;
    font-size: 0.8rem;
    text-align: center;
}

.privacy-notice-mini p {
    margin: 0;
    color: #4b5563;
}

.privacy-notice-mini a {
    color: #1f2937;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .privacy-notice-compact {
        padding: 0.5rem;
        font-size: 0.8rem;
        margin: 0.5rem 0;
    }
    
    .privacy-notice-mini {
        font-size: 0.75rem;
    }
}