:root {
    --primary-color: #9c27b0;
    --secondary-color: #333;
    --accent-color: #9c27b0;
    --overlay-color: rgba(51, 51, 51, 0.85);
    --text-light: #fff;
    --text-dark: #333;
    --transition-speed: 0.3s;
}
.nostyle {
    color: inherit; 
    text-decoration: none;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background: linear-gradient(135deg, #FFF, var(--primary-color));
    background-size: cover;
    background-position: center;
    background-image: url('img/header-1.png');
    color: var(--text-light);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--overlay-color);
    z-index: 1;
}

header .container {
    position: relative;
    z-index: 2;
}

.welcome {
    transition: opacity 0.1s ease-out, transform 0.1s ease-out;
}

header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}

header p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.3s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Navigation Styles */
nav {
    background: var(--secondary-color);
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

nav.show {
    transform: translateY(0);
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    position: relative;
}

.nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 15px;
    z-index: 101;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    margin: 3px 0;
    transition: 0.3s;
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile menu overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

nav a {
    color: var(--text-light);
    text-decoration: none;
    padding: 20px 30px;
    display: block;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all var(--transition-speed) ease;
    position: relative;
    overflow: hidden;
}

nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    transition: left var(--transition-speed) ease;
}

nav a:hover::before,
nav a.active::before {
    left: 0;
}

nav a:hover,
nav a.active {
    background: var(--primary-color);
    color: var(--text-light);
}

/* Section Styles */
body {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
}

main {
    padding: 40px 0;
}

/* Scroll Indicator Arrow */
.scroll-indicator {
    display: flex;
    justify-content: center;
    padding: 30px 0;
    cursor: pointer;
    z-index: 10;
}

.scroll-arrow {
    width: 50px;
    height: 50px;
    border: 2px solid var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: rgba(255, 255, 255, 0.9); */
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
}

.scroll-arrow:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
    border: 2px solid var(--primary-color);
}

.scroll-arrow::after {
    content: '↓';
    font-size: 20px;
    font-weight: bold;
    color: var(--text-light);
    transition: color 0.3s ease;
}

.scroll-arrow:hover::after {
    color: white;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Add some padding to compensate for fixed nav */
.section:first-of-type {
    padding-top: 100px;
}

.section {
    background: #fff;
    margin: 40px auto;
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 1000px;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-speed) ease;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 20px 20px 0 0;
}

.section:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.section:nth-child(even) {
    background: linear-gradient(135deg, #b28adb 0%, #764ba2 40%);
    color: white;
}

.section:nth-child(even) .section-title {
    color: white;
}

.section:nth-child(even) .section-title::after {
    background: rgba(255, 255, 255, 0.8);
}

.section:nth-child(even) h3 {
    color: rgba(255, 255, 255, 0.9);
}

.section:nth-child(even) p {
    color: rgba(255, 255, 255, 0.9);
}

.section:nth-child(even) li {
    color: rgba(255, 255, 255, 0.9);
}

.section:nth-child(even) li::before {
    color: rgba(255, 255, 255, 0.9);
}

/* Override for explore-packages section to keep it white */
#explore-packages {
    background: white !important;
    color: var(--text-color) !important;
}

#explore-packages .section-title {
    color: var(--text-color) !important;
}

#explore-packages .section-title::after {
    background: var(--primary-color) !important;
}

#explore-packages h3,
#explore-packages p,
#explore-packages li {
    color: var(--text-color) !important;
}

#explore-packages li::before {
    color: var(--primary-color) !important;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--secondary-color);
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.about-content h3 {
    color: var(--primary-color); 
    font-size: 2rem;
    margin-bottom: 25px;
    text-align: center;
    background: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: left;
    padding: 0 20px;
}

.about-content p:first-of-type {
    font-size: 1.2rem;
    font-weight: 500;
    text-align: center;
    background: rgba(156, 39, 176, 0.10);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--text-light);
}

/* Services Section */
.coaching-packages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.package {
    background: linear-gradient(135deg, #b28adb 0%, #764ba2 40%);
    color: white;
    padding: 40px 30px;
    text-align: center;
    border-radius: 15px;
    transition: all var(--transition-speed) ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.package::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0.7));
    border-radius: 15px 15px 0 0;
}

.package:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.package:nth-child(2) {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 40%);
}

.package:nth-child(3) {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 40%);
}

.package h3 {
    color: white;
    font-size: 1.6rem;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.package p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Explore Packages Section */
.explore-content {
    max-width: 900px;
    margin: 0 auto;
}

.explore-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #666;
    line-height: 1.7;
}

.packages-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.preview-highlights h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 25px;
    text-align: center;
}

.preview-highlights ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.preview-highlights li {
    padding: 12px 0;
    font-size: 1.1rem;
    line-height: 1.6;
    border-bottom: 1px solid #f0f0f0;
}

.preview-highlights li:last-child {
    border-bottom: none;
}

.preview-cta {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, rgba(156, 39, 176, 0.05), rgba(156, 39, 176, 0.1));
    border-radius: 15px;
    border: 1px solid rgba(156, 39, 176, 0.1);
}

.preview-cta h4 {
    color: var(--text-dark);
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.preview-cta p {
    margin-bottom: 25px;
    color: #666;
    line-height: 1.6;
}

.packages-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 15px 35px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 50px;
    transition: all var(--transition-speed) ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(156, 39, 176, 0.3);
}

.packages-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(156, 39, 176, 0.4);
}

/* Style Section */
#style {
    background: linear-gradient(135deg, #b28adb 0%, #764ba2 40%);
    color: white;
}

#style h3 {
    color: white;
    font-size: 1.6rem;
    margin: 30px 0 20px 0;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

#style p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

#style ul {
    list-style: none;
    max-width: 600px;
    margin: 20px auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

#style li {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 10px;
    position: relative;
    padding-left: 45px;
    transition: all var(--transition-speed) ease;
    backdrop-filter: blur(10px);
}

#style li:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

#style li::before {
    content: '✓';
    color: #4facfe;
    font-weight: bold;
    font-size: 1.2rem;
    position: absolute;
    left: 15px;
    top: 15px;
    background: white;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #a653b4 40%);
    color: var(--text-light);
    text-align: center;
    padding: 80px 40px;
    margin: 40px auto;
    max-width: 1000px;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    pointer-events: none;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    font-size: 2.8rem;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-button {
    display: inline-block;
    background: var(--text-light);
    color: var(--primary-color);
    padding: 20px 45px;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: bold;
    border-radius: 50px;
    transition: all var(--transition-speed) ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background: var(--secondary-color);
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--secondary-color), #222);
    color: var(--text-light);
    text-align: center;
    padding: 40px;
    margin: 40px auto 0;
    max-width: 1000px;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
}

footer p {
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

footer p:last-child {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
    header h1 {
        font-size: 2.5rem;
    }
    
    header p {
        font-size: 1.2rem;
    }
    
    .section {
        margin: 20px auto;
        padding: 40px 25px;
        border-radius: 15px;
    }
    
    .section:first-of-type {
        padding-top: 60px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .coaching-packages {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .packages-preview {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .preview-cta {
        padding: 25px 20px;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 300px;
        background: var(--secondary-color);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 80px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 100;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        width: 100%;
        text-align: center;
        padding: 20px 25px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 1rem;
    }
    
    .nav-links a:hover {
        background: var(--primary-color);
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    nav .container {
        justify-content: flex-end;
    }

    nav a {
        padding: 15px 20px;
        font-size: 0.8rem;
    }
    
    .cta-section {
        padding: 60px 25px;
        margin: 20px auto;
        border-radius: 15px;
    }
    
    .cta-section h2 {
        font-size: 2.2rem;
    }
    
    .cta-button {
        padding: 18px 35px;
        font-size: 1.1rem;
    }
    
    #style ul {
        grid-template-columns: 1fr;
    }
    
    footer {
        padding: 30px 25px;
        margin: 20px auto 0;
        border-radius: 15px 15px 0 0;
    }
    
    .scroll-arrow {
        width: 40px;
        height: 40px;
    }
    
    .scroll-arrow::after {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .container {
        width: 95%;
    }
    
    .nav-links {
        width: 100%;
        right: -100%;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    nav .container {
        flex-direction: row;
        justify-content: flex-end;
    }
    
    header h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .section {
        padding: 30px 20px;
        margin: 15px auto;
    }
    
    .section:first-of-type {
        padding-top: 50px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .about-content p {
        padding: 0 10px;
    }
    
    .package {
        padding: 30px 20px;
    }
    
    .cta-section {
        padding: 50px 20px;
    }
    
    .cta-section h2 {
        font-size: 1.8rem;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .scroll-arrow {
        width: 35px;
        height: 35px;
    }
    
    .scroll-arrow::after {
        font-size: 14px;
    }
}
