/* Luchikk Design System */
:root {
    --primary-color: #f3048d;
    --secondary-color: #ffffff;
    --text-main: #333333;
    --text-muted: #666666;
    --bg-light: #fff5f9;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    --transition: all 0.3s ease;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--secondary-color);
    font-size: 1.6rem;
    /* Increased from 1.1rem to 1.6rem (approx 16px) */
    line-height: 1.6;
}

/* Fix for tiny buttons due to html 10px base */
.btn {
    font-size: 1.5rem !important;
}

/* Fix for tiny inputs */
input,
.form-control {
    font-size: 1.6rem !important;
}

/* Navbar Font Fixes */
.navbar .nav-link {
    font-size: 1.5rem !important;
}

/* Navbar Brand Text */
.navbar-brand-text {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-size: 2.4rem;
    font-weight: 700;
    margin-left: 10px;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
}

/* Rounded Buttons */
.btn {
    border-radius: 50px;
    padding: 10px 25px;
    font-weight: 500;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: #d6037c;
    border-color: #d6037c;
    box-shadow: 0 4px 15px rgba(243, 4, 141, 0.3);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Navbar Customization */
.navbar {
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-link {
    font-weight: 500;
    color: var(--text-main);
}

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

/* Hero Section */
.hero-section {
    background-color: var(--bg-light);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

/* Cards */
.card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(243, 4, 141, 0.1);
}

.card-img-top {
    height: 250px;
    object-fit: cover;
}

/* Forms */
.form-control {
    border-radius: 10px;
    padding: 12px 15px;
    border: 1px solid #eee;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(243, 4, 141, 0.1);
}

/* Carousel Enhancements */
.carousel-item img {
    height: 500px;
    object-fit: cover;
}

.carousel-caption {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 20px;
    padding: 30px;
    bottom: 20%;
}

/* Value Proposition Bar */
.value-props-bar {
    background-color: var(--secondary-color);
    padding: 40px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.prop-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Footer Visibility Fix */
footer {
    background-color: #111;
    color: #ffffff !important;
    padding: 60px 0 20px;
}

footer h3,
footer h5 {
    color: var(--primary-color) !important;
}

footer p,
footer .text-muted {
    color: #e0e0e0 !important;
}

footer a {
    color: #ffffff !important;
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
}

footer a:hover {
    color: var(--primary-color) !important;
    opacity: 1;
}

footer hr {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

/* Search Bar Refinement */
.top-bar-search {
    position: relative;
}

.top-bar-search .form-control {
    padding-left: 45px;
    padding-right: 40px;
    border-radius: 50px;
}

.top-bar-search .search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 1rem;
    pointer-events: none;
}

.top-bar-search .search-clear {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: var(--text-muted);
    font-size: 1.5rem;
    line-height: 1;
    display: none;
    /* Hidden by default */
    transition: var(--transition);
}

.top-bar-search .search-clear:hover {
    color: var(--primary-color);
}

.top-bar-search.has-content .search-clear {
    display: block;
}