/* GLOBAL */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #111827;
}

a {
    transition: all 0.2s ease;
}

.container {
    max-width: 1140px;
}

/* HEADER */
header {
    background-color: #15803d !important; /* green-700 */
}

header a:hover {
    opacity: 0.85;
}

/* HERO SECTION */
.hero-section {
    background: linear-gradient(135deg, #15803d, #22c55e);
    padding-top: 100px;
    padding-bottom: 100px;
}

.hero-section p:first-child {
    color: #bbf7d0;
    letter-spacing: 1px;
}

.hero-section h1 {
    font-weight: 800;
    line-height: 1.2;
}

.hero-section p {
    color: #dcfce7;
    max-width: 600px;
    margin: 0 auto;
}

.hero-section .btn-light {
    background-color: #ffffff;
    border: none;
}

.hero-section .btn-light:hover {
    background-color: #f0fdf4;
}

.hero-section .btn-outline-light:hover {
    background-color: #ffffff;
    color: #15803d;
}

/* BLOG SECTION */
#blog {
    background-color: #f9fafb;
}

#blog h2 {
    font-weight: 800;
}

.card {
    border-radius: 18px;
    border: 1px solid #f1f5f9;
    transition: all 0.25s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.card h5 {
    font-size: 1.05rem;
    line-height: 1.4;
}

.card p {
    line-height: 1.6;
}

.card a:hover {
    color: #15803d !important;
}

/* BADGES */
.badge {
    font-size: 11px;
    padding: 6px 10px;
    border-radius: 999px;
    font-weight: 600;
}

/* Custom badge colors */
.bg-success-subtle {
    background-color: #dcfce7 !important;
    color: #166534 !important;
}

.bg-purple {
    background-color: #f3e8ff;
    color: #6b21a8;
}

.bg-primary-subtle {
    background-color: #dbeafe !important;
    color: #1e40af !important;
}

.bg-indigo {
    background-color: #e0e7ff;
    color: #3730a3;
}

.bg-amber {
    background-color: #fef3c7;
    color: #92400e;
}

/* BUTTONS */
.btn-success {
    background-color: #15803d;
    border: none;
}

.btn-success:hover {
    background-color: #166534;
}

.btn-light {
    border-radius: 999px;
}

.btn-outline-light {
    border-radius: 999px;
}

/* GUEST SECTION */
.guest-box {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border: 1px solid #bbf7d0;
}

.guest-box h2 {
    font-weight: 800;
}

.guest-box ul li {
    margin-bottom: 10px;
    color: #374151;
    font-size: 14px;
}

.guest-box ul li::before {
    content: "✓ ";
    color: #22c55e;
    font-weight: bold;
}

/* RIGHT CARD */
.guest-box .card {
    border-radius: 16px;
    border: 1px solid #dcfce7;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.guest-box .card p {
    font-size: 14px;
    margin-bottom: 12px;
}

/* ABOUT SECTION */
#about {
    border-top: 1px solid #f1f5f9;
}

#about h3 {
    font-weight: 800;
}

/* FOOTER */
footer {
    background-color: #14532d;
    color: #bbf7d0;
}

footer a:hover {
    color: #ffffff !important;
}

/* RESPONSIVE TWEAKS */
@media (max-width: 768px) {
    .hero-section {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .hero-section h1 {
        font-size: 2rem;
    }
}