/* ==========================================================================
   DISGUDISTE - ONLINE PHOTOGRAPHY SCHOOL
   Editorial Story Archetype Design
   ========================================================================== */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #1a1a1a;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
}

h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
}

h4 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
}

p {
    margin-bottom: 1.25rem;
    font-size: 1.125rem;
}

a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: #1e40af;
    text-decoration: underline;
}

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

ul {
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
}

/* Navigation */
.main-nav {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.brand:hover {
    color: #2563eb;
    text-decoration: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: #1a1a1a;
    margin: 3px 0;
    transition: 0.3s;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.95rem;
    color: #374151;
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 500;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #2563eb;
    text-decoration: none;
}

/* Editorial Content - Main Container */
.editorial-content {
    max-width: 100%;
    margin: 0 auto;
}

/* Content Narrow - Article-like Container */
.content-narrow {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Article Header */
.article-header {
    margin-bottom: 3rem;
    padding-top: 3rem;
}

.header-image {
    margin-bottom: 2rem;
}

.header-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.header-text h1 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.intro-large {
    font-size: 1.5rem;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 2rem;
}

/* Story Sections */
.story-section {
    padding: 3rem 0;
}

.story-section.bg-light {
    background-color: #f9fafb;
    padding: 3rem 0;
    margin: 3rem 0;
}

/* Drop Cap */
.dropcap::first-letter {
    font-size: 4rem;
    line-height: 1;
    float: left;
    margin-right: 0.5rem;
    margin-top: 0.1rem;
    font-weight: 700;
    color: #2563eb;
}

/* Inline Quote */
.inline-quote {
    font-size: 1.5rem;
    line-height: 1.5;
    font-style: italic;
    color: #1a1a1a;
    border-left: 4px solid #2563eb;
    padding-left: 1.5rem;
    margin: 2.5rem 0;
}

/* Inline Images */
.image-inline {
    margin: 2.5rem 0;
}

.image-inline img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Feature Grid */
.feature-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.feature-item h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    margin-top: 0;
}

.feature-item p {
    font-size: 1.05rem;
    color: #4b5563;
}

/* Testimonial Cards */
.testimonial-section {
    padding: 3rem 0;
}

.testimonial-card {
    background: #ffffff;
    border-left: 4px solid #2563eb;
    padding: 2rem;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.testimonial-text {
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    color: #1a1a1a;
}

.testimonial-author span {
    font-size: 0.9rem;
    color: #6b7280;
    margin-top: 0.25rem;
}

/* Course List */
.course-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 2.5rem;
}

.course-item {
    background: #ffffff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.course-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.course-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.course-content {
    padding: 2rem;
}

.course-content h3 {
    font-size: 1.75rem;
    margin-top: 0;
    margin-bottom: 0.75rem;
}

.course-duration {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.course-highlights {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.course-highlights li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.course-highlights li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

.course-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.course-price {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #2563eb;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-select-course,
.btn-submit,
.btn-primary-large,
.btn-light,
.btn-sticky,
.btn-accept,
.btn-reject {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.75rem 1.75rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-block;
    text-decoration: none;
    text-align: center;
}

.btn-primary {
    background: #2563eb;
    color: #ffffff;
}

.btn-primary:hover {
    background: #1e40af;
    text-decoration: none;
}

.btn-secondary {
    background: #f3f4f6;
    color: #1a1a1a;
}

.btn-secondary:hover {
    background: #e5e7eb;
    text-decoration: none;
}

.btn-select-course,
.btn-submit {
    background: #2563eb;
    color: #ffffff;
}

.btn-select-course:hover,
.btn-submit:hover {
    background: #1e40af;
}

.btn-primary-large {
    background: #2563eb;
    color: #ffffff;
    font-size: 1.125rem;
    padding: 1rem 2.5rem;
}

.btn-primary-large:hover {
    background: #1e40af;
    text-decoration: none;
}

.btn-light {
    background: #ffffff;
    color: #1a1a1a;
}

.btn-light:hover {
    background: #f3f4f6;
    text-decoration: none;
}

.btn-sticky {
    background: #ffffff;
    color: #2563eb;
    padding: 0.625rem 1.5rem;
}

.btn-sticky:hover {
    background: #f3f4f6;
    text-decoration: none;
}

.btn-accept {
    background: #10b981;
    color: #ffffff;
    padding: 0.625rem 1.25rem;
    font-size: 0.9rem;
}

.btn-accept:hover {
    background: #059669;
}

.btn-reject {
    background: #6b7280;
    color: #ffffff;
    padding: 0.625rem 1.25rem;
    font-size: 0.9rem;
}

.btn-reject:hover {
    background: #4b5563;
}

/* CTA Blocks */
.inline-cta-block {
    padding: 3rem 0;
}

.inline-cta-block.cta-urgent {
    background: #1e293b;
    margin: 3rem 0;
    padding: 3rem 0;
}

.cta-card {
    background: #f0f9ff;
    border: 2px solid #2563eb;
    border-radius: 8px;
    padding: 2.5rem;
    text-align: center;
}

.cta-card h3 {
    font-size: 1.75rem;
    margin-top: 0;
    margin-bottom: 1rem;
}

.cta-card p {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.cta-card-dark {
    background: #1e293b;
    border-radius: 8px;
    padding: 2.5rem;
    text-align: center;
}

.cta-card-dark h3 {
    color: #ffffff;
    font-size: 1.75rem;
    margin-top: 0;
    margin-bottom: 1rem;
}

.cta-card-dark p {
    color: #cbd5e1;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

/* Process Steps */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.process-step {
    display: flex;
    flex-direction: column;
}

.step-number {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #e5e7eb;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.process-step h4 {
    font-size: 1.25rem;
    margin-top: 0;
    margin-bottom: 0.75rem;
}

.process-step p {
    font-size: 1.05rem;
    color: #4b5563;
}

/* Forms */
.enrollment-form {
    background: #f9fafb;
    padding: 2.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.form-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
    flex: 1;
}

.form-group label {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    background: #ffffff;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    font-weight: 400;
    font-size: 0.9rem;
}

.checkbox-group input[type="checkbox"] {
    margin-right: 0.5rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.checkbox-group span {
    line-height: 1.5;
}

/* FAQ */
.faq-list {
    margin-top: 2rem;
}

.faq-item {
    margin-bottom: 2rem;
}

.faq-item h4 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    margin-top: 0;
}

.faq-item p {
    font-size: 1.05rem;
    color: #4b5563;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    color: #ffffff;
    padding: 4rem 0;
    text-align: center;
    margin: 3rem 0 0 0;
}

.final-cta h2 {
    color: #ffffff;
    font-size: 2.25rem;
    margin-top: 0;
}

.final-cta p {
    color: #cbd5e1;
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1e293b;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.sticky-cta.visible {
    transform: translateY(0);
}

.sticky-cta-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sticky-text {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 600;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem 2rem;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
    color: #e5e7eb;
}

.cookie-content a {
    color: #60a5fa;
}

.cookie-content a:hover {
    color: #93c5fd;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

/* Footer */
.main-footer {
    background: #1f2937;
    color: #d1d5db;
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    color: #ffffff;
    font-size: 1.125rem;
    margin-bottom: 1rem;
    margin-top: 0;
}

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: #9ca3af;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.footer-column a:hover {
    color: #60a5fa;
    text-decoration: none;
}

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding: 1.5rem 2rem 0;
    border-top: 1px solid #374151;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: #9ca3af;
    margin: 0;
}

/* Thanks Page */
.thanks-section {
    padding: 4rem 0;
}

.text-center {
    text-align: center;
}

.thanks-icon {
    margin: 0 auto 2rem;
}

.thanks-content {
    margin-top: 2.5rem;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
    text-align: left;
}

.next-step {
    display: flex;
    gap: 1rem;
}

.step-number-small {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
    flex-shrink: 0;
}

.thanks-note {
    background: #f0f9ff;
    padding: 1.5rem;
    border-radius: 4px;
    border-left: 4px solid #2563eb;
    margin: 2rem 0;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* About Page - Instructors */
.instructor-profile {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.instructor-image {
    width: 100%;
    max-width: 300px;
}

.instructor-image img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.instructor-bio h3 {
    margin-top: 0;
}

.instructor-title {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.95rem;
    color: #6b7280;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Contact Page */
.contact-info-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.contact-card {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 4px;
    border-left: 4px solid #2563eb;
}

.contact-card h3 {
    margin-top: 0;
    font-size: 1.25rem;
}

.contact-card p {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.contact-note {
    font-size: 0.9rem;
    color: #6b7280;
    font-style: italic;
}

.contact-cta {
    background: #f0f9ff;
    border: 2px solid #2563eb;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    margin: 3rem 0;
}

.contact-cta h3 {
    margin-top: 0;
}

/* Legal Pages */
.legal-content {
    padding: 2rem 0;
}

.legal-content h1 {
    margin-bottom: 0.5rem;
}

.legal-content h2 {
    margin-top: 3rem;
}

.legal-content h3 {
    margin-top: 2rem;
}

.gdpr-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.gdpr-table th,
.gdpr-table td {
    border: 1px solid #d1d5db;
    padding: 0.75rem;
    text-align: left;
    font-size: 0.95rem;
}

.gdpr-table th {
    background: #f3f4f6;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 1rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        padding: 0;
    }

    .nav-menu a {
        display: block;
        padding: 0.75rem 1rem;
    }

    .content-narrow {
        padding: 0 1.25rem;
    }

    .header-text h1 {
        font-size: 2rem;
    }

    .intro-large {
        font-size: 1.25rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }

    .cookie-actions {
        width: 100%;
    }

    .cookie-actions button {
        flex: 1;
    }

    .sticky-cta-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 1rem;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .thanks-actions a {
        width: 100%;
    }
}

@media (min-width: 769px) {
    .instructor-profile {
        flex-direction: row;
    }

    .instructor-image {
        max-width: 250px;
    }

    .contact-info-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .contact-card {
        flex: 1;
        min-width: 280px;
    }
}

@media (min-width: 1024px) {
    .feature-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .feature-item {
        flex: 0 0 calc(50% - 1rem);
    }
}