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

:root {
    /* Colors */
    --primary-yellow: #DAFE79;
    --primary-dark-blue: #22557A;
    --primary-light-blue: #7BAABF;
    --primary-bg: #FFFAF5;
    --white: #FFFFFF;
    --text-dark: #1a1a1a;
    --text-light: #666666;

    /* Text sizes */
    --text-size-simple: 1.1rem
}

body {
    font-family: 'Unbounded', cursive;
    font-weight: 400;
    line-height: 1.5;
    color: var(--text-dark);
    background-color: var(--primary-bg);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(to bottom, rgba(255, 250, 245, 0.98), rgba(255, 250, 245, 0.95));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 0.6rem 0;
    box-shadow: 0 2px 20px rgba(34, 85, 122, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(34, 85, 122, 0.06);
}

.navbar.scrolled {
    padding: 0.4rem 0;
    box-shadow: 0 4px 30px rgba(34, 85, 122, 0.12);
    background: linear-gradient(to bottom, rgba(255, 250, 245, 0.99), rgba(255, 250, 245, 0.97));
}

.navbar .container {
    display: grid;
    grid-template-columns: auto 10% 1fr;
    align-items: center;
}

.nav-brand {
    grid-column: 1;
}

.logo-link {
    display: inline-block;
    text-decoration: none;
}

.logo {
    height: 35px;
    width: auto;
    display: block;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo:hover {
    transform: scale(1.05);
}

.navbar.scrolled .logo {
    height: 30px;
}

.nav-menu {
    grid-column: 3;
    display: flex;
    list-style: none;
    gap: 0.2rem;
    align-items: center;
    justify-content: flex-start;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: block;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

/* Special styling for "Долучитись" CTA */
.nav-menu li:first-child {
    margin-right: 0.5rem;
}

.nav-menu li:first-child a {
    background: var(--primary-yellow);
    color: var(--primary-dark-blue);
    font-weight: 700;
    padding: 0.4rem 1rem;
    box-shadow: 0 2px 10px rgba(218, 254, 121, 0.3);
    border: 2px solid transparent;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.nav-menu li:first-child a:hover {
    background: var(--primary-dark-blue);
    color: var(--primary-yellow);
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 4px 20px rgba(34, 85, 122, 0.25);
    border-color: var(--primary-dark-blue);
}

/* Regular menu items */
.nav-menu li:not(:first-child) a {
    position: relative;
}

.nav-menu li:not(:first-child) a {
    font-size: 0.72rem;
    padding: 0.35rem 0.7rem;
    border: 1px solid transparent;
}

.nav-menu li:not(:first-child) a::before {
    content: '';
    position: absolute;
    bottom: 0.25rem;
    left: 0.7rem;
    right: 0.7rem;
    height: 2px;
    background: var(--primary-light-blue);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu li:not(:first-child) a:hover {
    color: var(--primary-dark-blue);
    background: rgba(123, 170, 191, 0.08);
    border-color: rgba(123, 170, 191, 0.2);
}

.nav-menu li:not(:first-child) a:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* Active state indicator */
.nav-menu a.active {
    color: var(--primary-dark-blue);
    background: rgba(123, 170, 191, 0.12);
    border-color: rgba(123, 170, 191, 0.3);
    font-weight: 600;
}

.nav-menu li:not(:first-child) a.active::before {
    transform: scaleX(1);
}

/* Dropdown indicator for future use */
.nav-menu .has-dropdown::after {
    content: '▾';
    margin-left: 0.3rem;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.nav-menu .has-dropdown:hover::after {
    transform: translateY(2px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    grid-column: 3;
    justify-self: end;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-dark-blue);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, var(--primary-bg) 0%, #e8f4f8 100%);
    overflow: hidden;
}

.wave-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    z-index: 1;
    overflow: hidden;
}

.waves {
    position: absolute;
    width: 200%;
    height: 100%;
    left: 0;
}

.hero-content {
    text-align: center;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

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

.hero-title {
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--primary-dark-blue), var(--primary-light-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: var(--primary-dark-blue);
    margin-bottom: 1rem;
}

.hero-tagline {
    font-size: clamp(1rem, 2vw, 1.5rem);
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-weight: 400;
}

.hero-date {
    font-size: 1.2rem;
    color: var(--primary-dark-blue);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.hero-date.clickable {
    cursor: pointer;
    transition: transform 0.3s ease, color 0.3s ease;
    display: inline-block;
    position: relative;
    overflow: hidden;
    width: 100%;
    text-align: center;
}

.hero-date.clickable::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.4) 40%, 
        rgba(255, 255, 255, 0.8) 50%, 
        rgba(255, 255, 255, 0.4) 60%, 
        transparent
    );
    transform: skewX(-25deg);
    animation: shimmer 5s ease-in-out infinite;
}

@keyframes shimmer {
    0% {
        left: -60%;
    }
    20% {
        left: 120%;
    }
    100% {
        left: 120%;
    }
}

.hero-date.clickable:hover {
    transform: translateY(-2px);
    color: var(--primary-yellow);
}

.hero-date.clickable::after {
    content: '📅';
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-date.clickable:hover::after {
    opacity: 1;
}

.hero-info {
    font-size: var(--text-size-simple);
    color: var(--text-dark);
    background-color: var(--primary-yellow);
    display: inline-block;
    padding: 0.5rem 2rem;
    border-radius: 30px;
    margin-top: 1rem;
}

.hero-info.clickable {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-info.clickable:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Sections */
.section {
    padding: 5rem 0;
}

.section-alt {
    background-color: var(--white);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-dark-blue);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-yellow);
}

/* Call to Action Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-yellow) 0%, rgba(123, 170, 191, 0.2) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.cta-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(34, 85, 122, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--primary-yellow) 0%, transparent 30%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.cta-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(34, 85, 122, 0.15);
}

.cta-card:hover::before {
    opacity: 0.1;
}

.cta-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.cta-card h3 {
    font-size: 1.7rem;
    color: var(--primary-dark-blue);
    margin-bottom: 1rem;
}

.cta-card p {
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.8;
    flex-grow: 1;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: 'Unbounded', cursive;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button.primary {
    background: var(--primary-dark-blue);
    color: white;
    box-shadow: 0 5px 20px rgba(34, 85, 122, 0.3);
}

.cta-button.primary:hover {
    background: #1a4460;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(34, 85, 122, 0.4);
}

.cta-button.secondary {
    background: var(--primary-yellow);
    color: var(--primary-dark-blue);
    box-shadow: 0 5px 20px rgba(218, 254, 121, 0.5);
}

.cta-button.secondary:hover {
    background: #c8e560;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(218, 254, 121, 0.6);
}

/* About Section */
.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: var(--text-size-simple);
    line-height: 1.8;
}

.about-content p {
    margin-bottom: 1.5rem;
}

/* Focus Theme Section */
.focus-content {
    max-width: 900px;
    margin: 0 auto;
}

/* Focus Header */
.focus-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.focus-main-title {
    font-size: 2.2rem;
    color: var(--primary-dark-blue);
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    position: relative;
    display: inline-block;
}

.focus-wave-decoration {
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-yellow) 0%, var(--primary-light-blue) 100%);
    margin: 0 auto;
    border-radius: 3px;
    position: relative;
    overflow: hidden;
}

.focus-wave-decoration::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    animation: shimmerWave 3s infinite;
}

@keyframes shimmerWave {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Focus Intro */
.focus-intro {
    text-align: center;
    margin-bottom: 3.5rem;
    padding: 0 2rem;
}

.focus-lead {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.2rem;
    font-weight: 500;
}

.focus-intro p {
    font-size: var(--text-size-simple);
    line-height: 1.7;
    color: var(--text-dark);
}

/* Video Types Section */
.focus-video-types {
    background: linear-gradient(135deg, rgba(123, 170, 191, 0.05) 0%, rgba(218, 254, 121, 0.1) 100%);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 3rem;
}

.focus-subtitle {
    font-size: 1.2rem;
    color: var(--primary-dark-blue);
    text-align: center;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    font-weight: 600;
}

.video-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.video-type-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.video-type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-yellow) 0%, var(--primary-light-blue) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.video-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(34, 85, 122, 0.15);
    border-color: var(--primary-light-blue);
}

.video-type-card:hover::before {
    transform: scaleX(1);
}

.video-type-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
    animation: floatIcon 3s ease-in-out infinite;
    animation-delay: calc(var(--i) * 0.2s);
}

.video-type-card:nth-child(1) .video-type-icon { --i: 0; }
.video-type-card:nth-child(2) .video-type-icon { --i: 1; }
.video-type-card:nth-child(3) .video-type-icon { --i: 2; }

@keyframes floatIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.video-type-card h5 {
    font-size: var(--text-size-simple);
    color: var(--primary-dark-blue);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.video-type-card p {
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.5;
}

/* Focus Conclusion */
.focus-conclusion {
    text-align: center;
    padding: 0 2rem;
}

.focus-conclusion p {
    font-size: var(--text-size-simple);
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.focus-belief {
    font-size: 1.3rem !important;
    font-weight: 700;
    color: var(--primary-dark-blue) !important;
    margin-top: 2rem !important;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(218, 254, 121, 0.2) 0%, rgba(123, 170, 191, 0.1) 100%);
    border-radius: 15px;
    position: relative;
}

.focus-belief::before,
.focus-belief::after {
    content: '«';
    font-size: 2rem;
    color: var(--primary-dark-blue);
    position: absolute;
    font-weight: 700;
}

.focus-belief::before {
    top: 10px;
    left: 20px;
}

.focus-belief::after {
    bottom: 10px;
    right: 20px;
    transform: rotate(180deg);
}

/* Infinite Slider Styles */
.slider-container {
    position: relative;
    margin: 3rem 0;
    padding: 0 60px;
}

.slider-wrapper {
    overflow: hidden;
    margin: 0 auto;
    cursor: grab;
    user-select: none;
}

.slider-wrapper.dragging {
    cursor: grabbing;
}

.slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.slider-track.dragging {
    transition: none;
}

.slider-item {
    flex: 0 0 calc(25% - 15px);
    margin-right: 20px;
    box-sizing: border-box;
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: var(--primary-dark-blue);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(34, 85, 122, 0.2);
}

.slider-arrow:hover {
    background: var(--primary-yellow);
    color: var(--primary-dark-blue);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(34, 85, 122, 0.3);
}

.slider-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.slider-arrow-left {
    left: 0;
}

.slider-arrow-right {
    right: 0;
}

.slider-arrow svg {
    width: 20px;
    height: 20px;
}

/* Team Section */
.team-card {
    background: var(--primary-bg);
    padding: 2rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    height: 400px;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    box-shadow: 0 2px 8px rgba(34, 85, 122, 0.08), 0 4px 16px rgba(34, 85, 122, 0.06);
    border: 1px solid rgba(34, 85, 122, 0.08);
}
.team-member {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team-card:hover {
  transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(34, 85, 122, 0.12), 0 16px 32px rgba(34, 85, 122, 0.08);
    border-color: rgba(34, 85, 122, 0.12);
}

.team-card:hover .team-photo-placeholder {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

.team-photo-placeholder {
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
  border-radius: 50%;
  margin: 1.5rem auto 1.5rem;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1), inset 0 1px 2px rgba(255, 255, 255, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.8);
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

/* Individual photo classes (optional if using inline styles) */
.photo-wave {
  background-image: url('assets/team/wave.png');
}
.photo-boat {
  background-image: url('assets/team/boat.png');
}
.photo-bird {
  background-image: url('assets/team/bird.png');
}
.photo-ground {
  background-image: url('assets/team/ground.png');
}

.team-card h3 {
    font-size: 1.15rem;
    color: var(--primary-dark-blue);
    margin-bottom: 0.5rem;
    text-align: center;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.3;
    min-height: 2.6em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-card p {
    font-size: 0.875rem;
    color: #666;
    text-align: center;
    font-weight: 400;
    letter-spacing: 0.01em;
    opacity: 0.9;
    margin: 0;
}
.team-bio {
    font-size: 0.85rem;
    color: var(--text-dark);
    margin-top: 0.5rem;
    line-height: 1.4;
}
/* Responsive adjustments for sliders */
@media (max-width: 1200px) {
    .slider-item {
        flex: 0 0 calc(33.333% - 14px);
    }
}

@media (max-width: 992px) {
    .slider-item {
        flex: 0 0 calc(50% - 10px);
}

    }
}

@media (max-width: 768px) {
    .slider-container {
        padding: 0 45px;
    }
    
    .slider-item {
        flex: 0 0 calc(100% - 0px);
        margin-right: 20px;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
    }
    
    .slider-arrow svg {
        width: 18px;
        height: 18px;
    }
}

/* Speakers Section */
.speaker-card {
    background: var(--primary-bg);
    padding: 2rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    height: 400px;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    box-shadow: 0 2px 8px rgba(34, 85, 122, 0.08), 0 4px 16px rgba(34, 85, 122, 0.06);
    border: 1px solid rgba(34, 85, 122, 0.08);
}

.speaker-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(34, 85, 122, 0.12), 0 16px 32px rgba(34, 85, 122, 0.08);
    border-color: rgba(34, 85, 122, 0.12);
}

.speaker-card:hover .speaker-photo-placeholder {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.speaker-photo-placeholder {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    border-radius: 50%;
    margin: 1.5rem auto 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1), inset 0 1px 2px rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}
.photo-levkova {
  background-image: url('assets/speakers/levkova.png');
}
.photo-puzik {
  background-image: url('assets/speakers/puzik.png');
}
.photo-kidruk {
  background-image: url('assets/speakers/kidruk.png');
}
.photo-ermolenko {
  background-image: url('assets/speakers/ermolenko.png');
}
.photo-kalutko {
  background-image: url('assets/speakers/kalutko.png');
}
.photo-erynchak {
  background-image: url('assets/speakers/erynchak.png');
} 
.photo-aliev {
  background-image: url('assets/speakers/aliev.png');
} 
.speaker-card h3 {
    font-size: 1.15rem;
    color: var(--primary-dark-blue);
    margin-bottom: 0.5rem;
    text-align: center;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.3;
    min-height: 2.6em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.speaker-card p:first-of-type {
    font-size: 0.875rem;
    color: #666;
    text-align: center;
    font-weight: 400;
    letter-spacing: 0.01em;
    opacity: 0.9;
    margin: 0;
}

.speaker-bio {
    font-size: 0.85rem;
    color: var(--text-dark);
    margin-top: 0.5rem;
    line-height: 1.4;
}

/* Responsive adjustments for sliders */
@media (max-width: 1200px) {
    .slider-item {
        flex: 0 0 calc(33.333% - 14px);
    }
}

@media (max-width: 992px) {
    .slider-item {
        flex: 0 0 calc(50% - 10px);
}

    }
}

@media (max-width: 768px) {
    .slider-container {
        padding: 0 45px;
    }
    
    .slider-item {
        flex: 0 0 calc(100% - 0px);
        margin-right: 20px;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
    }
    
    .slider-arrow svg {
        width: 18px;
        height: 18px;
    }
}

/* Program Section */
.program-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.tab-button {
    background: transparent;
    border: 2px solid var(--primary-dark-blue);
    color: var(--primary-dark-blue);
    padding: 0.8rem 2rem;
    font-family: 'Unbounded', cursive;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.tab-button.active,
.tab-button:hover {
    background-color: var(--primary-dark-blue);
    color: white;
}

.day-schedule {
    display: none;
}

.day-schedule.active {
    display: block;
}

.schedule-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.schedule-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(34, 85, 122, 0.1);
}

.event {
    text-align: left;
}

.time {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-dark-blue);
    min-width: 80px;
}
/* Subheadings for Program Locations */
.program-subheading {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-dark-blue);
    margin: 2.5rem 0 1rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    border-left: 4px solid var(--primary-dark-blue);
    padding-left: 1rem;
}

.event h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.event p {
    color: var(--text-dark);
}

/* Fair/Market Section */
.fair-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(248, 213, 79, 0.03) 0%, rgba(123, 170, 191, 0.03) 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.fair-content::before {
    content: '📚';
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 120px;
    opacity: 0.05;
    transform: rotate(-15deg);
}

.fair-content p {
    margin-bottom: 1.2rem;
    line-height: 1.8;
    color: var(--text-color);
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.fair-content p:first-child {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--primary-dark-blue);
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(123, 170, 191, 0.15);
    margin-bottom: 1.5rem;
}

.fair-content p:nth-child(2) {
    background: rgba(248, 213, 79, 0.08);
    padding: 1rem 1.5rem;
    border-left: 4px solid var(--primary-yellow);
    border-radius: 8px;
    font-style: italic;
    margin: 1.5rem 0;
}

.fair-content p:nth-child(3) {
    font-weight: 600;
    color: var(--primary-dark-blue);
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

/* List items styling */
.fair-content p:nth-child(4),
.fair-content p:nth-child(5),
.fair-content p:nth-child(6),
.fair-content p:nth-child(7),
.fair-content p:nth-child(8) {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 0.8rem;
    background: white;
    padding: 0.8rem 1rem 0.8rem 3rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.fair-content p:nth-child(4)::before,
.fair-content p:nth-child(5)::before,
.fair-content p:nth-child(6)::before,
.fair-content p:nth-child(7)::before,
.fair-content p:nth-child(8)::before {
    content: '✓';
    position: absolute;
    left: 1rem;
    color: var(--primary-blue);
    font-weight: bold;
    font-size: 1.2rem;
}

.fair-content p:nth-child(4):hover,
.fair-content p:nth-child(5):hover,
.fair-content p:nth-child(6):hover,
.fair-content p:nth-child(7):hover,
.fair-content p:nth-child(8):hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(123, 170, 191, 0.15);
    background: rgba(123, 170, 191, 0.05);
}

.fair-content p:nth-child(9),
.fair-content p:nth-child(10) {
    margin-top: 2rem;
}

.fair-content p:nth-child(9) {
    background: linear-gradient(90deg, rgba(34, 85, 122, 0.05) 0%, rgba(123, 170, 191, 0.05) 100%);
    padding: 1.2rem;
    border-radius: 12px;
    border: 1px solid rgba(123, 170, 191, 0.2);
}

.fair-content p:last-of-type {
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary-dark-blue);
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(123, 170, 191, 0.15);
}

.fair-content .cta-button {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    box-shadow: 0 8px 20px rgba(248, 213, 79, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.fair-content .cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.fair-content .cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.fair-content .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(248, 213, 79, 0.4);
}

/* Animation for market section on scroll */
#fair.visible .fair-content p {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

#fair.visible .fair-content p:nth-child(1) { animation-delay: 0.1s; }
#fair.visible .fair-content p:nth-child(2) { animation-delay: 0.2s; }
#fair.visible .fair-content p:nth-child(3) { animation-delay: 0.3s; }
#fair.visible .fair-content p:nth-child(4) { animation-delay: 0.4s; }
#fair.visible .fair-content p:nth-child(5) { animation-delay: 0.5s; }
#fair.visible .fair-content p:nth-child(6) { animation-delay: 0.6s; }
#fair.visible .fair-content p:nth-child(7) { animation-delay: 0.7s; }
#fair.visible .fair-content p:nth-child(8) { animation-delay: 0.8s; }
#fair.visible .fair-content p:nth-child(9) { animation-delay: 0.9s; }
#fair.visible .fair-content p:nth-child(10) { animation-delay: 1s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fair-features {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
}

.feature {
    text-align: center;
    line-height: 1.8;
}

.feature h3 {
    font-size: 3rem;
    color: var(--primary-yellow);
    text-shadow: 2px 2px 0 var(--primary-dark-blue);
    margin-bottom: 0.5rem;
}

/* Map Section */
.map-info {
    text-align: center;
    margin-bottom: 2rem;
}

.map-address {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-dark-blue);
    margin-bottom: 0.5rem;
}

.map-street {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.map-container {
    height: 450px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--primary-light-blue);
}

/* Leaflet map custom styles */
.leaflet-container {
    font-family: 'Unbounded', sans-serif;
}

.leaflet-popup-content-wrapper {
    background: white;
    color: var(--text-dark);
    border-radius: 10px;
    box-shadow: 0 3px 14px rgba(0,0,0,0.4);
}

.leaflet-popup-content {
    margin: 13px 19px;
    line-height: 1.4;
    font-size: 14px;
}

.leaflet-popup-tip-container {
    display: none;
}

.map-popup-title {
    font-weight: 700;
    color: var(--primary-dark-blue);
    margin-bottom: 0.5rem;
    font-size: 16px;
}

.map-popup-address {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.map-popup-dates {
    color: var(--primary-light-blue);
    font-weight: 600;
}

/* Entrance markers and controls */
.entrance-marker {
    animation: pulse 2s infinite;
}

.entrance-marker:hover {
    animation: none;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(123, 170, 191, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(123, 170, 191, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(123, 170, 191, 0);
    }
}

.entrance-control {
    margin: 10px;
}

.entrance-control button:hover {
    transform: translateX(5px);
}

/* Route line animation */
.route-line {
    animation: dash 20s linear infinite;
}

@keyframes dash {
    to {
        stroke-dashoffset: -1000;
    }
}

/* Custom marker styles */
.custom-marker {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Entrance control panel responsive */
@media (max-width: 768px) {
    .entrance-control {
        margin: 5px;
    }
    
    .entrance-control h4 {
        font-size: 12px !important;
    }
    
    .entrance-control button {
        font-size: 11px !important;
        padding: 5px 8px !important;
    }
}

/* Partners Section */
.partners-slider {
  overflow: hidden;
  width: 100%;
  margin-top: 3rem;
}

.partners-track {
  display: flex;
  gap: 2rem;
  min-width: max-content;
  animation: scroll 60s linear infinite;
}

.partner-logo {
  flex: 0 0 auto;
  width: 150px;
  height: 80px;
  border-radius: 10px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

/* Адаптація для мобільних */
@media (max-width: 600px) {
  .partner-logo {
    height: 60px;
  }

  .partners-track {
    gap: 1rem;
  }
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
/* Перший логотип */
.partners-track .partner-logo:nth-child(1) {
    background-image: url("assets/logo partners/vishfest_1.png");
}
/* Другий логотип */
.partners-track .partner-logo:nth-child(2) {
    background-image: url("assets/logo partners/vidro_2.png");
}
/* Третій логотип */
.partners-track .partner-logo:nth-child(3) {
    background-image: url("assets/logo partners/egor_3.png");
}
/* Четвертий логотип */
.partners-track .partner-logo:nth-child(4) {
    background-image: url("assets/logo partners/green_4.png");
}
/* Пятий логотип */
.partners-track .partner-logo:nth-child(5) {
    background-image: url("assets/logo partners/vostok_5.png");
}
/* Шостий логотип */
.partners-track .partner-logo:nth-child(6) {
    background-image: url("assets/logo partners/razom_6.png");
}
/* Сьомий логотип */
.partners-track .partner-logo:nth-child(7) {
    background-image: url("assets/logo partners/AH_7.png");
}
/* Восьмий логотип */
.partners-track .partner-logo:nth-child(8) {
    background-image: url("assets/logo partners/pen_8.png");
}
/* Девятий логотип */
.partners-track .partner-logo:nth-child(9) {
    background-image: url("assets/logo partners/micity_9.png");
}
/* Десятий логотип */
.partners-track .partner-logo:nth-child(10) {
    background-image: url("assets/logo partners/city_10.png");
}
/* Одинадцятий логотип */
.partners-track .partner-logo:nth-child(11) {
    background-image: url("assets/logo partners/region_11.png");
}
/* Дванадцятий логотип */
.partners-track .partner-logo:nth-child(12) {
    background-image: url("assets/logo partners/lib_12.png");
}
/* Тринадц логотип */
.partners-track .partner-logo:nth-child(13) {
    background-image: url("assets/logo partners/dolls_13.png");
}
/* Чотирнадц логотип */
.partners-track .partner-logo:nth-child(14) {
    background-image: url("assets/logo partners/nchs_14.png");
}
/* Пятнадц логотип */
.partners-track .partner-logo:nth-child(15) {
    background-image: url("assets/logo partners/hud_15.png");
}
/* Шіст логотип */
.partners-track .partner-logo:nth-child(16) {
    background-image: url("assets/logo partners/PRO_16.png");
}
/* Сімн логотип */
.partners-track .partner-logo:nth-child(17) {
    background-image: url("assets/logo partners/IG_17.png");
}
/* Вісімн логотип */
.partners-track .partner-logo:nth-child(18) {
    background-image: url("assets/logo partners/DT_18.png");
}
/* Девятн логотип */
.partners-track .partner-logo:nth-child(19) {
    background-image: url("assets/logo partners/sea_19.png");
}
/* Двадц логотип */
.partners-track .partner-logo:nth-child(20) {
    background-image: url("assets/logo partners/intent_20.png");
}
/* Двадцять один логотип */
.partners-track .partner-logo:nth-child(21) {
    background-image: url("assets/logo partners/sho_21.png");
}
/* Двадцять два логотип */
.partners-track .partner-logo:nth-child(22) {
    background-image: url("assets/logo partners/toronto_22.png");
}

/* Social Section */
.social-section {
    background: linear-gradient(135deg, var(--primary-light-blue) 0%, var(--primary-dark-blue) 100%);
    color: white;
    padding: 4rem 0;
}

.social-section .section-title {
    color: white;
}

.social-section .section-title::after {
    background-color: var(--primary-yellow);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.social-links a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    padding: 0.8rem 2rem;
    border: 2px solid white;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: white;
    color: var(--primary-dark-blue);
}

.social-feed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Contacts Section */
.contacts-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-info h3 {
    font-size: 1.5rem;
    color: var(--primary-dark-blue);
    margin-bottom: 1.5rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
    font-size: var(--text-size-simple);
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .logo {
        height: 40px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--primary-bg);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 4rem;
    }

    .team-grid,
    .speakers-grid,
    .fair-features {
        grid-template-columns: 1fr;
    }

    .fair-features {
        flex-direction: column;
        gap: 2rem;
    }
    
    /* Mobile Market section */
    .fair-content {
        padding: 1.5rem;
        border-radius: 15px;
    }
    
    .fair-content::before {
        font-size: 80px;
        top: -10px;
        right: -10px;
    }
    
    .fair-content p {
        font-size: 0.95rem;
    }
    
    .fair-content p:first-child {
        font-size: 1.05rem;
    }
    
    .fair-content p:nth-child(3) {
        font-size: 1rem;
    }
    
    .fair-content p:nth-child(4),
    .fair-content p:nth-child(5),
    .fair-content p:nth-child(6),
    .fair-content p:nth-child(7),
    .fair-content p:nth-child(8) {
        padding: 0.7rem 0.8rem 0.7rem 2.5rem;
        font-size: 0.9rem;
    }
    
    .fair-content p:nth-child(4)::before,
    .fair-content p:nth-child(5)::before,
    .fair-content p:nth-child(6)::before,
    .fair-content p:nth-child(7)::before,
    .fair-content p:nth-child(8)::before {
        left: 0.8rem;
        font-size: 1rem;
    }
    
    .fair-content .cta-button {
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
        width: 100%;
        text-align: center;
    }

    .schedule-item {
        flex-direction: column;
        gap: 1rem;
    }

    .social-links {
        flex-direction: column;
        align-items: center;
    }

    .cta-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cta-card {
        padding: 2rem 1.5rem;
    }

    .cta-icon {
        font-size: 3rem;
    }

    .cta-card h3 {
        font-size: 1.5rem;
    }

    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }
}

/* Floating CTA Button */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.3s ease;
}

.floating-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

.floating-button {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-dark-blue);
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(34, 85, 122, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.floating-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-yellow);
    transition: left 0.3s ease;
}

.floating-button:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(34, 85, 122, 0.4);
}

.floating-button:hover::before {
    left: 0;
}

.floating-button:hover .floating-text,
.floating-button:hover .floating-icon {
    color: var(--primary-dark-blue);
}

.floating-text,
.floating-icon {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.floating-text {
    font-family: 'Unbounded', cursive;
    font-weight: 700;
}

.floating-icon {
    font-size: 1.2rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .floating-cta {
        bottom: 20px;
        right: 20px;
    }

    .floating-button {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

/* Animations */
.section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Wave Animation */
.waves {
    animation: waveMove 25s linear infinite;
}

@keyframes waveMove {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Seagull Animations */
.seagulls-container {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.seagull {
    position: absolute;
    opacity: 0.7;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* Wing animation for checkmark birds */
@keyframes wingFlap {
    0%, 100% {
        transform: scaleY(1);
    }
    50% {
        transform: scaleY(0.7);
    }
}

.seagull svg {
    animation: wingFlap 2s ease-in-out infinite;
}

/* Seagull 1 - Gliding across slowly */
.seagull-1 {
    top: 25%;
    animation: flyGlide 60s ease-in-out infinite;
}

.seagull-1 svg {
    animation-duration: 2.5s;
}

@keyframes flyGlide {
    0% {
        left: -50px;
        transform: translateY(0) rotate(-2deg);
    }
    20% {
        transform: translateY(-10px) rotate(0deg);
    }
    40% {
        transform: translateY(5px) rotate(2deg);
    }
    60% {
        transform: translateY(-15px) rotate(-1deg);
    }
    80% {
        transform: translateY(10px) rotate(1deg);
    }
    100% {
        left: 105%;
        transform: translateY(0) rotate(-2deg);
    }
}

/* Seagull 2 - Floating in circles */
.seagull-2 {
    top: 15%;
    left: 70%;
    animation: flyFloat 45s ease-in-out infinite;
}

.seagull-2 svg {
    animation-duration: 3s;
}

@keyframes flyFloat {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(-100px, 30px) rotate(-3deg);
    }
    50% {
        transform: translate(-80px, 60px) rotate(0deg);
    }
    75% {
        transform: translate(30px, 30px) rotate(3deg);
    }
    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

/* Seagull 3 - Lazy curved path */
.seagull-3 {
    top: 35%;
    animation: flyLazy 70s ease-in-out infinite;
}

.seagull-3 svg {
    animation-duration: 2.2s;
}

@keyframes flyLazy {
    0% {
        left: 95%;
        transform: translateY(0) rotate(1deg);
    }
    25% {
        left: 50%;
        transform: translateY(-20px) rotate(-2deg);
    }
    50% {
        left: 5%;
        transform: translateY(15px) rotate(0deg);
    }
    75% {
        left: 50%;
        transform: translateY(-10px) rotate(2deg);
    }
    100% {
        left: 95%;
        transform: translateY(0) rotate(1deg);
    }
}

/* Mobile adjustments */
@media (max-width: 768px) {
    /* Hero section mobile fixes */
    .hero {
        min-height: 80vh;
        padding-top: 80px;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .hero-title img {
        height: 60px;
        max-width: 90%;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-tagline {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-date {
        font-size: 1rem;
    }
    
    .hero-info {
        font-size: 0.9rem;
        padding: 0.4rem 1.5rem;
    }
    
    /* Wave container adjustment */
    .wave-container {
        height: 30%;
    }
    
    /* Section mobile adjustments */
    .section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 1.7rem;
        margin-bottom: 2rem;
    }
    
    /* CTA cards mobile */
    .cta-card {
        padding: 2rem 1.5rem;
    }
    
    .cta-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
    }
    
    .cta-card h3 {
        font-size: 1.4rem;
    }
    
    .cta-card p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }
    
    /* About content mobile */
    .about-content {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    /* Focus content mobile */
    .focus-main-title {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .focus-wave-decoration {
        width: 80px;
    }
    
    .focus-intro {
        padding: 0 1rem;
        margin-bottom: 2.5rem;
    }
    
    .focus-lead {
        font-size: 1rem;
    }
    
    .focus-intro p {
        font-size: 0.95rem;
    }
    
    .focus-video-types {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .focus-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .video-types-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .video-type-card {
        padding: 1.5rem;
    }
    
    .video-type-icon {
        font-size: 2.5rem;
    }
    
    .video-type-card h5 {
        font-size: 1rem;
    }
    
    .video-type-card p {
        font-size: 0.9rem;
    }
    
    .focus-conclusion {
        padding: 0 1rem;
    }
    
    .focus-conclusion p {
        font-size: 0.95rem;
    }
    
    .focus-belief {
        font-size: var(--text-size-simple) !important;
        padding: 1.2rem;
    }
    
    .focus-belief::before,
    .focus-belief::after {
        font-size: 1.5rem;
    }
    
    /* Seagulls mobile - keeping existing */
    .seagull svg {
        transform: scale(0.8);
    }
    
    .seagull-1 {
        top: 20%;
        animation-duration: 50s;
    }
    
    .seagull-2 {
        top: 10%;
        left: 80%;
        animation-duration: 40s;
    }
    
    .seagull-3 {
        top: 30%;
        animation-duration: 60s;
    }
    
    @keyframes flyFloat {
        0% {
            transform: translate(0, 0) rotate(0deg);
        }
        25% {
            transform: translate(-60px, 20px) rotate(-3deg);
        }
        50% {
            transform: translate(-50px, 40px) rotate(0deg);
        }
        75% {
            transform: translate(20px, 20px) rotate(3deg);
        }
        100% {
            transform: translate(0, 0) rotate(0deg);
        }
    }
}

/* Calendar Modal Styles */
.calendar-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.calendar-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.calendar-modal-content {
    background-color: var(--primary-bg);
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 500px;
    width: 90%;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.calendar-modal.active .calendar-modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-dark);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.modal-close:hover {
    background-color: rgba(0, 0, 0, 0.1);
    transform: rotate(90deg);
}

.modal-title {
    font-size: 2rem;
    color: var(--primary-dark-blue);
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-align: center;
}

.modal-subtitle {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    text-align: center;
}

.modal-date {
    font-size: var(--text-size-simple);
    color: var(--primary-dark-blue);
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 600;
}

.calendar-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.calendar-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 1.5rem;
    background-color: white;
    border: 2px solid var(--primary-light-blue);
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: var(--text-size-simple);
    font-weight: 500;
    color: var(--text-dark);
    font-family: 'Unbounded', sans-serif;
}

.calendar-option:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background-color: var(--primary-yellow);
    border-color: var(--primary-yellow);
}

.calendar-icon {
    font-size: 1.5rem;
}

/* Mobile responsive for modal */
@media (max-width: 768px) {
    .calendar-modal-content {
        padding: 2rem;
        width: 95%;
    }
    
    .modal-title {
        font-size: 1.5rem;
    }
    
    .calendar-option {
        padding: 1rem 1.2rem;
        font-size: 1rem;
    }
    
    /* Map responsive styles */
    .map-container {
        height: 350px;
        border-radius: 10px;
    }
    
    .map-address {
        font-size: 1.1rem;
    }
    
    .map-street {
        font-size: 0.95rem;
    }
}
