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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
}

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

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

h1, h2, h3 {
    margin-bottom: 20px;
    font-weight: 700;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 15px;
}

ul {
    list-style-type: none;
    margin-bottom: 20px;
}

ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #5f2c84;
}

a {
    text-decoration: none;
    color: inherit;
}

section {
    padding: 60px 0;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 3px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: #5f2c84;
    color: white;
}

.btn-primary:hover {
    background-color: #4a2368;
}

.btn-secondary {
    background-color: transparent;
    color: #5f2c84;
    border: 2px solid #5f2c84;
}

.btn-secondary:hover {
    background-color: rgba(95, 44, 132, 0.1);
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
    border-radius: 5px;
    width: 90%;
    max-width: 500px;
    z-index: 1000;
}

.cookie-content h2 {
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.cookie-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.cookie-buttons button {
    width: 48%;
}

/* Header Styles */
header {
    background-color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo a {
    color: #5f2c84;
    font-weight: 700;
    font-size: 1.2rem;
}

nav ul {
    display: flex;
    margin-bottom: 0;
}

nav ul li {
    margin-left: 30px;
    margin-bottom: 0;
    padding-left: 0;
}

nav ul li:before {
    display: none;
}

nav ul li a {
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #5f2c84;
}

/* Hero Section */
.hero {
    background-color: #0e0e18;
    color: white;
    text-align: center;
    padding: 80px 0;
    background-image:  url('./assets/hero-bg.png');
    background-size: cover;
    background-position: center;
}

.hero h1 {
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero p {
    max-width: 700px;
    margin: 0 auto 30px;
}

/* Target Audience Section */
.target-audience .container {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

.target-audience .image-container {
    flex: 1;
    min-width: 300px;
}

.target-audience .content {
    flex: 1;
    padding: 0 20px;
    min-width: 300px;
}

/* Coaches Section */
.coaches {
    background-color: #f9f9f9;
}

.coaches h2 {
    text-align: center;
    margin-bottom: 40px;
}

.coach-cards {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.coach-card {
    flex: 1;
    min-width: 300px;
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.coach-card img {
    width: 100%;
    border-radius: 5px;
    margin-bottom: 15px;
}

.coach-title {
    font-style: italic;
    color: #666;
    margin-bottom: 15px;
}

/* StartPlus Principle Section */
.startplus {
    background-color: #5f2c84;
    color: white;
}

.startplus h2 {
    text-align: center;
    margin-bottom: 40px;
}

.principle-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.principle-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 5px;
}

/* Investment Areas Section */
.investment-areas h2 {
    text-align: center;
    margin-bottom: 40px;
}

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

.area-card {
    background-color: white;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.area-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.area-card h3 {
    color: #5f2c84;
    padding: 20px 20px 10px;
    font-size: 1.2rem;
}

.area-card p {
    padding: 0 20px;
}

.area-card .price {
    color: #5f2c84;
    font-weight: 600;
    padding: 0 20px 20px;
}

/* Contact Form Section */
.contact {
    background-color: #f9f9f9;
    padding: 60px 0;
}

.contact form {
    max-width: 500px;
    margin: 0 auto;
}

.contact input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-family: 'Inter', sans-serif;
}

.contact button {
    width: 100%;
}

/* Footer */
footer {
    background-color: #0e0e18;
    color: white;
    padding: 30px 0;
}

footer .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.address {
    margin-bottom: 20px;
}

.legal-links {
    display: flex;
    flex-direction: column;
}

.legal-links a {
    color: #ccc;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: white;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.7rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .target-audience .container {
        flex-direction: column;
    }
    
    .target-audience .image-container,
    .target-audience .content {
        width: 100%;
    }
    
    .coach-cards {
        flex-direction: column;
    }
    
    .cookie-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .cookie-buttons button {
        width: 100%;
    }
    
    nav ul {
        flex-direction: column;
        position: absolute;
        top: 100%;
        right: 0;
        background-color: white;
        width: 200px;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        display: none;
    }
    
    nav ul.active {
        display: flex;
    }
    
    nav ul li {
        margin: 10px 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .area-cards {
        grid-template-columns: 1fr;
    }
    
    section {
        padding: 40px 0;
    }
    
    .cookie-popup {
        width: 95%;
    }
}

html {
    scroll-behavior: smooth;
}