* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Arial, sans-serif;
}
body {
    background: #f4f6f8;
}
button, a, .card, .arrow {
    transition: all 0.25s ease;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #2f8fa6;
    padding: 0px 40px;
    color: white;
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.navbar a {
    color: white;
    margin-left: 25px;
    text-decoration: none;
    position: relative;
}
.navbar a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0%;
    height: 2px;
    background: white;
    transition: 0.3s;
}
.navbar a:hover::after {
    width: 100%;
}
.hero {
    height: 65vh;
    background: url('Images/Emmett-Idaho-1.png') center/cover no-repeat;
}
.hero-overlay {
    background: rgba(0,0,0,0.55);
    height: 100%;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    text-align: center;
}
.hero-btn {
    padding: 14px 32px;
    background: #2f8fa6;
    border: none;
    border-radius: 8px;
    color: white;
    cursor: pointer;
}
.hero-btn:hover {
    background: #256f82;
    transform: translateY(-3px) scale(1.03);
}
.quick-actions {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    padding: 40px;
}
.quick-actions > div {
    display: flex;
    align-items: stretch;
}
.card {
    background: #3a9fb9;
    color: white;
    padding: 12px 16px;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    flex: 1;
}
.card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}
.card.dark {
    background: black;
}
.content {
    display: flex;
    justify-content: center;
    padding: 60px 20px;
}
.content-inner {
    display: grid;
    grid-template-columns: 420px 420px;
    gap: 60px;
}
.links, .gallery {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: 0.3s;
}
.links:hover, .gallery:hover {
    transform: translateY(-5px);
}
.link-grid {
    display: grid;
    grid-template-columns: repeat(2, 150px);
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}
.link-grid button {
    background: #3a9fb9;
    border: none;
    padding: 10px;
    color: white;
    border-radius: 6px;
    cursor: pointer;
}
.link-grid button:hover {
    background: #2f8fa6;
    transform: scale(1.05);
}
.slider {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}
.slides {
    position: relative;
    height: 250px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
.page-slider {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
    max-width: 900px;       
    margin: 40px auto;      
    padding: 0 20px;        
}
.page-slider .slides {
    height: 450px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.slide {
    position: absolute;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    opacity: 0;
    transform: scale(0.98);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.slide:first-child {
    opacity: 1;
    transform: scale(1);
}
.arrow {
    background: #2f8fa6;
    color: white;
    border: none;
    font-size: 22px;
    padding: 12px 16px;
    cursor: pointer;
    border-radius: 8px;
}
.arrow:hover {
    background: #256f82;
    transform: scale(1.1);
}
.page-title {
    text-align: center;
    padding: 60px 20px 20px;
}
.page-title h1 {
    font-size: 42px;
    color: #2f8fa6;
    letter-spacing: 1px;
}
.featured-image-section {
    display: flex;
    justify-content: center;
    padding: 20px 20px;
}
.featured-image {
    max-width: 450px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    transition: 0.3s ease;
    object-fit: cover;
}
.featured-image:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 50px rgba(0,0,0,0.25);
}
.footer-popup {
    background: #2f8fa6;
    color: white;
    padding: 50px 20px;
    margin-top: 80px;
}
.footer-content {
    max-width: 800px;
    margin: auto;
    text-align: center;
}
.footer-socials {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 25px;
}
.footer-socials img {
    width: 45px;
    transition: 0.3s;
}
.footer-socials img:hover {
    transform: scale(1.2) rotate(5deg);
}
.dropdown-card {
    position: relative;
    display: flex;
    flex-direction: column;
}
.dropdown-btn {
    width: 100%;
    background: #3a9fb9;
    border: none;
    color: white;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    padding: 12px 16px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.25s ease;
}
.dropdown-btn:hover {
    background: #256f82;
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}
.dropdown-menu {
    display: block;
    position: absolute;
    top: 60px;
    width: 100%;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}
.dropdown-menu.show {
    max-height: 300px;
    opacity: 1;
    transform: translateY(0);
}
.dropdown-menu a {
    display: block;
    padding: 12px;
    text-decoration: none;
    color: #333;
}
.dropdown-menu a:hover {
    background: #3a9fb9;
    color: white;
}
@media (max-width: 768px) {
    .hero {
        height: 50vh;
    }
    .hero-overlay h1 {
        font-size: 24px;
    }
    .hero-overlay p {
        font-size: 14px;
    }
    .hero-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    .quick-actions {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 20px;
    }
    .card {
        padding: 10px 12px;
        font-size: 14px;
    }
    .content {
        padding: 30px 10px;
    }
    .content-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .page-title {
        padding: 30px 15px 15px;
    }
    .page-title h1 {
        font-size: 28px;
    }
    .featured-image-section {
        padding: 15px 10px;
    }
    .featured-image {
        max-width: 100%;
    }
    .page-slider {
        grid-template-columns: 1fr;
        gap: 10px;
        max-width: 100%;
        padding: 0 10px;
        margin: 20px auto;
    }
    .page-slider .slides {
        height: 260px;
    }
    .arrow {
        padding: 10px 12px;
        font-size: 18px;
    }
    .links, .gallery {
        padding: 20px;
    }
    .link-grid {
        grid-template-columns: repeat(2, 100px);
        gap: 8px;
    }
    .link-grid button {
        padding: 8px;
        font-size: 13px;
    }
    .footer-popup {
        padding: 30px 15px;
        margin-top: 40px;
    }
    .footer-content h2 {
        font-size: 18px;
    }
    .footer-content p {
        font-size: 13px;
    }
    .footer-socials img {
        width: 35px;
    }
    .navbar {
        padding: 10px 15px;
        flex-direction: column;
        gap: 10px;
    }
    .navbar a {
        margin-left: 0;
        font-size: 14px;
    }
    .logo {
        font-size: 18px;
    }
    .dropdown-menu {
        top: 50px;
    }
}
@media (max-width: 480px) {
    .hero {
        height: 40vh;
    }
    .hero-overlay h1 {
        font-size: 18px;
        padding: 8px 16px;
    }
    .hero-overlay p {
        font-size: 12px;
        padding: 6px 12px;
    }
    .quick-actions {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 15px;
    }
    .card {
        padding: 12px 16px;
        font-size: 13px;
    }
    .page-title h1 {
        font-size: 22px;
        padding: 20px 10px;
    }
    .featured-image-section {
        padding: 10px 5px;
    }
    .page-slider {
        padding: 0 5px;
        margin: 15px auto;
    }
    .page-slider .slides {
        height: 200px;
    }
    .dropdown-btn {
        font-size: 14px;
        padding: 10px 12px;
    }
}

.logo {
    display: flex;
    align-items: center;
}
.logo img {
    height: 75px;
    width: auto;
    max-width: 200px;
}
