/* 
   Simone Lugner Official Website Style Guide
   Luxurious, Modern Dark-Gold Theme
*/

/* --- Design Tokens --- */
:root {
    --bg-primary: #0A0A09;
    --bg-secondary: #121211;
    --bg-tertiary: #191918;
    
    --text-primary: #F7F5F0;
    --text-secondary: #A6A39C;
    --text-muted: #6B6964;
    
    --accent-gold: #C5A059;
    --accent-gold-hover: #E5C27F;
    --accent-gold-dark: #9C7A3C;
    
    --border-color: #262624;
    --border-glow: rgba(197, 160, 89, 0.15);
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    --max-width: 1200px;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Reset & Base Styles --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.25;
    color: #B5B2AB;
}

h3, h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.25;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

button {
    background: none;
    border: none;
    font: inherit;
    cursor: pointer;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --- Utility Classes --- */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.gold-text {
    color: var(--accent-gold);
    background: linear-gradient(135deg, var(--accent-gold-hover) 0%, var(--accent-gold) 50%, var(--accent-gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-padding {
    padding: 6rem 0;
}

.bg-darker {
    background-color: var(--bg-secondary);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent-gold);
    display: block;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.section-divider {
    width: 60px;
    height: 2px;
    background-color: var(--accent-gold);
    margin: 1.5rem auto 0 auto;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.95rem;
    text-align: center;
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--accent-gold);
    color: var(--bg-primary);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.35) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    transition: none;
    z-index: -1;
}

.btn-primary:hover::after {
    left: 150%;
    transition: all 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary:hover {
    background-color: var(--accent-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border-color: var(--border-color);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-gold);
    transform: translateY(-2px);
}

/* --- Header & Navigation --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(10, 10, 9, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-smooth);
    /* Entrance Animation */
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeInDown 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}

.header-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 1.2rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.logo-name {
    background: linear-gradient(to right, var(--text-primary), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu ul {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent-gold);
    transition: var(--transition-smooth);
}

.nav-link:hover::after {
    width: 100%;
}

/* Menu Toggle Button (Mobile) */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    z-index: 1001;
}

.menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition-smooth);
}

/* --- Hero Section --- */
.hero-section {
    padding-top: 10rem;
    padding-bottom: 6rem;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 10%;
    width: 300px;
    height: 300px;
    background-color: rgba(197, 160, 89, 0.03);
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
}

.hero-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 600px;
}

.hero-subtitle {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--accent-gold);
    display: block;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}

.hero-title {
    font-size: clamp(3rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.25s forwards;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    opacity: 0;
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.55s forwards;
}

/* Hero Portrait Frame */
.hero-visual {
    display: flex;
    justify-content: center;
}

.image-frame {
    position: relative;
    width: 100%;
    max-width: 380px;
    aspect-ratio: 4 / 5;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    opacity: 0;
    animation: fadeInUp 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.image-frame::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid var(--border-glow);
    border-radius: 6px;
    pointer-events: none;
}

.portrait-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--text-muted);
    text-align: center;
    padding: 2rem;
}

.placeholder-avatar {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
    opacity: 0.15;
}

.placeholder-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.placeholder-text small {
    color: var(--text-muted);
}

.portrait-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 80%;
    z-index: 2;
    transform: scale(1.15);
    animation: kenBurns 12s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

/* --- Über mich Section --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.about-text {
    max-width: 800px;
    margin: 0 auto;
}

.lead-text {
    font-size: 1.25rem;
    font-family: var(--font-heading);
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.about-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3.5rem;
}

.pillar-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: 6px;
    transition: var(--transition-smooth);
}

.pillar-card:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 15px rgba(197, 160, 89, 0.15);
    transform: translateY(-5px);
}

.pillar-icon {
    color: var(--accent-gold);
    margin-bottom: 1.2rem;
    display: inline-block;
}

.pillar-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
}

.pillar-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* --- Medien & Reality TV Section --- */
.media-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.media-card {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.media-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 15px rgba(197, 160, 89, 0.15);
}

.card-badge {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    background-color: rgba(197, 160, 89, 0.15);
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.2rem 0.8rem;
    border-radius: 30px;
    letter-spacing: 0.05em;
}

.card-icon-header {
    padding: 2.5rem 2rem 1rem 2rem;
}

.card-body {
    padding: 0 2rem 2.5rem 2rem;
    flex-grow: 1;
}

.media-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.card-subtitle {
    font-size: 0.85rem;
    color: var(--accent-gold);
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.card-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* --- Moderation Section --- */
.moderation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.moderation-item {
    display: flex;
    gap: 1.5rem;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 2.5rem 2rem;
    border-radius: 6px;
    transition: var(--transition-smooth);
}

.moderation-item:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 15px rgba(197, 160, 89, 0.15);
}

.mod-icon {
    flex-shrink: 0;
}

.mod-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.4rem;
}

.mod-meta {
    font-size: 0.85rem;
    color: var(--accent-gold);
    margin-bottom: 1.2rem;
    font-weight: 500;
}

.mod-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* --- Weiterbildung Section --- */
.education-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.edu-card {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: 6px;
    transition: var(--transition-smooth);
}

.edu-card:hover {
    border-color: var(--accent-gold);
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), 0 0 15px rgba(197, 160, 89, 0.1);
}

.edu-card h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--accent-gold);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.8rem;
}

.edu-card ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.edu-card li {
    font-size: 0.9rem;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1rem;
}

.edu-card li::before {
    content: '•';
    color: var(--accent-gold);
    position: absolute;
    left: 0;
    top: 0;
}

/* --- Kontakt Section --- */
.contact-box {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 4rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-box::before {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(197, 160, 89, 0.02);
    border-radius: 50%;
    filter: blur(50px);
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.location-text {
    font-size: 0.9rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 2rem;
}

.contact-descr {
    color: var(--text-secondary);
    max-width: 550px;
    margin: 0 auto 3rem auto;
    font-size: 1.05rem;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact-method-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background-color: rgba(10, 10, 9, 0.5);
}

.contact-method-item:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    background-color: rgba(197, 160, 89, 0.05);
}

.method-icon {
    display: flex;
    align-items: center;
}

.method-text {
    font-size: 0.95rem;
    font-weight: 500;
}

/* --- Footer --- */
.site-footer {
    background-color: var(--bg-primary);
    border-top: 1px solid var(--border-color);
    padding: 2.5rem 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.footer-link-btn {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-link-btn:hover {
    color: var(--accent-gold);
}

.footer-sep {
    color: var(--border-color);
}

/* --- Modals (Popups) --- */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    width: 90%;
    max-width: 700px;
    max-height: 80vh;
    border-radius: 8px;
    overflow-y: auto;
    z-index: 2001;
    padding: 3rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2rem;
    color: var(--text-secondary);
    line-height: 1;
}

.modal-close:hover {
    color: var(--accent-gold);
}

.modal-body {
    margin-top: 2rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

.modal-body h3 {
    font-size: 1.15rem;
    color: var(--text-primary);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.modal-body p {
    margin-bottom: 1rem;
}

/* --- Partners / Working with Section --- */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.partner-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 2.5rem 2rem;
    border-radius: 6px;
    text-align: center;
    transition: var(--transition-smooth);
}

.partner-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 15px rgba(197, 160, 89, 0.15);
}

.partner-logo-container {
    height: 160px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
}

.partner-logo {
    max-height: 40px;
    max-width: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.6;
    transition: var(--transition-smooth);
}

.partner-logo-large {
    max-height: 80px;
    max-width: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.6;
    transition: var(--transition-smooth);
}

.partner-logo-xl {
    max-height: 120px;
    max-width: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.6;
    transition: var(--transition-smooth);
}

.partner-logo-xxl {
    max-height: 160px;
    max-width: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.6;
    transition: var(--transition-smooth);
}

.partner-logo-round {
    max-height: 55px;
    max-width: 55px;
    object-fit: contain;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    opacity: 0.7;
    transition: var(--transition-smooth);
}

.partner-card:hover .partner-logo,
.partner-card:hover .partner-logo-round,
.partner-card:hover .partner-logo-large,
.partner-card:hover .partner-logo-xl,
.partner-card:hover .partner-logo-xxl {
    opacity: 1;
    transform: scale(1.05);
}

.partner-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.partner-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* --- Cookie Banner --- */
.cookie-banner {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    width: 90%;
    max-width: 650px;
    background-color: rgba(18, 18, 17, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    z-index: 9999;
    padding: 1.5rem 2rem;
    opacity: 0;
    pointer-events: none;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
}

.cookie-banner.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.cookie-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-content p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.cookie-link {
    color: var(--accent-gold);
    text-decoration: underline;
    font-weight: 500;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font-size: inherit;
    display: inline;
}

.cookie-link:hover {
    color: var(--accent-gold-hover);
}

.cookie-buttons {
    display: flex;
    gap: 0.8rem;
    flex-shrink: 0;
}

.btn-sm {
    padding: 0.5rem 1.2rem;
    font-size: 0.8rem;
}

@media (max-width: 680px) {
    .cookie-container {
        flex-direction: column;
        gap: 1.2rem;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

/* --- Responsive Media Queries --- */

@media (max-width: 1024px) {
    .media-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .education-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 4rem 0;
    }
    
    /* Mobile Navigation */
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--bg-secondary);
        border-left: 1px solid var(--border-color);
        padding: 6rem 2rem 2rem 2rem;
        transition: var(--transition-smooth);
        z-index: 1000;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .nav-link {
        font-size: 1.1rem;
    }
    
    /* Hamburger Animation to 'X' */
    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    /* Hero */
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        padding-top: 2rem;
    }
    
    .hero-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-cta {
        width: 100%;
        justify-content: center;
    }
    
    .hero-visual {
        order: -1; /* Image first on mobile */
    }
    
    .image-frame {
        max-width: 280px;
    }
    
    /* About */
    .about-pillars {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Moderation */
    .moderation-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Footer */
    .footer-container {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    /* Contact */
    .contact-box {
        padding: 2rem;
    }
    
    .contact-methods {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .contact-method-item {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
    
    /* Modals */
    .modal-content {
        padding: 2rem;
        max-height: 90vh;
    }
}

@media (max-width: 480px) {
    .media-cards {
        grid-template-columns: 1fr;
    }
    
    .education-grid {
        grid-template-columns: 1fr;
    }

    .partners-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
    }
}

/* --- Entrance Keyframes --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes kenBurns {
    from {
        transform: scale(1.15);
    }
    to {
        transform: scale(1);
    }
}
