.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}

.social-link {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 25px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s;
    text-align: center;
    min-width: 120px;
}

.social-link:hover {
    transform: scale(1.05);
}

.telegram-link {
    background-color: #0088cc;
}

.telegram-link:hover {
    background-color: #0099dd;
}

.whatsapp-link {
    background-color: #25D366;
}

.whatsapp-link:hover {
    background-color: #28E070;
}

.instagram-link {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.instagram-link:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 30%, #dc2743 60%, #cc2366 80%, #bc1888 100%);
}

.footer-social-links {
    margin: 20px 0;
}

.footer-social-links .social-link {
    opacity: 0.9;
}

.footer-social-links .social-link:hover {
    opacity: 1;
}@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #3a7bd5;
    --secondary: #00d2ff;
    --dark: #333;
    --light: #f5f5f5;
    --accent: #ff7e5f;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

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

header {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.hero {
    padding: 4rem 0;
    text-align: center;
    background: url('/api/placeholder/1200/600') center/cover no-repeat;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
}

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

h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.btn {
    display: inline-block;
    background: linear-gradient(to right, var(--accent), #ff9966);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.section {
    padding: 4rem 0;
}

.program {
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 2rem;
}

.program-item {
    margin-bottom: 2rem;
    border-left: 3px solid var(--primary);
    padding-left: 1rem;
}

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

.program-item p {
    color: #666;
}

.testimonials {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.testimonial {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: calc(33.333% - 2rem);
    min-width: 300px;
}
.testimonial img {
	max-width: 100%;
	object-fit: cover;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: bold;
    color: var(--primary);
}

.retreat-info {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.info-card {
    flex: 1;
    min-width: 300px;
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.info-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--accent);
    padding-bottom: 0.5rem;
}

.info-card ul {
    list-style-position: inside;
    margin-left: 1rem;
}

.info-card li {
    margin-bottom: 0.5rem;
}

footer {
    background: var(--dark);
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

input, textarea, select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}

textarea {
    height: 150px;
}

.image-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.gallery-image {
    width: calc(33.333% - 20px);
    min-width: 250px;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

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

.retreat-image {
    width: 100%;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}

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

.photo-gallery {
    margin: 40px 0;
}

.photo-gallery h3 {
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary);
}

.photo-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.photo-item {
    height: 250px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

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

.video-gallery {
    margin: 40px 0;
}

.video-gallery h3 {
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary);
}

.video-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.video-item {
    height: 600px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background: #000;
    position: relative;
}

.video-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.video-item:hover img {
    opacity: 0.5;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.play-button::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-left: 30px solid white;
    margin-left: 8px;
}

.video-item:hover .play-button {
    background: rgba(255, 255, 255, 0.3);
}

.success-message {
    display: none;
    background-color: #4CAF50;
    color: white;
    text-align: center;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
}

.error-message {
    display: none;
    background-color: #f44336;
    color: white;
    text-align: center;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero {
        padding: 3rem 0;
    }
    
    .section {
        padding: 2rem 0;
    }
    
    .testimonial, .gallery-image {
        width: 100%;
    }
    
    .video-gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .video-item {
        height: 500px;
    }
}