/* General Styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    padding-top: 80px; /* Adjust as needed based on header height */
}

/* Hero Section */
#hero {
    background: linear-gradient(-45deg, #c1272d, #e74c3c, #c1272d, #b52a3b);
    background-size: 400% 400%;
    animation: heroBackground 10s ease infinite;
}

@keyframes heroBackground {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Buttons */
.btn-primary {
    background-color: #c1272d;
    border-color: #c1272d;
    color: #fff;
    transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #a52022;
    border-color: #a52022;
    transform: scale(1.05);
}

/* Section Spacing */
section {
    padding: 4rem 0;
}

/* Fade-In Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Navbar Styles */
.navbar-toggler {
    border: 1px solid #888; /* Thinner border */
    padding: 4px 6px;
    width: 28px; /* Adjust burger width */
    height: 28px; /* Adjust burger height */
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.navbar-toggler:focus, .navbar-toggler:active {
    border-color: #a52022; /* Follow theme color */
    outline: none;
    box-shadow: 0 0 0 2px rgba(194, 39, 45, 0.5); /* Softer focus effect */
}

/* Hover Effects for Links */
.nav-link {
    transition: color 0.3s ease, transform 0.3s ease;
}

.nav-link:hover {
    color: #a52022 !important; /* Hover theme color */
    transform: scale(1.05);
}

/* Solve for Burger Icon Size */
.navbar-toggler-icon {
    width: 18px; /* Reduced burger icon */
    height: 18px;
}