/* Colee Holdings - Modern Website Styles */
:root {
    --brand-primary: #1a4d7a;
    --brand-secondary: #b8985f;
    --brand-accent: #ffc107;
    --brand-bg: #f8f9fa;
    --brand-dark: #1a2332;
    --brand-font: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--brand-font);
    background: var(--brand-bg);
    color: #333;
    line-height: 1.6;
}

/* Navigation */
.navbar {
    background: #fff !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    padding: 12px 0;
}

.navbar-brand img {
    height: 55px;
    width: auto;
    margin-right: 12px;
}

.navbar-brand span {
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.navbar-nav .nav-link {
    font-weight: 600;
    padding: 10px 18px !important;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
    color: var(--brand-primary) !important;
}

/* Hero Section */
.hero-section {
    position: relative;
    overflow: hidden;
    height: 600px;
}

.carousel-item img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 1000px;
    background: rgba(26, 77, 122, 0.45);
    padding: 40px 30px;
    border-radius: 16px;
    color: #fff;
}

@media (max-width: 768px) {
    .hero-section { height: 480px; }
    .carousel-item img { height: 480px; }
    .carousel-caption { padding: 24px; }
}

/* Small hero for inner pages */
.hero-section-small {
    background: linear-gradient(135deg, var(--brand-primary) 0%, #2c6a9f 50%, var(--brand-secondary) 100%);
    color: #fff;
    padding: 60px 0;
}

/* Cards */
.card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    box-shadow: 0 6px 22px rgba(0,0,0,0.06);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 14px 38px rgba(26,77,122,0.12);
}

.card-img-top {
    height: 220px;
    object-fit: cover;
}

.btn-primary {
    background: linear-gradient(135deg, var(--brand-primary), #2c6a9f);
    border: none;
}

.btn-primary:hover { transform: translateY(-2px); }

.btn-outline-primary {
    color: var(--brand-primary);
    border: 2px solid var(--brand-primary);
}

.btn-outline-primary:hover {
    background: var(--brand-primary);
    color: #fff;
}

.feature-box {
    position: relative;
    padding: 28px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.06);
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--brand-primary), var(--brand-secondary));
    transition: height 0.35s ease;
}

.feature-box:hover::before { height: 100%; }

.feature-box h3 { color: var(--brand-primary); }

/* Footer - fixed and high contrast for Quick Links */
.footer {
    position: relative;
    background: linear-gradient(180deg, #16232b 0%, var(--brand-dark) 100%);
    color: rgba(255,255,255,0.95);
    padding: 48px 0 24px;
    margin-top: 60px;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-primary), var(--brand-secondary));
}

.footer h5 {
    color: var(--brand-secondary);
    font-weight: 700;
    margin-bottom: 14px;
}

.footer p { color: rgba(255,255,255,0.9); line-height: 1.7; }

.footer a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    transition: color 0.25s ease, transform 0.25s ease;
}

.footer a:hover { color: var(--brand-secondary); transform: translateX(4px); }

.footer ul { padding-left: 0; }
.footer ul li { margin-bottom: 10px; }

/* Section spacing and titles */
section { padding: 60px 0; }

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--brand-primary);
    margin-bottom: 28px;
    position: relative;
    padding-bottom: 8px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--brand-secondary);
    border-radius: 3px;
}

.text-center .section-title::after { left: 50%; transform: translateX(-50%); }

.lead { font-size: 1.1rem; color: #555; }

/* Small components */
.hotel-card .badge {
    background: linear-gradient(135deg, var(--brand-secondary), #d4b078);
    font-size: 0.8rem;
    padding: 6px 12px;
    border-radius: 18px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .hero-section { height: 420px; }
    .carousel-item img { height: 420px; }
    .section-title { font-size: 1.6rem; }
}