/* Font Definitions */
@font-face {
    font-family: 'Iskra';
    src: url('./assets/fonts/Iskra-Regular.woff2') format('woff2'),
         url('./assets/fonts/Iskra-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Iskra';
    src: url('./assets/fonts/Iskra-Bold.woff2') format('woff2'),
         url('./assets/fonts/Iskra-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

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

:root {
    --primary-color: #1a3a52;
    --secondary-color: #2c5f7f;
    --accent-color: #c9a66b;
    --light-bg: #f0f4f8;
    --white: #FFFFFF;
    --text-dark: #1a3a52;
    --text-light: #5a7a92;
    --border-color: #c9d6df;
    --shadow: 0 4px 20px rgba(26, 58, 82, 0.1);
    --shadow-hover: 0 8px 30px rgba(26, 58, 82, 0.15);
}

body {
    font-family: 'Iskra', 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

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

.section {
    padding: 80px 0;
    position: relative;
    z-index: 2;
    background: var(--white);
}

.bg-light {
    background-color: var(--light-bg) !important;
}

.bg-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    background-image: url('./assets/images/mema-slavo-dark.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: var(--white);
    position: relative;
}

.bg-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 58, 82, 0.75);
    z-index: 1;
}

.bg-primary .container {
    position: relative;
    z-index: 2;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.bg-primary h2 {
    color: var(--white);
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    background-image: url('./assets/images/hero-cover.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    z-index: 1;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 58, 82, 0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 800px;
    padding: 0 20px;
    text-align: center;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
    text-align: center;
    max-width: 100%;
}

.hero-tagline {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: var(--white);
    opacity: 0.9;
    text-align: center;
    max-width: 100%;
}

.hero-description {
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.4;
    margin: 0 auto 2.5rem;
    color: var(--white);
    text-align: center;
    max-width: 100%;
}

.hero-details {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.date-location {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--white);
}

.location-link {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.location-link:hover {
    color: var(--accent-color);
    text-decoration: underline;
    text-shadow: 0 0 10px rgba(201, 166, 107, 0.5);
}

.date-location i {
    font-size: 1.6rem;
}

/* Buttons */
.cta-button {
    background: var(--accent-color);
    color: var(--primary-color);
    border: none;
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 20px rgba(201, 166, 107, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 166, 107, 0.5);
    background: var(--white);
    color: var(--primary-color);
}

.cta-button.primary {
    background: var(--accent-color);
    color: var(--primary-color);
}

/* Introduction Section */
#introduction {
    background: var(--text-dark);
    position: relative;
    min-height: 80vh;
}


#introduction .container {
    position: relative;
    z-index: 2;
}

#introduction h2 {
    color: var(--white);
    text-align: center;
    margin-bottom: 4rem;
}

#introduction .intro-text {
    color: var(--white);
    font-weight: 500;
}

#introduction .intro-highlight {
    background: rgba(201, 166, 107, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(201, 166, 107, 0.8);
    padding: 2rem 3rem;
    border-radius: 50px;
    text-align: center;
    margin: 0 auto 3rem;
    max-width: 800px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

#introduction .intro-highlight p {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
    text-shadow: none;
}
.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

#introduction .intro-content {
    padding: 0;
}

.intro-text-section {
    max-width: 60%;
    margin: 0 auto;
}

.intro-highlight {
    background: linear-gradient(135deg, var(--accent-color) 0%, #d9c4a0 100%);
    padding: 2rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.intro-highlight i {
    font-size: 2rem;
    color: var(--primary-color);
}

.intro-highlight p {
    margin: 0;
    font-weight: 500;
    color: var(--primary-color);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.feature-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.feature-item h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin: 0;
}

/* Experience Grid */
.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.experience-item {
    text-align: center;
    padding: 2rem;
}

.experience-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #d9c4a0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(201, 166, 107, 0.3);
}

.experience-item:hover .experience-icon {
    transform: scale(1.1);
}

.experience-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.experience-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Parallax Divider */
.parallax-divider {
    height: 50vh;
    min-height: 300px;
    background-image: url('./assets/images/mema-malovanie-predel.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
}

/* Facilitators */
.facilitators-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.facilitator {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.facilitator:hover {
    transform: translateY(-5px);
}

.facilitator-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.facilitator-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.facilitator-info {
    padding: 2rem;
}

.facilitator-title {
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.facilitator-bio {
    font-size: 1rem;
    line-height: 1.6;
}

.facilitator-bio p {
    margin-bottom: 0.5rem;
}

.bio-toggle {
    background: none;
    border: none;
    color: var(--accent-color);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    transition: color 0.3s ease;
}

.bio-toggle:hover {
    color: var(--primary-color);
}

.facilitator-social {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
}

.facilitator-social a {
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.facilitator-social a:hover {
    background: var(--primary-color);
    color: var(--accent-color);
    transform: scale(1.1);
}

/* Investment Section */
.intro-text-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.investment-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.price-box {
    text-align: center;
    background: linear-gradient(135deg, var(--accent-color) 0%, #d9c4a0 100%);
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(201, 166, 107, 0.3);
}

.price {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.price-note {
    color: var(--text-light);
    font-size: 1.1rem;
    margin: 0;
}

.included h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.included-list {
    list-style: none;
}

.included-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.included-list i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.accommodation-note {
    margin-top: 1.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(201, 166, 107, 0.2) 0%, rgba(217, 196, 160, 0.2) 100%);
    border: 2px solid var(--accent-color);
    border-radius: 10px;
    color: var(--primary-color);
    font-style: italic;
    text-align: center;
}

/* Reservation Action */
.reservation-action {
    text-align: center;
    margin: 2rem 0;
}

/* Reservation Form */
.cta-description {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: var(--accent-color);
}

.reservation-form {
    max-width: 500px;
    margin: 0 auto;
}

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

.form-group input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--accent-color);
    border-radius: 10px;
    font-size: 1.1rem;
    background: var(--white);
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--white);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.2rem;
}

.checkbox-group label {
    color: var(--accent-color);
    font-size: 0.95rem;
    line-height: 1.4;
}

.confirmation-message {
    text-align: center;
    background: var(--white);
    color: var(--primary-color);
    padding: 3rem 2rem;
    border-radius: 20px;
    margin-top: 2rem;
}

.confirmation-message i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.confirmation-message h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

.contact-info h3,
.social-links h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--secondary-color);
    color: var(--accent-color);
}

/* Responsive Design */
@media (max-width: 1024px) and (min-width: 769px) {
    .facilitators-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero {
        background-attachment: scroll;
    }
    
    .bg-primary {
        background-attachment: scroll;
    }
    
    .parallax-divider {
        background-attachment: scroll;
        height: 40vh;
        min-height: 250px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-tagline {
        font-size: 1.1rem;
    }
    
    .hero-details {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        text-align: center;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        max-width: 100%;
        padding: 0 10px;
    }
    
    .date-location {
        font-size: 1.2rem;
        justify-content: center;
        text-align: center;
    }
    
    .date-location i {
        font-size: 1.4rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .intro-content {
        text-align: center;
    }
    
    .intro-text-section {
        max-width: 100%;
    }
    
    #introduction .intro-highlight {
        padding: 1.5rem 2rem;
        margin-bottom: 2rem;
    }
    
    #introduction .intro-highlight p {
        font-size: 1.1rem;
    }
    
    .experience-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .facilitators-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .investment-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .price {
        font-size: 3rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        max-width: 100%;
        padding: 0 5px;
    }
    
    .hero-tagline {
        font-size: 1rem;
    }
    
    .parallax-divider {
        height: 30vh;
        min-height: 200px;
    }
    
    .date-location {
        font-size: 1.1rem;
        justify-content: center;
        text-align: center;
    }
    
    .date-location i {
        font-size: 1.3rem;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
    
    .feature-item,
    .experience-item {
        padding: 1.5rem;
    }
    
    .facilitator-info {
        padding: 1.5rem;
    }
    
    .price-box {
        padding: 2rem 1rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation for elements coming into view */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section > .container > * {
    animation: fadeInUp 0.6s ease-out;
}
