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

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

.newsletter-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.hero-section {
    background: linear-gradient(45deg, rgba(0,191,255,0.9), rgba(102,126,234,0.9)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 600"><rect fill="%2300BFFF" width="1000" height="600"/><circle fill="%23fff" opacity="0.1" cx="200" cy="150" r="80"/><circle fill="%23fff" opacity="0.1" cx="800" cy="400" r="120"/></svg>');
    background-size: cover;
    color: white;
    padding: 60px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.logo {
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 15px;
    letter-spacing: 4px;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    font-size: 22px;
    font-weight: 300;
    opacity: 0.95;
    position: relative;
    z-index: 2;
}

.dates-banner {
    background: linear-gradient(90deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 25px;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.2);
}

.photo-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    margin: 0;
}

.photo-placeholder {
    background: linear-gradient(135deg, #74b9ff, #0984e3);
    height: 200px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: top;
    justify-content: center;
    color: white;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.photo-placeholder:hover {
    transform: scale(1.02);
}

.photo-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
    animation: shimmer 2s infinite;
}

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

.photo-beach {
    background: linear-gradient(135deg, #fd79a8, #e84393);
    background-image: url(../images/DJI_0176.AVIF);
    background-size: cover;
}

.photo-spot {
    background: linear-gradient(135deg, #00cec9, #00b894);
    background-image: url(../images/dianikite.AVIF);
    background-size: cover;
}

.photo-kite {
    background: linear-gradient(135deg, #fdcb6e, #e17055);
    background-image: url(../images/teachingkenya.AVIF);
    background-size: cover;
    background-position: 0px -50px;
}

.photo-yoga {
    background: linear-gradient(135deg, #a29bfe, #6c5ce7);
    background-image: url(../images/DSC09772.AVIF);
    background-size: cover;
}

.photo-villa {
    background: linear-gradient(135deg, #55efc4, #00b894);
    background-image: url(../images/DJI_0148.AVIF);
    background-size: cover;
    grid-column: 1 / -1;
    height: 350px;
    font-size: 18px;
}

.photo-coaching {
    background: linear-gradient(135deg, #74b9ff, #0984e3);
    background-image: url(../images/718A8747.AVIF);
    background-size: cover;
    background-position: 0px -50px;
}

.photo-chef {
    background: linear-gradient(135deg, #fdcb6e, #e17055);
    background-image: url(../images/DSC02056.AVIF);
    background-size: cover;
    
}

.content-section {
    padding: 40px 30px;
}

.detail-section {
    margin-bottom: 40px;
}

.section-header {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9ff, #e8f0fe);
    border-radius: 20px;
}

.section-icon {
    font-size: 36px;
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.section-subtitle {
    font-size: 16px;
    color: #666;
    font-weight: 500;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.yoga-grid-compact {
    grid-template-columns: 1fr 1fr;
}

.detail-card {
    background: linear-gradient(135deg, #ffffff, #f8f9ff);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    border: 2px solid #e8f0fe;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.detail-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(102,126,234,0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.5s;
}

.detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(102,126,234,0.15);
    border-color: #667eea;
}

.detail-card:hover::before {
    animation: cardShimmer 0.8s ease-in-out;
}

.hatha-card {
    border-color: #a29bfe;
}

.ashtanga-card {
    border-color: #fd79a8;
}

.hatha-card:hover {
    border-color: #6c5ce7;
}

.ashtanga-card:hover {
    border-color: #e84393;
}

@keyframes cardShimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.detail-icon {
    font-size: 32px;
    margin-bottom: 15px;
    display: block;
}

.detail-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.detail-text {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.video-coaching {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 15px;
    padding: 20px;
    margin-top: 25px;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.video-coaching::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 50%);
}

.video-icon {
    font-size: 48px;
    margin-right: 20px;
    position: relative;
    z-index: 2;
}

.video-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.video-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.video-text {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.4;
}

.wind-stats {
    background: linear-gradient(135deg, #00d2ff, #3a7bd5);
    color: white;
    border-radius: 25px;
    padding: 35px;
    margin: 30px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.wind-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><path d="M0,10 Q25,0 50,10 T100,10" stroke="rgba(255,255,255,0.1)" stroke-width="2" fill="none"/></svg>');
    opacity: 0.3;
}

.wind-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.wind-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    position: relative;
    z-index: 2;
}

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

.wind-value {
    font-size: 36px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 8px;
}

.wind-label {
    font-size: 13px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.accommodation {
    background: linear-gradient(135deg, #ffeaa7, #fab1a0);
    border-radius: 25px;
    padding: 35px;
    margin: 30px 0;
    color: #2d3436;
    position: relative;
    overflow: hidden;
}

.accommodation::before {
    content: '🏡';
    position: absolute;
    right: -20px;
    top: -20px;
    font-size: 120px;
    opacity: 0.1;
}

.accommodation-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.accommodation-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 20px;
    position: relative;
    z-index: 2;
}

.feature-item {
    display: flex;
    align-items: center;
    font-size: 15px;
    font-weight: 500;
    padding: 5px 0;
}

.feature-item::before {
    content: '✨';
    margin-right: 12px;
    font-size: 18px;
}

.pricing-section {
    background: linear-gradient(135deg, #2d3436, #636e72);
    color: white;
    border-radius: 25px;
    padding: 35px;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255,255,255,0.05) 0%, transparent 50%);
}

.pricing-title {
    font-size: 26px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.services-grid {
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    margin-bottom: 10px;
    border-left: 3px solid #00d2ff;
    transition: all 0.3s ease;
}

.service-item:hover {
    background: rgba(255,255,255,0.15);
    transform: translateX(5px);
}

.total-service {
    background: linear-gradient(135deg, #00d2ff, #3a7bd5);
    border-left: 3px solid #fff;
    font-weight: 700;
    margin-top: 15px;
}

.service-name {
    font-size: 15px;
    font-weight: 500;
}

.service-price {
    font-size: 16px;
    font-weight: 700;
    color: #00d2ff;
}

.total-service .service-price {
    color: white;
    font-size: 18px;
}

.price-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.price-card {
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.2);
    position: relative;
    transition: all 0.3s ease;
}

.price-card:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,0.15);
}

.featured {
    border: 2px solid #00d2ff;
    background: rgba(0,210,255,0.1);
}

.featured-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #00d2ff;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
}

.price-type {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.price-amount {
    font-size: 32px;
    font-weight: 900;
    color: #00d2ff;
    margin-bottom: 8px;
}

.price-desc {
    font-size: 12px;
    opacity: 0.8;
    line-height: 1.4;
}

.price-note {
    text-align: center;
    opacity: 0.7;
    font-size: 13px;
    position: relative;
    z-index: 2;
}

.cta-section {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 50px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(255,255,255,0.1) 0%, transparent 50%);
}

.cta-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
}

.cta-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.cta-button {
    display: inline-block;
    background:#a29bfe;
    color: #ff6b6b;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    position: relative;
    z-index: 2;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

.footer {
    background: #2d3436;
    color: white;
    padding: 25px;
    text-align: center;
    font-size: 14px;
}

a:link {
    color: white;
    text-decoration: none;
}

a:visited {
    color:burlywood;
}

@media (max-width: 600px) {
    .detail-grid,
    .yoga-grid-compact,
    .wind-grid,
    .accommodation-features,
    .price-options {
        grid-template-columns: 1fr;
    }
    
    .photo-gallery {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .content-section {
        padding: 30px 20px;
    }
    
    .photo-placeholder {
        height: 180px;
    }
    
    .photo-beach {
        height: 200px;
    }
    
    .video-coaching {
        flex-direction: column;
        text-align: center;
    }
    
    .video-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}