/* 
* Vitalna Energia - Main Stylesheet
* Color Palette:
* - Main background: #7D8F69 (warm gray-olive)
* - Accent 1: #FFD166 (neon saffron)
* - Accent 2: #D8B7DD (powder lilac)
* - Accent 3: #3D348B (deep indigo)
* - Text: Light on dark background
* - Fonts: Montserrat and Lato
*/

/* === RESET AND BASE STYLES === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #333;
}

a {
    text-decoration: none;
    color: #3D348B;
    transition: color 0.3s ease;
}

a:hover {
    color: #FFD166;
}

ul, ol {
    list-style-position: inside;
    margin-bottom: 1rem;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* === BUTTONS === */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #3D348B, #7D8F69);
    color: #fff;
    box-shadow: 0 4px 15px rgba(61, 52, 139, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #7D8F69, #3D348B);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(61, 52, 139, 0.4);
    color: #fff;
}

.btn-secondary {
    background: linear-gradient(135deg, #FFD166, #D8B7DD);
    color: #333;
    box-shadow: 0 4px 15px rgba(255, 209, 102, 0.3);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #D8B7DD, #FFD166);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 209, 102, 0.4);
    color: #333;
}

.btn-large {
    padding: 15px 30px;
    font-size: 1.1rem;
}

/* === HEADER === */
.site-header {
    background-color: #7D8F69;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    height: 40px;
    margin-right: 10px;
}

.site-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #fff;
}

.main-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
}

.main-nav li {
    margin-left: 25px;
}

.main-nav a {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    position: relative;
}

.main-nav a:hover {
    color: #FFD166;
}

.main-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #FFD166;
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

.nav-cta {
    background-color: #FFD166;
    padding: 8px 20px;
    border-radius: 30px;
    color: #333 !important;
    box-shadow: 0 2px 10px rgba(255, 209, 102, 0.3);
}

.nav-cta:hover {
    background-color: #3D348B;
    color: #fff !important;
    box-shadow: 0 4px 15px rgba(61, 52, 139, 0.3);
    transform: translateY(-2px);
}

.nav-cta::after {
    display: none;
}

/* === HERO SECTION === */
.hero-section {
    background: linear-gradient(135deg, rgba(125, 143, 105, 0.7), rgba(61, 52, 139, 0.7)), url('img/fPscVR.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #fff;
}

/* === BENEFITS SECTION === */
.benefits-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #3D348B;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #FFD166, #D8B7DD);
    margin: 20px auto 0;
    border-radius: 2px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #7D8F69, #3D348B);
    z-index: -1;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #3D348B;
}

/* === COURSES SECTION === */
.courses-section {
    padding: 80px 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.courses-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(125, 143, 105, 0.05), rgba(61, 52, 139, 0.05)), url('img/sepTEA.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 0;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.course-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.course-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 209, 102, 0.05), rgba(216, 183, 221, 0.05));
    z-index: -1;
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.course-card.featured {
    border: 2px solid #FFD166;
    transform: scale(1.05);
    z-index: 2;
}

.course-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.ribbon {
    position: absolute;
    top: 20px;
    right: -30px;
    background-color: #FFD166;
    color: #333;
    padding: 5px 30px;
    font-size: 0.9rem;
    font-weight: 600;
    transform: rotate(45deg);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.course-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #3D348B;
}

.course-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #7D8F69;
    margin-bottom: 20px;
}

.course-details {
    margin-bottom: 20px;
    flex: 1;
}

.course-details ul {
    list-style-type: none;
    margin-top: 15px;
}

.course-details li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.course-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #7D8F69;
    font-weight: bold;
}

/* === TESTIMONIALS SECTION === */
.testimonials-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.92), rgba(248, 249, 250, 0.92)), url('img/knhp3k.jpg');
    background-size: cover;
    background-position: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 4rem;
    color: rgba(216, 183, 221, 0.2);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: 600;
    color: #7D8F69;
    text-align: right;
}

/* === FAQ SECTION === */
.faq-section {
    padding: 80px 0;
    background-color: #fff;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 25px 30px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #3D348B;
    position: relative;
    padding-left: 30px;
}

.faq-item h3::before {
    content: 'Q:';
    position: absolute;
    left: 0;
    top: 0;
    color: #FFD166;
    font-weight: 700;
}

.faq-item p {
    position: relative;
    padding-left: 30px;
}

.faq-item p::before {
    content: 'A:';
    position: absolute;
    left: 0;
    top: 0;
    color: #7D8F69;
    font-weight: 700;
}

/* === ORDER FORM SECTION === */
.order-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(125, 143, 105, 0.85), rgba(61, 52, 139, 0.85)), url('img/yQjUCG.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.order-section .section-title {
    color: #fff;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    background-color: #fff;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #7D8F69;
    box-shadow: 0 0 0 2px rgba(125, 143, 105, 0.2);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-group input {
    width: auto;
    margin-right: 10px;
    margin-top: 4px;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
}

/* Form Errors */
.form-errors {
    background-color: rgba(255, 0, 0, 0.1);
    border-left: 4px solid #ff3333;
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 5px;
}

.form-errors ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.form-errors li {
    color: #cc0000;
    margin-bottom: 5px;
}

.form-errors li:last-child {
    margin-bottom: 0;
}

/* === FOOTER === */
.site-footer {
    background-color: #3D348B;
    color: #fff;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 40px;
    margin-bottom: 15px;
}

.footer-about h3,
.footer-contact h3,
.footer-links h3 {
    color: #FFD166;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-contact address {
    font-style: normal;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-contact a {
    color: #D8B7DD;
}

.footer-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #FFD166;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* === POLICY PAGES === */
.policy-section {
    padding: 60px 0;
}

.policy-section h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #3D348B;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.policy-content h2 {
    font-size: 1.5rem;
    color: #7D8F69;
    margin-top: 30px;
    margin-bottom: 15px;
}

.policy-content h3 {
    font-size: 1.2rem;
    color: #3D348B;
    margin-top: 20px;
    margin-bottom: 10px;
}

.policy-content p, 
.policy-content ul,
.policy-content address {
    margin-bottom: 15px;
}

.policy-content ul {
    padding-left: 20px;
}

.policy-content ul li {
    margin-bottom: 8px;
}

/* === THANK YOU PAGE === */
.thank-you-section {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(125, 143, 105, 0.1), rgba(61, 52, 139, 0.1));
}

.thank-you-content {
    max-width: 600px;
    margin: 0 auto;
    background-color: #fff;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.thank-you-content h1 {
    font-size: 1.7rem;
    color: #7D8F69;
    margin-bottom: 20px;
}

.thank-you-content p {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.thank-you-content .btn {
    margin-top: 20px;
}

/* === COOKIE BANNER === */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(61, 52, 139, 0.95);
    color: #fff;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
}

.cookie-banner p {
    margin-right: 20px;
    margin-bottom: 0;
}

/* === RESPONSIVE STYLES === */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .course-card.featured {
        transform: scale(1);
    }
    
    .course-card.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .site-header .container {
        flex-direction: column;
    }
    
    .logo-container {
        margin-bottom: 15px;
    }
    
    .main-nav ul {
        display: none;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .main-nav li {
        margin: 5px 10px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .cookie-banner {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-banner p {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .form-container {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .benefits-grid,
    .courses-grid,
    .testimonials-grid,
    .footer-grid,
    .faq-grid {
        grid-template-columns: 1fr !important;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 10px 20px;
    }
    
    .btn-large {
        padding: 12px 25px;
    }
    
    .policy-content {
        padding: 30px 20px;
    }
} 