:root {
    --primary-color: #e76f51;
    --secondary-color: #1a2b4a;
    --accent-color: #e9c46a;
    --dark-color: #264653;
    --light-color: #f4f1de;
}
 
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark-color);
}
 
/* ── Navbar ── */
.navbar {
    background-color: var(--dark-color);
}
 
.navbar-brand {
    font-weight: bold;
    color: var(--light-color) !important;
}
 
.nav-link {
    color: var(--light-color) !important;
    font-weight: 500;
}
 
.nav-link.active {
    color: var(--accent-color) !important;
}
 
/* ── Hero ── */
.hero-section {
    background: linear-gradient(rgba(38, 70, 83, 0.7), rgba(38, 70, 83, 0.7)),
                url('/images/hero.jpg') center/cover no-repeat;
    color: white;
    padding: 120px 0;
    text-align: center;
}
 
.hero-section h1 {
    font-size: 3.5rem;
    font-weight: bold;
}
 
/* ── Buttons ── */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}
 
.btn-primary:hover {
    background-color: #d56344;
    border-color: #d56344;
}
 
.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);
}
 
/* ── Feature boxes ── */
.feature-box {
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}
 
.feature-box:hover {
    transform: translateY(-5px);
}
 
.feature-icon {
    font-size: 2.5rem;
    color: #1a2b4a !important;
    /* color: var(--secondary-color);*/
    margin-bottom: 15px;
}
 
/* ── Section titles ── */
.section-title {
    position: relative;
    margin-bottom: 40px;
}
 
.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}
 
.section-title.text-center::after {
    left: 50%;
    transform: translateX(-50%);
}
 
/* ── Team ── */
.team-member {
    text-align: center;
    margin-bottom: 30px;
}
 
.team-member img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--light-color);
}
 
/* ── Product cards ── */
.product-card {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    margin-bottom: 30px;
}
 
.product-card:hover {
    transform: translateY(-5px);
}
 
/* ── Footer ── */
.footer {
    background-color: #1a2b4a;
    color: #ffffff;
    padding: 40px 0 20px;
}
 
.footer h5 {
    color: var(--accent-color);
    margin-bottom: 20px;
}
 
.footer-link {
    color: var(--light-color);
    text-decoration: none;
    transition: color 0.3s;
}
 
.footer-link:hover {
    color: var(--accent-color);
}
 
.social-icon {
    font-size: 1.5rem;
    margin-right: 15px;
    color: var(--light-color);
    transition: color 0.3s;
}
 
.social-icon:hover {
    color: var(--accent-color);
}