/* Clean, Modern Wellness Reset */
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #ffffff;
    line-height: 1.6;
}

/* Navigation - Fixes the squished list */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logo {
    font-weight: bold;
    font-size: 1.5rem;
    letter-spacing: 2px;
    color: #333;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
    align-items: center;
}

nav ul li a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: 0.3s;
}

nav ul li a:hover {
    color: #ff6b6b;
}

/* The CTA Button in Nav */
.cta-button {
    background: #333;
    color: white !important;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
}

/* Hero Section - Fixes the centering and text readability */
.hero {
    position: relative;
    height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 10%;
    /* Ensure the image name below matches what you have in GitHub */
    background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)), url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    max-width: 900px;
    color: #222;
    line-height: 1.1;
}

.highlight {
    color: #ff6b6b;
    font-style: italic;
}

.hero p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 35px;
    max-width: 600px;
}

/* Large Main Button */
.hero button {
    background-color: #333;
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s, background-color 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.hero button:hover {
    transform: translateY(-3px);
    background-color: #ff6b6b;
}

/* Responsive fix for phones */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    nav {
        flex-direction: column;
        gap: 15px;
    }
}