/* 
 * Wearphoria Functional Training Website
 * Main Stylesheet
 */

/* ======== BASE STYLES ======== */
:root {
    /* Colors */
    --primary: #00BFA6;
    --primary-dark: #00A896;
    --primary-light: #7FDECB;
    --secondary: #1A1F36;
    --secondary-light: #2A3252;
    --light-bg: #F5F7FA;
    --grey: #E0E5EC;
    --grey-dark: #94A3B8;
    --text: #1E293B;
    --text-light: #64748B;
    --white: #FFFFFF;
    --black: #000000;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07), 0 12px 16px rgba(0, 0, 0, 0.03);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1), 0 20px 40px rgba(0, 0, 0, 0.05);
    
    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Rubik', sans-serif;
    
    /* Border-radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5em;
    color: var(--secondary);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-dark);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--primary);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

section {
    padding: 5rem 0;
}

.divider {
    height: 4px;
    width: 60px;
    background-color: var(--primary);
    margin: 0 auto 2rem;
}

.divider.light {
    background-color: var(--white);
}

.divider.left {
    margin-left: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header.light h2, 
.section-header.light p {
    color: var(--white);
}

.section-header h2 {
    position: relative;
    margin-bottom: 0.5rem;
}

.section-header p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-light);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: var(--white);
}

.btn-secondary {
    background-color: var(--secondary);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--secondary-light);
    color: var(--white);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
}

.btn-hero {
    background-color: var(--white);
    color: var(--secondary);
    font-size: 1.1rem;
    padding: 1rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.btn-hero:hover {
    background-color: var(--secondary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* ======== HEADER ======== */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 0;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all var(--transition-normal);
}

#header.scrolled {
    padding: 0.5rem 0;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

#header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    flex: 0 0 180px;
}

.logo a {
    display: block;
}

.logo svg {
    display: block;
    height: 50px;
    width: auto;
}

#header.scrolled .logo svg {
    height: 40px;
}

nav {
    display: flex;
    align-items: center;
}

.desktop-menu {
    display: flex;
    gap: 1.5rem;
}

.desktop-menu a {
    color: var(--secondary);
    font-weight: 500;
    position: relative;
}

.desktop-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width var(--transition-fast);
}

.desktop-menu a:hover {
    color: var(--primary);
}

.desktop-menu a:hover::after {
    width: 100%;
}

.header-cta {
    margin-left: 2rem;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--secondary);
    border-radius: 3px;
    transition: all var(--transition-fast);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--secondary);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
}

.mobile-menu a {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 600;
    display: inline-block;
    position: relative;
    padding: 0.5rem 1rem;
}

.mobile-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width var(--transition-fast);
}

.mobile-menu a:hover {
    color: var(--primary-light);
}

.mobile-menu a:hover::after {
    width: 80%;
}

/* ======== HERO SECTION ======== */
.hero {
    height: 100vh;
    min-height: 700px;
    background-image: url('images/hero.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 0;
    padding-bottom: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(26, 31, 54, 0.6), rgba(26, 31, 54, 0.8));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 1.5rem;
}

.hero h1 {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero h2 {
    color: var(--white);
    font-weight: 400;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* ======== OM OSS SECTION ======== */
.om-oss {
    background-color: var(--white);
}

.om-oss-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.om-oss-text {
    flex: 1;
}

.om-oss-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.om-oss-image {
    flex: 1;
    position: relative;
}

.om-oss-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.stats-container {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
}

.stat-box {
    flex: 1;
    text-align: center;
    padding: 1.5rem;
    background-color: var(--light-bg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-normal);
}

.stat-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 2.5rem;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-text {
    font-size: 1rem;
    color: var(--text-light);
}

/* ======== TRÄNINGAR SECTION ======== */
.traningar {
    background-color: var(--secondary);
    color: var(--white);
}

.training-slider {
    position: relative;
    overflow: hidden;
    margin: 0 -1rem;
    padding: 1rem;
}

.training-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin: 1rem;
    transition: transform var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.training-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.training-image {
    height: 240px;
    overflow: hidden;
}

.training-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.training-card:hover .training-image img {
    transform: scale(1.05);
}

.training-content {
    padding: 1.5rem;
    background: linear-gradient(to bottom right, var(--white), var(--light-bg));
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.training-content h3 {
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.training-content p {
    color: var(--text);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.training-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.training-details li {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.training-details span {
    font-weight: 600;
    margin-right: 0.5rem;
    color: var(--primary);
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

.prev-btn, .next-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--white);
    transition: all var(--transition-fast);
}

.prev-btn:hover, .next-btn:hover {
    background: var(--primary);
}

.slider-dots {
    display: flex;
    gap: 0.5rem;
    margin: 0 1rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.dot.active {
    background-color: var(--white);
}

/* ======== FÖRDELAR SECTION ======== */
.fordelar {
    background-color: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.fordelar::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
    opacity: 0.3;
    z-index: 1;
}

.fordelar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
    opacity: 0.2;
    z-index: 1;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.benefit-card {
    background-color: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary), var(--primary-light));
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    margin: 0 auto 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--light-bg);
    transition: all var(--transition-normal);
}

.benefit-card:hover .benefit-icon {
    background-color: var(--primary-light);
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.benefit-card p {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 0;
}

/* ======== SÅ FUNKAR DET SECTION ======== */
.sa-funkar-det {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.sa-funkar-det::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.05;
}

.sa-funkar-det::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.05;
}

.process-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.process-step {
    flex: 1;
    text-align: center;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(5px);
    position: relative;
    transition: all var(--transition-normal);
}

.process-step:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-10px);
}

.process-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.3rem;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.process-icon {
    margin: 1rem auto 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
}

.process-step h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.process-step p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.process-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 -1rem;
}

/* ======== DIN TRÄNARE SECTION ======== */
.din-tranare {
    background-color: var(--white);
}

.coach-container {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.coach-image {
    flex: 1;
    position: relative;
}

.coach-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.coach-badges {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.coach-badges span {
    background-color: var(--primary);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-sm);
    backdrop-filter: blur(5px);
}

.coach-info {
    flex: 1;
}

.coach-info h3 {
    font-size: 2rem;
    margin-bottom: 0.2rem;
}

.coach-title {
    color: var(--primary);
    font-weight: 500;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.coach-quote {
    position: relative;
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
}

.quote-icon {
    position: absolute;
    top: -15px;
    left: 20px;
    background-color: var(--white);
    border-radius: 50%;
    padding: 0.3rem;
}

.coach-quote p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 0;
}

.coach-specialties {
    margin-bottom: 2rem;
}

.coach-specialties h4 {
    margin-bottom: 0.8rem;
}

.coach-specialties ul {
    columns: 2;
}

.coach-specialties li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.coach-specialties li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--primary);
}

/* ======== PRISER SECTION ======== */
.priser {
    position: relative;
    background-color: var(--light-bg);
    overflow: hidden;
}

.pricing-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("images/bg.jpg");
    z-index: 1;
}

.pricing-container {
    display: flex;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.pricing-card {
    flex: 1;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--primary);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-sm);
    z-index: 3;
}

.pricing-card.featured {
    transform: scale(1.05);
    z-index: 3;
    border: 2px solid var(--primary);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-header {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    color: var(--white);
    padding: 2rem;
    text-align: center;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);
    padding-bottom: 4rem;
    margin-bottom: -2rem;
}

.pricing-header h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.2rem;
}

.amount {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 3rem;
    line-height: 1;
}

.currency {
    font-weight: 600;
    font-size: 1.2rem;
    margin-top: 0.5rem;
}

.period {
    font-weight: 400;
    font-size: 1rem;
    opacity: 0.8;
    margin-top: 0.5rem;
}

.pricing-features {
    padding: 3rem 2rem 1.5rem;
    flex-grow: 1;
}

.pricing-features ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.pricing-features li svg {
    flex-shrink: 0;
}

.pricing-features li.disabled {
    color: var(--grey-dark);
}

.pricing-footer {
    padding: 0 2rem 2rem;
    text-align: center;
}

/* ======== RECENSIONER SECTION ======== */
.recensioner {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    color: var(--white);
}

.testimonials-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.testimonial {
    flex: 1 1 340px;
    display: flex;
    gap: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 2rem;
    backdrop-filter: blur(5px);
    transition: all var(--transition-normal);
}

.testimonial:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-10px);
}

.testimonial-image {
    flex: 0 0 80px;
}

.testimonial-image img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary);
}

.testimonial-content {
    flex: 1;
}

.testimonial-quote {
    margin-bottom: 1rem;
}

.testimonial-quote p {
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.testimonial-author h4 {
    color: var(--white);
    margin-bottom: 0.2rem;
}

.testimonial-author p {
    color: var(--primary-light);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ======== BOKA SECTION ======== */
.boka {
    background-color: var(--white);
}

.booking-container {
    display: flex;
    gap: 4rem;
    align-items: stretch;
}

.booking-info {
    flex: 1;
    padding-right: 2rem;
}

.booking-info p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.booking-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.highlight-icon {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-bg);
    border-radius: var(--radius-sm);
}

.highlight-text h4 {
    margin-bottom: 0.2rem;
}

.highlight-text p {
    font-size: 0.95rem;
    margin-bottom: 0;
    color: var(--text-light);
}

.booking-form {
    flex: 1;
    background-color: var(--light-bg);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
}

.booking-form form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem 1rem;
    border: 1px solid var(--grey);
    border-radius: var(--radius-md);
    background-color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 191, 166, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group.checkbox {
    flex-direction: row;
    align-items: center;
    gap: 0.8rem;
}

.form-group.checkbox label {
    font-size: 0.9rem;
}

.form-group.checkbox a {
    text-decoration: underline;
}

.booking-form button {
    margin-top: 1rem;
}

/* ======== NEWSLETTER SECTION ======== */
.newsletter {
    background-color: var(--primary);
    padding: 3rem 0;
}

.newsletter-container {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.newsletter-content {
    flex: 1;
}

.newsletter-content h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.newsletter-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.newsletter-form {
    flex: 1;
}

.newsletter-form .form-group {
    display: flex;
    flex-direction: row;
    gap: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem 1.2rem;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
}

.newsletter-form button {
    background-color: var(--secondary);
}

.newsletter-form button:hover {
    background-color: var(--secondary-light);
}

/* ======== KONTAKT SECTION ======== */
.kontakt {
    background-color: var(--light-bg);
}

.contact-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    background-color: var(--light-bg);
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-text h4 {
    margin-bottom: 0.3rem;
}

.contact-text p {
    color: var(--text-light);
    margin-bottom: 0;
    font-size: 0.95rem;
}

.contact-map {
    width: 100%;
    height: 450px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.contact-map iframe {
    border: none;
}

/* ======== FOOTER ======== */
.footer {
    background-color: var(--secondary);
    color: var(--white);
    padding-top: 4rem;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    flex: 0 0 240px;
}

.footer-logo svg {
    width: 200px;
    height: auto;
}

.footer-links {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-column {
    flex: 1;
    min-width: 150px;
}

.footer-column h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary);
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--transition-fast);
}

.footer-column a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

.footer-bottom {
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright p, .designed-by p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ======== BACK TO TOP BUTTON ======== */
#back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary);
    box-shadow: var(--shadow-md);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    transform: translateY(20px);
}

#back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#back-to-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px);
}

/* ======== POLICY PAGES ======== */
.policy-page {
    padding-top: 100px;
    padding-bottom: 5rem;
}

.policy-page .container {
    max-width: 800px;
}

.policy-header {
    margin-bottom: 3rem;
    text-align: center;
}

.policy-header h1 {
    margin-bottom: 1rem;
}

.policy-content {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-md);
}

.policy-content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.policy-content h3 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.policy-content p {
    margin-bottom: 1rem;
}

.policy-content ul {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.policy-content ul li {
    margin-bottom: 0.5rem;
}

.policy-return-link {
    text-align: center;
    margin-top: 2rem;
}

.policy-return-link a {
    color: var(--primary);
    font-weight: 500;
}

.policy-return-link a:hover {
    text-decoration: underline;
}

/* ======== SUCCESS PAGE ======== */
.success-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    background-color: var(--light-bg);
}

.success-container {
    max-width: 600px;
    text-align: center;
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-md);
}

.success-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.success-icon svg {
    width: 40px;
    height: 40px;
}

.success-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.success-message {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.success-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* ======== RESPONSIVE STYLES ======== */
@media (max-width: 1200px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero h2 {
        font-size: 1.3rem;
    }
    
    .process-container {
        flex-direction: column;
        gap: 3rem;
    }
    
    .process-step {
        max-width: 400px;
        width: 100%;
        margin: 0 auto;
    }
    
    .process-arrow {
        transform: rotate(90deg);
    }
    
    .coach-container {
        flex-direction: column;
        gap: 3rem;
    }
    
    .coach-info {
        text-align: center;
    }
    
    .divider.left {
        margin: 0 auto 2rem;
    }
    
    .coach-specialties ul {
        columns: 1;
        text-align: left;
    }
    
    .pricing-container {
        flex-direction: column;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 992px) {
    section {
        padding: 4rem 0;
    }
    
    .desktop-menu, .header-cta {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .om-oss-content {
        flex-direction: column-reverse;
        gap: 3rem;
    }
    
    .stats-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-box {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .booking-container {
        flex-direction: column;
        gap: 3rem;
    }
    
    .booking-info {
        padding-right: 0;
    }
    
    .newsletter-container {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .footer-top {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-links {
        justify-content: space-between;
    }
    
    .footer-column {
        min-width: 120px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .divider {
        margin-bottom: 1.5rem;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .hero {
        min-height: 600px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero h2 {
        font-size: 1.2rem;
    }
    
    .btn-hero {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }
    
    .testimonials-container {
        flex-direction: column;
    }
    
    .testimonial {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .newsletter-form .form-group {
        flex-direction: column;
    }
    
    .contact-map {
        height: 300px;
    }
    
    .policy-content {
        padding: 2rem;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.4rem;
    }
    
    section {
        padding: 2.5rem 0;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero h2 {
        font-size: 1.1rem;
    }
    
    .coach-specialties ul {
        columns: 1;
    }
    
    .testimonial {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .testimonial-image {
        margin-bottom: 1rem;
    }
    
    .success-buttons {
        flex-direction: column;
    }
    
    #back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
    
    #back-to-top svg {
        width: 20px;
        height: 20px;
    }
}