/* Local fonts */
@font-face {
    font-family: 'Quicksand';
    src: url('fonts/quicksand.woff2') format('woff2');
    font-weight: 400 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nunito';
    src: url('fonts/nunito.woff2') format('woff2');
    font-weight: 300 600;
    font-style: normal;
    font-display: swap;
}

/* Font fallbacks to prevent CLS */
@font-face {
    font-family: 'Quicksand Fallback';
    src: local('Arial');
    size-adjust: 103%;
    ascent-override: 95%;
    descent-override: 25%;
    line-gap-override: 0%;
}

@font-face {
    font-family: 'Nunito Fallback';
    src: local('Arial');
    size-adjust: 101%;
    ascent-override: 100%;
    descent-override: 25%;
    line-gap-override: 0%;
}

:root {
    --teal: #2A9D8F;
    --teal-light: #3AB4A5;
    --teal-dark: #1E7A6E;
    --white: #FFFFFF;
    --gray-light: #F8FAFB;
    --gray: #E8EDEF;
    --text-dark: #2D3436;
    --text-muted: #636E72;
    --shadow-soft: 0 8px 32px rgba(42, 157, 143, 0.12);
    --shadow-hover: 0 12px 48px rgba(42, 157, 143, 0.2);
    --radius-bubble: 24px;
    --radius-small: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', 'Nunito Fallback', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    background: var(--white);
}

/* Sticky Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    height: 80px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--teal);
}

.nav-mobile-cta {
    display: none;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--teal);
    color: var(--white);
    box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
    background: var(--teal-light);
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.btn-cta {
    background: linear-gradient(135deg, #3AB4A5 0%, #2A9D8F 100%);
    color: var(--white);
    box-shadow: 0 8px 24px rgba(42, 157, 143, 0.3);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(42, 157, 143, 0.4);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    padding-top: 200px;
    padding-bottom: 80px;
    padding-left: 2rem;
    padding-right: 2rem;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(42, 157, 143, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 500px;
}

.hero-image {
    position: relative;
    order: -1;
}

.hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-bubble);
    box-shadow: var(--shadow-soft);
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 3px solid var(--teal);
    border-radius: var(--radius-bubble);
    z-index: -1;
    opacity: 0.3;
}

.hero-content h1 {
    font-family: 'Quicksand', 'Quicksand Fallback', sans-serif;
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero-content h1 span {
    color: var(--teal);
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 480px;
}

/* Section Styling */
section {
    padding: 100px 2rem;
}

.section-gray {
    background: var(--gray-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: 'Quicksand', 'Quicksand Fallback', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.about-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius-bubble);
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.about-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.owl-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: linear-gradient(135deg, rgba(42, 157, 143, 0.1) 0%, rgba(42, 157, 143, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.owl-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--teal);
}

.about-item h3 {
    font-family: 'Quicksand', 'Quicksand Fallback', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.about-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Pricing Section */
.scroll-hint {
    display: none;
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

@media (max-width: 600px) {
    .scroll-hint {
        display: block;
    }
}

.pricing-table {
    background: var(--white);
    border-radius: var(--radius-bubble);
    box-shadow: var(--shadow-soft);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.pricing-table table {
    width: 100%;
    min-width: 420px;
    border-collapse: collapse;
}

.pricing-table th {
    background: var(--teal);
    color: var(--white);
    font-family: 'Quicksand', 'Quicksand Fallback', sans-serif;
    font-weight: 600;
    padding: 1.25rem 1.5rem;
    text-align: left;
    white-space: nowrap;
}

.pricing-table td {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--gray);
}

.pricing-table tr:last-child td {
    border-bottom: none;
}

.pricing-table tr:hover td {
    background: rgba(42, 157, 143, 0.03);
}

.price {
    font-family: 'Quicksand', 'Quicksand Fallback', sans-serif;
    font-weight: 700;
    color: var(--teal);
    font-size: 1.1rem;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-bubble);
    box-shadow: var(--shadow-soft);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--gray);
    border-radius: var(--radius-small);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--teal);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-bubble);
    box-shadow: var(--shadow-soft);
}

.contact-card h3 {
    font-family: 'Quicksand', 'Quicksand Fallback', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--teal);
}

.contact-card p {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.contact-card a {
    color: var(--teal);
    text-decoration: none;
}

/* Map */
.map-container {
    margin-top: 3rem;
    border-radius: var(--radius-bubble);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    background: var(--gray-light);
    min-height: 350px;
}

.map-container iframe {
    width: 100%;
    height: 350px;
    border: none;
}

/* Footer */
footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 3rem 2rem;
    text-align: center;
}

footer p {
    opacity: 0.7;
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .hero {
        min-height: auto;
        padding-top: 140px;
        padding-bottom: 40px;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-image {
        order: 0;
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-image img {
        height: 300px;
    }

    .hero-content p {
        margin: 0 auto 2rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.hero-image {
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero-image {
    animation-delay: 0.2s;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-small);
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.3) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover::after {
    opacity: 1;
}

/* Gallery placeholder */
.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gray) 0%, var(--gray-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text-muted);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 968px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        display: flex;
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 100px 2rem 2rem;
        gap: 0;
        box-shadow: -4px 0 20px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 1rem 0;
        font-size: 1.1rem;
        border-bottom: 1px solid var(--gray);
    }

    .nav-cta {
        display: none;
    }

    .nav-mobile-cta {
        display: block;
        margin-top: 1rem;
        padding-top: 1rem;
    }

    .nav-mobile-cta a {
        display: inline-block !important;
        text-align: center;
        width: 100%;
        border-bottom: none !important;
        padding: 14px 32px !important;
        color: white !important;
    }

    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
    }

    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ========================================
   MATERIALS PAGE STYLES
   ======================================== */

.materials-hero {
    padding-top: 140px;
    padding-bottom: 60px;
    background: linear-gradient(135deg, var(--gray-light) 0%, var(--white) 100%);
    text-align: center;
}

.materials-hero h1 {
    font-family: 'Quicksand', 'Quicksand Fallback', sans-serif;
    font-size: 2.8rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.materials-hero h1 span {
    color: var(--teal);
}

.materials-hero p {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.hero-subtitle {
    font-family: 'Quicksand', 'Quicksand Fallback', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.materials-section {
    padding: 80px 2rem;
}

.materials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.material-card {
    background: var(--white);
    border-radius: var(--radius-bubble);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
}

.material-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.material-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

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

.material-content {
    padding: 1.5rem;
}

.material-tag {
    display: inline-block;
    background: rgba(42, 157, 143, 0.1);
    color: var(--teal);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.material-content h3 {
    font-family: 'Quicksand', 'Quicksand Fallback', sans-serif;
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.material-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.material-download {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--teal);
    font-weight: 600;
    font-size: 0.9rem;
}

.material-download svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.material-card.coming-soon {
    opacity: 0.7;
}

.material-card.coming-soon .material-image {
    background: var(--gray);
}

.coming-soon-badge {
    background: var(--text-muted);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.newsletter-section {
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
    padding: 80px 2rem;
    text-align: center;
    color: white;
}

.newsletter-section h2 {
    font-family: 'Quicksand', 'Quicksand Fallback', sans-serif;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.newsletter-section p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 450px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-family: inherit;
}

.newsletter-form button {
    padding: 14px 28px;
    background: white;
    color: var(--teal);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* ========================================
   ABOUT PAGE STYLES
   ======================================== */

.about-hero {
    padding-top: 140px;
    padding-bottom: 60px;
    background: linear-gradient(135deg, var(--gray-light) 0%, var(--white) 100%);
}

.about-intro {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: start;
    max-width: 900px;
    margin: 0 auto;
}

.about-photo {
    width: 300px;
    height: 380px;
    border-radius: var(--radius-bubble);
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 6rem;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.about-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-intro-text h1 {
    font-family: 'Quicksand', 'Quicksand Fallback', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.about-intro-text h1 span {
    color: var(--teal);
}

.about-intro-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.about-section {
    padding: 80px 2rem;
}

.about-section h2 {
    font-family: 'Quicksand', 'Quicksand Fallback', sans-serif;
    font-size: 2rem;
    color: var(--teal);
    margin-bottom: 1.5rem;
    text-align: center;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-content p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.experience-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-bubble);
    box-shadow: var(--shadow-soft);
    border-left: 4px solid var(--teal);
}

.experience-card h3 {
    font-family: 'Quicksand', 'Quicksand Fallback', sans-serif;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.experience-card .years {
    font-size: 0.9rem;
    color: var(--teal);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.experience-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0;
}

.interests-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 2rem auto 0;
}

.interest-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-bubble);
    box-shadow: var(--shadow-soft);
    text-align: center;
}

.interest-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.interest-item h4 {
    font-family: 'Quicksand', 'Quicksand Fallback', sans-serif;
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.interest-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

.courses-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.course-year {
    margin-bottom: 2rem;
}

.course-year-header {
    font-family: 'Quicksand', 'Quicksand Fallback', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--teal);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--gray);
}

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

.course-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-muted);
    font-size: 1rem;
    border-bottom: 1px solid var(--gray-light);
}

.course-list li:last-child {
    border-bottom: none;
}

.course-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--teal);
    border-radius: 50%;
}

.course-location {
    color: var(--teal);
    font-size: 0.9rem;
}

.practice-section {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-bubble);
    box-shadow: var(--shadow-soft);
    max-width: 800px;
    margin: 2rem auto 0;
}

.practice-section h3 {
    font-family: 'Quicksand', 'Quicksand Fallback', sans-serif;
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.practice-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.practice-tag {
    background: var(--gray-light);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.cta-section {
    text-align: center;
    padding: 80px 2rem;
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
    color: white;
}

.cta-section h2 {
    font-family: 'Quicksand', 'Quicksand Fallback', sans-serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-section p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.cta-section .btn {
    background: white;
    color: var(--teal);
}

.cta-section .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}

/* ========================================
   THANK YOU PAGE STYLES
   ======================================== */

.thank-you-section {
    min-height: 80vh;
}

.thank-you-section .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
}

.thank-you-section .hero-content {
    max-width: 600px;
    margin: 0 auto;
}

.thank-you-section h1 {
    color: var(--teal);
}

.thank-you-section .btn {
    margin-top: 2rem;
}

/* ========================================
   RESPONSIVE - MATERIALS & ABOUT
   ======================================== */

@media (max-width: 768px) {
    .materials-hero h1 {
        font-size: 2rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .materials-grid {
        grid-template-columns: 1fr;
    }

    .about-intro {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-photo {
        margin: 0 auto;
        width: 200px;
        height: 250px;
        font-size: 4rem;
    }

    .experience-grid {
        grid-template-columns: 1fr;
    }

    .interests-grid {
        grid-template-columns: 1fr;
    }

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

/* ========================================
   SENSORY SWINGS PAGE STYLES
   ======================================== */

.swings-section {
    padding: 60px 2rem 80px;
}

.swings-intro {
    max-width: 900px;
    margin: 0 auto 3rem;
}

.swings-intro h2 {
    font-family: 'Quicksand', 'Quicksand Fallback', sans-serif;
    font-size: 2rem;
    color: var(--teal);
    margin-bottom: 1.5rem;
    text-align: center;
}

.swings-intro p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.swings-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 1000px;
    margin: 0 auto 4rem;
}

.swings-gallery .gallery-item {
    aspect-ratio: 3/4;
    border-radius: var(--radius-bubble);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.swings-gallery .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.swings-gallery .gallery-item:hover img {
    transform: scale(1.05);
}

.swings-benefits {
    max-width: 1200px;
    margin: 0 auto 4rem;
}

.swings-benefits h2 {
    font-family: 'Quicksand', 'Quicksand Fallback', sans-serif;
    font-size: 2rem;
    color: var(--teal);
    margin-bottom: 1rem;
    text-align: center;
}

.benefits-intro {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.benefit-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-bubble);
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.benefit-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(42, 157, 143, 0.1) 0%, rgba(42, 157, 143, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.benefit-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--teal);
}

.benefit-card h3 {
    font-family: 'Quicksand', 'Quicksand Fallback', sans-serif;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.benefit-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.swings-activities {
    padding: 4rem 2rem;
    margin: 0 -2rem 4rem;
}

.swings-activities h2 {
    font-family: 'Quicksand', 'Quicksand Fallback', sans-serif;
    font-size: 2rem;
    color: var(--teal);
    margin-bottom: 1rem;
    text-align: center;
}

.activities-intro {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 900px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.activity-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-bubble);
    box-shadow: var(--shadow-soft);
    border-left: 4px solid var(--teal);
}

.activity-card h3 {
    font-family: 'Quicksand', 'Quicksand Fallback', sans-serif;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.activity-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.swings-types {
    max-width: 900px;
    margin: 0 auto 4rem;
}

.swings-types h2 {
    font-family: 'Quicksand', 'Quicksand Fallback', sans-serif;
    font-size: 2rem;
    color: var(--teal);
    margin-bottom: 2rem;
    text-align: center;
}

.swing-type-card {
    background: var(--white);
    border-radius: var(--radius-bubble);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.swing-type-card.with-image {
    display: grid;
    grid-template-columns: 280px 1fr;
}

.swing-type-image {
    width: 100%;
    height: 100%;
    min-height: 280px;
}

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

.swing-type-card:hover {
    box-shadow: var(--shadow-hover);
}

.swing-type-content {
    padding: 2rem;
}

.swing-type-content h3 {
    font-family: 'Quicksand', 'Quicksand Fallback', sans-serif;
    font-size: 1.3rem;
    color: var(--teal);
    margin-bottom: 0.75rem;
}

.swing-description {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 1rem;
}

.swing-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.swing-features li {
    padding: 0.5rem 0;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
}

.swing-features li::before {
    content: '';
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    background: var(--teal);
    border-radius: 50%;
    margin-right: 12px;
    margin-top: 0.55em;
}

.swings-target {
    padding: 4rem 2rem;
    margin: 0 -2rem 4rem;
}

.swings-target h2 {
    font-family: 'Quicksand', 'Quicksand Fallback', sans-serif;
    font-size: 2rem;
    color: var(--teal);
    margin-bottom: 1rem;
    text-align: center;
}

.target-intro {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.target-list {
    max-width: 700px;
    margin: 0 auto;
}

.target-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--white);
    border-radius: var(--radius-small);
    margin-bottom: 0.75rem;
    box-shadow: var(--shadow-soft);
}

.target-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    background: var(--teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.target-icon svg {
    width: 14px;
    height: 14px;
    fill: white;
}

.target-item span:last-child {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.5;
}

.swings-note {
    max-width: 900px;
    margin: 0 auto;
}

.note-card {
    background: linear-gradient(135deg, rgba(42, 157, 143, 0.08) 0%, rgba(42, 157, 143, 0.03) 100%);
    border: 2px solid var(--teal);
    border-radius: var(--radius-bubble);
    padding: 2rem;
}

.note-card h3 {
    font-family: 'Quicksand', 'Quicksand Fallback', sans-serif;
    font-size: 1.3rem;
    color: var(--teal);
    margin-bottom: 1rem;
}

.note-card p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.note-card p:last-child {
    margin-bottom: 0;
}

/* Responsive - Sensory Swings Page */
@media (max-width: 968px) {
    .swings-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .activities-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    /* Lepšia čitateľnosť na mobile */
    body {
        font-size: 1.05rem;
        line-height: 1.9;
    }

    p {
        margin-bottom: 1.25rem;
    }

    .swings-intro p,
    .about-content p,
    .swing-description,
    .benefit-card p,
    .activity-card p,
    .note-card p {
        font-size: 1rem;
        line-height: 1.9;
        margin-bottom: 1.5rem;
    }

    .swing-features li {
        padding: 0.75rem 0;
        line-height: 1.8;
    }

    .swing-features {
        text-align: left;
    }

    .target-list {
        text-align: left;
    }

    .benefits-grid,
    .activities-grid {
        text-align: left;
    }

    .benefit-card,
    .activity-card {
        text-align: left;
    }

    .swings-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .swing-type-card.with-image {
        grid-template-columns: 1fr;
    }

    .swing-type-image {
        min-height: 220px;
    }

    .swing-type-content {
        padding: 1.5rem;
    }

    .swings-intro h2,
    .swings-benefits h2,
    .swings-activities h2,
    .swings-types h2,
    .swings-target h2 {
        font-size: 1.6rem;
        margin-bottom: 1.25rem;
    }

    .benefit-card,
    .activity-card {
        padding: 1.5rem;
    }

    .target-item {
        padding: 1.25rem;
    }

    .note-card {
        padding: 1.5rem;
    }
}
