/* General Styles */
:root {
    --primary-color: #e53a3d;
    --dark-color: #343a40;
    --light-color: #f8f9fa;
}

body {
    font-family: 'Montserrat', sans-serif;
}

body, html {
    overflow-x: hidden;
}

/* Top Bar */
.top-bar {
    border-radius: 0;
    background-color: var(--primary-color) !important;
}

.top-bar a {
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
}

.top-bar a:hover {
    opacity: 0.8;
}

/* Navigation */
.navbar {
    padding: 0;
    font-weight: 500;
    background-color: #000 !important;
}

.navbar-brand img {
    transition: transform 0.3s ease;
    height: 125px !important;
}

.nav-item {
    padding: 0.5rem 1rem !important;
}

.nav-link {
    padding: 0.5rem 0 !important;
    font-weight: 500;
    transition: color 0.3s ease;
    color: #fff !important;
    font-size: 1.1rem;
}

.nav-link.active {
    font-weight: 700;
    border-bottom: 3px solid var(--primary-color);
}

.navbar .btn-danger {
    background-color: transparent !important;
    border-color: transparent !important;
    border-radius: 0;
    padding: 0.5rem 1rem;
    font-weight: 500;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #fff !important;
}

.navbar .phone-icon {
    width: 32px;
    height: 32px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar .phone-icon i {
    font-size: 0.9rem;
    color: #fff;
}

.navbar .phone-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.navbar .phone-number {
    font-weight: 700;
}

.navbar .btn-danger:hover {
    background-color: transparent !important;
    border-color: transparent !important;
    box-shadow: none;
}

/* Hero Section */
.hero-slider {
    position: relative;
    height: 80vh;
    overflow: hidden;
}

.hero-slide {
    position: relative;
    height: 80vh;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-content .container {
    position: relative;
    z-index: 2;
}

.hero-text-overlay {
    background: rgba(0, 0, 0, 0.6);
    max-width: 600px;
    margin-left: 0;
    border-radius: 15px;
}

.hero-text-overlay .slick-slide {
    padding: 3rem;
}

.hero-text-overlay .slick-dots {
    bottom: 0.75rem !important;
}

.hero-text-overlay .slick-dots li button:before {
    font-size: 8px !important;
}

.hero-text-overlay h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
    color: #fff;
}

.hero-text-overlay p {
    color: #fff;
    margin-bottom: 2.25rem;
}

.hero-text-overlay .btn-danger {
    font-size: 0.9rem;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 500;
    letter-spacing: 1px;
}

.hero-text-overlay .btn-danger:hover {
    background-color: #d32f2f !important;
    border-color: #d32f2f !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.hero-slider-wrapper {
    width: auto;
    display: inline-block;
    position: relative;
}

.hero-slider-wrapper .slider-arrow {
    background: none;
    border: none;
    position: absolute;
    top: 42%;
    color: #ddd;
    font-size: 35px;
    opacity: 0;
    transition: .35s;
}

.hero-slider-wrapper:hover .slider-arrow {
    opacity: 0.7;
}

.hero-slider-wrapper .slider-arrow:hover {
    opacity: 1;
}

.hero-slider-wrapper .slider-arrow-prev {
    left: 0;
}

.hero-slider-wrapper .slider-arrow-next {
    right: 0;
}

.slick-dots li button:before {
    color: #fff;
    opacity: 0.5;
}

.slick-dots li.slick-active button:before {
    color: var(--primary-color);
    opacity: 1;
}

.slick-prev,
.slick-next {
    z-index: 1;
}

.slick-prev:before,
.slick-next:before {
    color: #fff;
    font-size: 30px;
}

/* Info Section */
.info-section {
    background-color: #fff;
    padding: 4rem 0;
}

.info-column {
    padding: 2rem;
    position: relative;
}

.info-column h3 {
    color: #000;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-weight: 600;
}

.info-column p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Reusable Button Class */
.primary-btn {
    font-size: 0.9rem;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 500;
    letter-spacing: 1px;
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.primary-btn:hover {
    background-color: #d32f2f !important;
    border-color: #d32f2f !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Weather Advisory */
.weather-advisory {
    padding: 4rem 0;
    background-color: var(--light-color);
}

.weather-advisory .row {
    align-items: center;
    min-height: 500px;
}

.weather-advisory h3 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2.5rem;
    color: #000;
}

.weather-advisory p {
    color: #666;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.weather-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
}

.weather-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    color: #333;
}

.weather-list li i {
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--primary-color);
    font-weight: bold;
}

.weather-list li a {
    color: var(--primary-color);
    font-weight: bold;
}

.weather-advisory-text-wrap {
    padding-left: 35px;
}

/* Update existing button styles */
.btn-danger {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

/* Station Cards */
.station-card {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.station-card h4 {
    color: #000;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.station-card p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.25;
    min-height: 50px;
}

.station-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

/* Chief's Message */
.chiefs-message {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../assets/images/rvfd-homepage-bg-2.jpg');
    background-size: cover;
    background-position: center;
}

.chiefs-message-heading {
    color: #fff;
    font-weight: 800;
}

.message-card {
    background: white;
    border-radius: 15px;
}

.message-card img {
    border-radius: 8px;
}

.message-card h4 {
    font-weight: 600;
}

.chiefs-message-text-wrap {
    display: flex;
    align-items: center;
}

/* Footer */
footer {
    background-color: var(--dark-color);
}

footer img {
    height: 80px !important;
}

footer h5 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

footer ul li {
    margin-bottom: 0.5rem;
}

footer a {
    text-decoration: none;
    transition: opacity 0.3s ease;
}

footer a:hover {
    opacity: 0.8;
}

/* Update social icons in footer */
footer .social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

footer .social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

/* Chief's Message */
.default-section {
    padding: 4rem 0;
}

.default-heading {
    font-weight: 800;
    color: #000;
}

.default-image {
    border-radius: 15px;
    width: 100%;
}

.bg-light {
    background-color: var(--light-color);
}

/* Animations */
.btn {
    transition: all 0.3s ease;
}

.btn-danger:hover {
    background-color: #d32f2f !important;
    border-color: #d32f2f !important;
}

.weather-images {
    position: relative;
    margin-bottom: 2rem;
}

.weather-images img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}

.img-white-border {
    border: 20px solid #fff;
}

.weather-images img:first-child {
    width: 100%;
}

.weather-images img:last-child {
    position: absolute;
    width: 40%;
    bottom: 0;
    left: 0;
}

/* Fire Stations */
.stations {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../assets/images/rvfd-homepage-bg-1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
}

.stations h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: #fff;
}

.station-card {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
}

.board-member-img {
    object-fit: cover;
}
.board-member-title {
    color: #222;
}
.board-btn-red {
    background: #D32F2F;
    color: #fff;
    border-radius: 13px;
    width: 20%;
    line-height: 1.15;
    padding: 15px 35px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}
.board-btn-red:hover {
    background: #b71c1c;
    color: #fff;
}
.board-link-blue {
    color: #1976d2;
    text-decoration: underline;
}
.board-notice-text {
    font-size: 15px;
    color: #222;
}
