/* sure-sand-913.css — JournalismusAkademie Stuttgart */

:root {
    --primary: #FF2800;
    --primary-dark: #eb2500;
    --secondary: #0dd6ea;
    --accent: #f5a623;
    --text: #333333;
    --bg: #ffffff;
    --dark-bg: #1a1a1a;
    --muted: #777777;
    --border: #e8e8e8;
    --radius: 6px;
    --shadow: 0 2px 12px rgba(0,0,0,0.1);
    --transition: 0.25s ease;
    --container: 1160px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: var(--text);
    background: var(--bg);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* === CONTAINER === */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

/* === SUPRA HEADER === */
.supra-header {
    background: #111;
    color: #ccc;
    font-size: 13px;
    padding: 8px 0;
}
.supra-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.supra-header .contacts-top {
    display: flex;
    gap: 20px;
    align-items: center;
}
.supra-header .contacts-top a {
    color: #ccc;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color var(--transition);
}
.supra-header .contacts-top a:hover { color: var(--primary); }
.supra-header .social-top {
    display: flex;
    gap: 12px;
    align-items: center;
}
.supra-header .social-top a {
    color: #aaa;
    font-size: 14px;
    transition: color var(--transition);
}
.supra-header .social-top a:hover { color: var(--secondary); }

/* === HEADER NAV === */
.site-header {
    background: var(--bg);
    border-bottom: 2px solid var(--primary);
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 68px;
}
.logo-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.logo-wrap svg { width: 44px; height: 44px; }
.logo-wrap .logo-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.2;
}
.logo-wrap .logo-text span { color: var(--primary); }

.main-nav ul {
    display: flex;
    gap: 32px;
    align-items: center;
}
.main-nav ul li a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
    padding: 6px 0;
    border-bottom: 2px solid transparent;
    transition: border-color var(--transition), color var(--transition);
}
.main-nav ul li a:hover,
.main-nav ul li a.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}
.nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--text);
    transition: var(--transition);
}

/* === HERO === */
.hero {
    position: relative;
    min-height: 580px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #111;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.45;
}
.hero .container { position: relative; z-index: 1; padding-top: 60px; padding-bottom: 60px; }
.hero-content { max-width: 640px; color: #fff; }
.hero-content h1 {
    font-size: clamp(28px, 5vw, 52px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
}
.hero-content h1 span { color: var(--primary); }
.hero-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 32px;
    color: #ddd;
}
.btn-primary {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: 14px 32px;
    border-radius: var(--radius);
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); }
.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #fff;
    padding: 13px 32px;
    border-radius: var(--radius);
    font-size: 16px;
    font-weight: 600;
    border: 2px solid rgba(255,255,255,0.6);
    cursor: pointer;
    transition: all var(--transition);
}
.btn-secondary:hover { border-color: #fff; background: rgba(255,255,255,0.1); }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

/* === SECTION GENERAL === */
.section { padding: 80px 0; }
.section-alt { background: #f8f8f8; }
.section-header { text-align: center; margin-bottom: 52px; }
.section-header h2 {
    font-size: clamp(24px, 4vw, 38px);
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--text);
}
.section-header h2 span { color: var(--primary); }
.section-header p {
    font-size: 17px;
    color: var(--muted);
    max-width: 600px;
    margin: 0 auto;
}
.sep {
    display: block;
    width: 48px;
    height: 3px;
    background: var(--primary);
    margin: 16px auto 0;
    border-radius: 2px;
}

/* === COURSE CARDS === */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}
.card {
    background: #fff;
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,0.14); }
.card-img { height: 200px; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.card:hover .card-img img { transform: scale(1.05); }
.card-body { padding: 24px; }
.card-tag {
    display: inline-block;
    background: var(--secondary);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 12px;
}
.card-tag.accent { background: var(--accent); }
.card-body h3 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text);
}
.card-body p { font-size: 15px; color: var(--muted); margin-bottom: 16px; line-height: 1.6; }
.card-price {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}
.card-price span { font-size: 14px; font-weight: 400; color: var(--muted); }

/* === STATS === */
.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
    text-align: center;
}
.stat-item { padding: 24px 16px; }
.stat-num {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    display: block;
}
.stat-label { font-size: 15px; color: var(--muted); margin-top: 6px; }

/* === WHY US / FEATURES GRID === */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
}
.feature-item {
    text-align: center;
    padding: 32px 20px;
    border-radius: 10px;
    background: #fff;
    box-shadow: var(--shadow);
}
.feature-item .icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), #ff6b4a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    color: #fff;
    font-size: 22px;
}
.feature-item h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.feature-item p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* === TESTIMONIALS === */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.testimonial {
    background: #fff;
    border-radius: 10px;
    padding: 28px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary);
}
.testimonial blockquote {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text);
    font-style: italic;
    margin-bottom: 16px;
}
.testimonial .author { font-size: 14px; font-weight: 600; color: var(--primary); }
.testimonial .author span { font-weight: 400; color: var(--muted); }

/* === CTA BANNER === */
.cta-banner {
    background: linear-gradient(135deg, var(--primary) 0%, #cc2000 100%);
    color: #fff;
    text-align: center;
    padding: 60px 20px;
}
.cta-banner h2 { font-size: clamp(22px, 4vw, 36px); font-weight: 800; margin-bottom: 14px; }
.cta-banner p { font-size: 17px; margin-bottom: 28px; opacity: 0.9; }
.btn-white {
    display: inline-block;
    background: #fff;
    color: var(--primary);
    padding: 14px 36px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 16px;
    transition: background var(--transition), transform var(--transition);
}
.btn-white:hover { background: #f0f0f0; transform: translateY(-1px); }

/* === FAQ === */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    color: var(--text);
    padding: 4px 0;
}
.faq-q i { color: var(--primary); transition: transform var(--transition); font-size: 14px; }
.faq-item.open .faq-q i { transform: rotate(180deg); }
.faq-a {
    display: none;
    font-size: 15px;
    color: var(--muted);
    line-height: 1.7;
    padding-top: 12px;
}
.faq-item.open .faq-a { display: block; }

/* === CONTACT FORM === */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 12px 16px;
    font-size: 15px;
    font-family: inherit;
    color: var(--text);
    background: #fff;
    margin-bottom: 16px;
    transition: border-color var(--transition);
    outline: none;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--primary); }
.contact-form textarea { min-height: 130px; resize: vertical; }
.contact-form .gdpr-note {
    font-size: 12px;
    color: var(--muted);
    margin-top: 10px;
    line-height: 1.5;
}

/* === MAP / CONTACT INFO === */
.contact-info { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; margin-bottom: 48px; }
.contact-info-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-info-item .icon {
    width: 44px;
    height: 44px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    flex-shrink: 0;
}
.contact-info-item h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.contact-info-item p, .contact-info-item a { font-size: 14px; color: var(--muted); }
.contact-info-item a:hover { color: var(--primary); }

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 360px;
    background: #eee;
}
.map-container iframe { width: 100%; height: 100%; border: none; }

/* === FOOTER === */
footer {
    background: var(--dark-bg);
    color: #bbb;
    padding: 60px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #333;
}
.footer-brand .logo-text { color: #fff; font-size: 20px; font-weight: 700; margin-bottom: 12px; display: block; }
.footer-brand .logo-text span { color: var(--primary); }
.footer-brand p { font-size: 14px; line-height: 1.7; margin-bottom: 18px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 36px;
    height: 36px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    font-size: 14px;
    transition: background var(--transition), color var(--transition);
}
.footer-social a:hover { background: var(--primary); color: #fff; }
footer h4 { color: #fff; font-size: 15px; font-weight: 700; margin-bottom: 16px; }
footer ul li { margin-bottom: 10px; }
footer ul li a { font-size: 14px; color: #aaa; transition: color var(--transition); }
footer ul li a:hover { color: var(--primary); }
.footer-contact li { font-size: 14px; display: flex; align-items: flex-start; gap: 8px; margin-bottom: 10px; }
.footer-contact li i { color: var(--primary); margin-top: 3px; }
.footer-bottom {
    padding: 18px 0;
    text-align: center;
    font-size: 13px;
    color: #666;
}
.footer-bottom a { color: #888; }
.footer-bottom a:hover { color: var(--primary); }

/* === INNER PAGE HERO === */
.page-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
    padding: 60px 0;
    text-align: center;
}
.page-hero h1 { font-size: clamp(26px, 4vw, 42px); font-weight: 800; margin-bottom: 12px; }
.page-hero p { font-size: 16px; color: #bbb; max-width: 520px; margin: 0 auto; }
.breadcrumb { display: flex; justify-content: center; gap: 8px; font-size: 13px; color: #888; margin-top: 14px; }
.breadcrumb a { color: #aaa; } .breadcrumb a:hover { color: var(--primary); }

/* === INLINE CONTENT PAGES === */
.content-page { padding: 60px 0; }
.content-page h2 { font-size: 22px; font-weight: 700; margin: 32px 0 12px; color: var(--text); }
.content-page h2:first-child { margin-top: 0; }
.content-page p { font-size: 15px; color: #555; line-height: 1.8; margin-bottom: 14px; }
.content-page ul { margin: 0 0 16px 20px; list-style: disc; }
.content-page ul li { font-size: 15px; color: #555; line-height: 1.8; margin-bottom: 6px; }

/* === COOKIE ALERT === */
#cookie-alert {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #111;
    color: #ddd;
    padding: 18px 24px;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    box-shadow: 0 -2px 16px rgba(0,0,0,0.3);
    font-size: 14px;
    line-height: 1.5;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}
#cookie-alert.visible { transform: translateY(0); }
#cookie-alert a { color: var(--secondary); text-decoration: underline; }
#cookie-btn-accept {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 10px 24px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background var(--transition);
}
#cookie-btn-accept:hover { background: var(--primary-dark); }

/* === ABOUT PAGE TWO-COL === */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.two-col img { border-radius: 10px; box-shadow: var(--shadow); width: 100%; object-fit: cover; }

/* === TEAM GRID === */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 28px; }
.team-card { text-align: center; }
.team-card img { border-radius: 50%; width: 110px; height: 110px; object-fit: cover; margin: 0 auto 14px; }
.team-card h4 { font-size: 16px; font-weight: 700; }
.team-card p { font-size: 13px; color: var(--muted); }

/* === SEND PHP SUCCESS === */
.success-box {
    background: #e8f9f0;
    border: 1px solid #4caf50;
    border-radius: var(--radius);
    padding: 32px;
    text-align: center;
    max-width: 500px;
    margin: 40px auto;
}
.success-box i { font-size: 36px; color: #4caf50; margin-bottom: 12px; display: block; }
.success-box h2 { font-size: 22px; margin-bottom: 8px; }
.success-box p { color: var(--muted); }

/* === RESPONSIVE === */
@media (max-width: 900px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .two-col { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
    .nav-toggle { display: flex; }
    .main-nav { display: none; position: absolute; top: 70px; left: 0; right: 0; background: #fff; border-top: 1px solid var(--border); padding: 16px 20px; box-shadow: 0 4px 16px rgba(0,0,0,0.1); }
    .main-nav.open { display: block; }
    .main-nav ul { flex-direction: column; gap: 0; }
    .main-nav ul li a { display: block; padding: 12px 0; border-bottom: 1px solid var(--border); }
    .main-nav ul li:last-child a { border-bottom: none; }
    .supra-header .contacts-top { flex-direction: column; gap: 4px; }
    .footer-grid { grid-template-columns: 1fr; }
    .stats-row { grid-template-columns: 1fr 1fr; }
    .hero { min-height: 480px; }
}
