<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* 
* Tretdivita - Running for fitness website
* Main CSS file
* Nordic natural minimalism style
*/

/* Base styles and resets */
:root {
    --primary-color: #3B8C78;
    --secondary-color: #EAE2D6;
    --text-color: #333333;
    --light-bg: #F8F8F8;
    --dark-bg: #2A2A2A;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-bg);
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Rubik', sans-serif;
    font-weight: 600;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.8rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 12px auto 0;
}

h3 {
    font-size: 1.6rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: #2a6b5a;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

section {
    padding: 80px 0;
}

/* Buttons */
.cta-button, .submit-button, .plan-button, .program-button {
    display: inline-block;
    padding: 12px 28px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
}

.cta-button:hover, .submit-button:hover, .plan-button:hover, .program-button:hover {
    background-color: #2a6b5a;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Forms */
input, textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(59, 140, 120, 0.2);
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group {
    margin-bottom: 20px;
}

/* Topbar */
.topbar {
    background-color: white;
    padding: 15px 0;
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
}

.topbar-right {
    display: flex;
    align-items: center;
}

.language {
    margin-right: 20px;
    font-weight: 600;
}

.slogan {
    font-style: italic;
    color: #777;
}

/* Navigation */
.main-nav {
    display: flex;
    justify-content: flex-end;
    padding: 20px 0;
}

.nav-menu {
    display: flex;
    gap: 25px;
}

.nav-menu li a {
    color: white;
    position: relative;
    padding: 5px 0;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: white;
    transition: var(--transition);
}

.nav-menu li a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 2px 0;
    border-radius: 3px;
    transition: var(--transition);
}

/* Header */
.header {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/header.png');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 180px 0 100px;
    margin-top: 70px;
}

.header-content {
    max-width: 600px;
    text-align: center;
    margin: 0 auto;
}

.header-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Why Running Section */
.why-running {
    background: linear-gradient(180deg, #F8F8F8 0%, #EAE2D6 100%);
}

.benefits-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

/* How It Works Section */
.how-it-works {
    background-color: white;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50px;
    width: 2px;
    height: 100%;
    background-color: var(--primary-color);
}

.timeline-item {
    display: flex;
    margin-bottom: 50px;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    margin-right: 30px;
}

.timeline-content {
    flex: 1;
    background-color: var(--light-bg);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* Training Programs Section */
.training-programs {
    background-color: var(--secondary-color);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.program-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow);
    position: relative;
    padding: 30px 20px;
    text-align: center;
}

.program-card:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.program-icon {
    margin: 0 auto 20px;
    height: 60px;
}

.program-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.program-card:hover .program-details {
    max-height: 500px;
}

.program-details ul {
    margin: 20px 0;
    text-align: left;
    padding-left: 30px;
}

.program-details ul li {
    margin-bottom: 10px;
    position: relative;
}

.program-details ul li::before {
    content: 'âœ“';
    color: var(--primary-color);
    position: absolute;
    left: -25px;
}

.program-button {
    margin-top: 15px;
    padding: 10px 20px;
}

/* Benefits Section */
.benefits {
    background-color: white;
}

.benefits-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-item {
    padding: 25px;
    border-radius: var(--border-radius);
    background-color: var(--light-bg);
    text-align: center;
    transition: var(--transition);
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.benefit-icon {
    margin: 0 auto 20px;
    width: 60px;
    height: 60px;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--primary-color);
    color: white;
}

.testimonials h2::after {
    background-color: white;
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
}

.testimonial-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 25px;
    border: 3px solid white;
}

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

.testimonial-content h3 {
    margin-bottom: 5px;
}

.location {
    font-style: italic;
    margin-bottom: 20px;
    opacity: 0.8;
}

.quote {
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    margin: 0 5px;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: white;
}

/* Subscription Section */
.subscription {
    background-color: var(--light-bg);
}

.subscription-plans {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.plan-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 40px 30px;
    width: 100%;
    max-width: 350px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.plan-card.featured {
    background-color: #f0f9f6;
    border: 2px solid var(--primary-color);
    position: relative;
    z-index: 1;
}

.price {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 20px 0;
}

.features {
    margin-bottom: 30px;
}

.features li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.features li:last-child {
    border-bottom: none;
}

.plan-card form {
    margin-top: 20px;
}

.plan-card input {
    margin-bottom: 15px;
}

/* About Us Section */
.about-us {
    background-color: white;
}

.mission {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.mission-statement {
    font-size: 1.8rem;
    font-style: italic;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.mission-description {
    font-size: 1.1rem;
}

.team h3 {
    text-align: center;
    margin-bottom: 40px;
}

.team-members {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.team-member {
    width: 100%;
    max-width: 300px;
    text-align: center;
}

.member-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 3px solid var(--secondary-color);
}

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

.role {
    font-style: italic;
    color: #777;
    margin-bottom: 15px;
}

/* Contact Section */
.contact {
    background-color: var(--secondary-color);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.contact-form {
    background-color: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-item {
    margin-bottom: 30px;
}

.info-item h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.error-message {
    color: #e74c3c;
    margin-top: 15px;
    padding: 10px;
    background-color: rgba(231, 76, 60, 0.1);
    border-radius: var(--border-radius);
}

/* Footer */
.footer {
    background-color: var(--dark-bg);
    color: white;
    padding: 60px 0 20px;
}

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

.footer-logo img {
    height: 40px;
    margin-bottom: 15px;
}

.footer-links h3, .footer-newsletter h3 {
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #ddd;
}

.footer-links ul li a:hover {
    color: white;
}

.footer-newsletter form {
    display: flex;
}

.footer-newsletter input {
    flex: 1;
    margin-bottom: 0;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
}

.footer-newsletter button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0 20px;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    cursor: pointer;
    transition: var(--transition);
}

.footer-newsletter button:hover {
    background-color: #2a6b5a;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: #aaa;
}

/* Program Modal */
.program-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1100;
    overflow: auto;
}

.modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 40px;
    border-radius: var(--border-radius);
    max-width: 800px;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.appear {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive styles */
@media screen and (max-width: 1024px) {
    h1 {
        font-size: 2.4rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .header {
        padding: 150px 0 80px;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: rgba(42, 42, 42, 0.95);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 15px 0;
    }
    
    .nav-menu li a {
        font-size: 1.2rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .topbar .slogan {
        display: none;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-icon {
        width: 50px;
        height: 50px;
        margin-right: 20px;
    }
    
    .team-members {
        gap: 40px;
    }
    
    .footer-newsletter form {
        flex-direction: column;
    }
    
    .footer-newsletter input {
        border-radius: var(--border-radius);
        margin-bottom: 10px;
    }
    
    .footer-newsletter button {
        border-radius: var(--border-radius);
        padding: 12px;
    }
}

@media screen and (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .header {
        padding: 130px 0 60px;
    }
    
    .timeline-content {
        padding: 15px;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .modal-content {
        padding: 25px;
        margin: 15% auto;
    }
}</pre></body></html>