:root {
    --pastel-green: #A8D5BA;
    --pastel-orange: #FFB5A7;
    --pastel-yellow: #FFD97D;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #ffffff;
}

/* Navigation Bar */
.navbar {
    background-color: var(--pastel-green) !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
    color: #ffffff !important;
}

.navbar-brand img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ffffff;
}

.nav-link {
    margin-left: 1.5rem;
    color: #ffffff !important;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--pastel-orange) !important;
}

.navbar-light .navbar-title,
.navbar .navbar-title,
.navbar-title {
    color: white !important;
}

.navbar-title {
    font-size: 1.5rem;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.navbar-title h3 {
    color: white !important;
}

@media (max-width: 767.98px) {
    .navbar-title {
        font-size: 1.1rem;
        
    }

    .navbar-brand {
        margin-right: 0.4rem;
    }

    .navbar-toggler {
        margin-left: auto;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), 
                url('bg.webp') center/cover;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    color: white;
}

.hero-credit {
    position: absolute;
    bottom: 70px;
    right: -60px;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
    transform: rotate(-90deg);
    
}

.hero-credit:hover {
    color: rgba(255, 255, 255, 1);
}

.hero-content {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 40px;
}

.hero-text {
    flex: 1.5;
    padding-left: 40px;
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.highlight {
    color: var(--pastel-green);
    font-weight: bold;
}

.btn-contact {
    background-color: var(--pastel-yellow);
    border: none;
    color: white;
    padding: 15px 50px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-contact:hover {
    background-color: #ffc966;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 217, 125, 0.4);
    color: white;
}

.hero-image {
    flex: 0.5;
    text-align: center;
    padding-right: 40px;
}

.hero-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    object-fit: cover;
    aspect-ratio: 3/4;
}

/* Entrance animations: text from left, image from right */
@keyframes slideInLeft {
    0% { transform: translateX(-80px); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

@keyframes slideInRight {
    0% { transform: translateX(80px); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

.pre-animate {
    opacity: 0;
}

.animate-left {
    animation: slideInLeft 0.9s cubic-bezier(.22,.9,.37,1) forwards;
}

.animate-right {
    animation: slideInRight 0.9s cubic-bezier(.22,.9,.37,1) forwards;
}

/* Content Sections */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: bold;
    margin-bottom: 3rem;
    color: #333;
}

/* Left-align qualifications heading inside about section */
.qualifications {
    text-align: left;
    font-weight: 700;
}

/* reduce space between qualifications heading and list */
.qualifications {
    margin-bottom: 0.9rem;
}

.qualifications-list {
    margin-top: 0;
}

.section-title span {
    color: var(--pastel-orange);
}

/* About Section */
.about-section {
    background-color: #ffffff;
}

.followup-section {
    background-color: #f9f9f9;
}

.followup-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #555;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.followup-text p {
    margin-bottom: 1.5rem;
}

.aboutyou-section {
    background-color: #f9f9f9;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.about-text a {
    color: var(--pastel-yellow);
    font-weight: bold;
    text-decoration: none;
}

.about-text .aboutyou-last {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--pastel-green);
    display: block;
    margin-top: 1rem;
}

.about-text a:hover {
    text-decoration: underline;
    color: #FFD97D;
}

/* Services Section */
.services-section {
    background-color: #ffffff;
}

.yoga-content {
    position: relative;
    line-height: 1.7;
    font-size: 1.1rem;
    color: #333;
}

.yoga-content p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    color: #444;
}

.yoga-content a {
    color: var(--pastel-orange);
    text-decoration: none;
    font-weight: 600;
}

.yoga-content a:hover,
.yoga-content a:focus {
    color: var(--pastel-yellow);
}

.yoga-image {
    float: right;
    width: 280px;
    max-width: 40%;
    margin-left: 1rem;
    margin-bottom: 1rem;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    object-fit: cover;
}

.yoga-content p {
    margin-bottom: 1rem;
}

@media (max-width: 991.98px) {
    .yoga-image {
        float: none;
        display: block;
        margin: 0 auto 1.2rem;
        width: 100%;
        max-width: 380px;
    }
}

.service-card {
    background-color: white;
    border: none;
    border-top: 4px solid var(--pastel-green);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(168, 213, 186, 0.3);
    border-top-color: var(--pastel-orange);
}

.service-card-title {
    color: #333;
    font-weight: bold;
    font-size: 1.3rem;
}

.service-card-text {
    color: #666;
    line-height: 1.6;
}

.service-icon {
    font-size: 2.5rem;
    color: var(--pastel-orange);
    margin-bottom: 1rem;
}

/* Contact Section */
.contact-section {
    background-color: white;
}

.contact-card {
    background-color: #f9f9f9;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.contact-card-inner {
    display: flex;
    align-items: center;
    gap: 0;
}

.contact-image {
    flex: 0 0 40%;
    overflow: hidden;
    border-radius: 15px 0 0 15px;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 3/4;
}

.contact-content {
    flex: 1;
    padding: 50px 40px;
}

.contact-content h3 {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: #333;
    line-height: 1.6;
}

.contact-info {
    margin-bottom: 2rem;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #555;
}

.contact-info-icon {
    font-size: 1.5rem;
    color: var(--pastel-orange);
    min-width: 30px;
}

.contact-info-item a {
    color: var(--pastel-orange);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-info-item a:hover {
    color: var(--pastel-yellow);
}

.contact-price {
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--pastel-green);
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--pastel-green);
}

.form-label {
    color: #333;
    font-weight: 600;
}

.form-control {
    border: 2px solid var(--pastel-green);
    padding: 10px 15px;
    font-size: 1rem;
}

.form-control:focus {
    border-color: var(--pastel-orange);
    box-shadow: 0 0 0 0.2rem rgba(255, 181, 167, 0.25);
}

@media (max-width: 768px) {
    .contact-card-inner {
        flex-direction: column;
    }
    
    .contact-image {
        flex: 0 0 100%;
        border-radius: 15px 15px 0 0;
        max-height: 400px;
    }
    
    .contact-content {
        padding: 30px 20px;
    }
}

/* Footer */
.footer {
    background-color: var(--pastel-green);
    color: white;
    padding: 40px 0;
    text-align: center;
    margin-top: 60px;
}

.footer a {
    color: var(--pastel-yellow);
    text-decoration: none;
    font-weight: bold;
}

.footer a:hover {
    text-decoration: underline;
}

/* Impress (content page) specific styles */
.content-section {
    padding: 80px 0;
    min-height: calc(100vh - 200px);
}

.content-section h1 {
    font-size: 2.8rem;
    font-weight: bold;
    margin-bottom: 2rem;
    color: #333;
}

.content-section h2 {
    font-size: 1.8rem;
    font-weight: bold;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--pastel-orange);
}

.content-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1rem;
}

.content-section ul {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.content-section ul li {
    margin-bottom: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero-text {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-image {
        padding-right: 20px;
        padding-left: 20px;
    }
    
    .hero-image img {
        max-width: 300px;
    }
}
