:root {
    --primary-color: #ff6b6b;
    /* Salmon color from image */
    --text-dark: #333333;
    --text-muted: #666666;
    --font-main: 'Outfit', sans-serif;
}

body {
    font-family: var(--font-main);
    padding-top: 80px;
    /* Space for fixed header */
    background-color: #f8f9fa;
}

/* Navbar Styling */
.navbar {
    padding-top: 1rem;
    padding-bottom: 1rem;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
}

.navbar-brand .active-nav-text {
    color: var(--primary-color);
    font-size: 0.95rem;
}

.navbar-nav .nav-link {
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 400;
    transition: color 0.2s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

.text-salmon {
    color: var(--primary-color);
    /* Light pinkish bag icon */
    opacity: 0.8;
}

.login-text {
    color: var(--primary-color);
    font-size: 0.95rem;
}

.login-text:hover {
    color: #e55a5a;
}

/* Hero Section Styling */
.hero-section {
    min-height: 80vh;
    background-image: url('../assets/images/hero_bg.png');
    background-size: cover;
    background-position: center;
    position: relative;
    margin-top: -80px;
    /* Offset for fixed header transparency if needed */
    padding-top: 100px;
}

.hero-content {
    background: rgba(255, 255, 255, 0.90);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.hero-list li {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.hero-list li i {
    color: var(--primary-color);
    font-size: 1.2rem;
    line-height: 0;
    vertical-align: middle;
}

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

.section-title {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 3rem;
    text-align: center;
}

/* 30 Days Section */
.bg-light-yellow {
    background-color: #fff9e6;
    /* Soft yellow bg */
}

/* Online Diet Section */
.diet-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.diet-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.diet-card-header {
    background-color: var(--primary-color);
    color: white;
    padding: 2rem;
    text-align: center;
}

/* Testimonials */
.bg-soft-green {
    background-color: #9cd1a6;
    /* From image */
    color: white;
}

.testimonial-card {
    background: transparent;
    border: none;
    color: #fff;
    text-align: center;
}

.stars {
    color: #f1c40f;
    margin-bottom: 1rem;
}

/* Tea Shop */
.tea-card {
    border: none;
    text-align: center;
}

.tea-image {
    height: 250px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.tea-price {
    font-weight: 300;
    color: var(--text-muted);
}

/* Footer */
footer {
    background-color: #f1f1f1;
    padding: 60px 0;
    font-size: 0.9rem;
}

.footer-logo {
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #000;
    background: #ffc107;
    padding: 5px 10px;
    display: inline-block;
    margin-bottom: 1rem;
}

.social-link {
    font-size: 1.5rem;
    color: #333;
    margin-right: 1rem;
    transition: color 0.2s;
}

.social-link:hover {
    color: var(--primary-color);
}

.brand-text {
    color: rgb(220, 53, 69) !important;
    font-weight: 700;
}

.brand-text-white {
    color: #fff !important;
    font-weight: 700;
}