/* NAV LINKS */
.navbar-nav .nav-link {
    font-weight: 500;
    color: #222;
    padding: 0.5rem 1rem;
    transition: 0.3s;
}

/* HOVER */
.navbar-nav .nav-link:hover {
    color: #05676E; /* your green */
}

/* ACTIVE */
.navbar-nav .current-menu-item > a {
    color: #05676E;
    font-weight: 600;
}

/* REMOVE UNDERLINES */
.navbar-nav a {
    text-decoration: none;
    text-transform: uppercase;
}

.navbar {
    border-bottom: 1px solid #eee;
}

.site-logo {
    max-height: 60px;
    width: auto;
    display: block;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

@media (max-width: 991px) {

    .navbar-nav {
        width: 100%;
        margin-top: 1rem;
    }

    .navbar-nav .nav-item {
        width: 100%;
    }

    .navbar-nav .nav-link {
        display: block;
        padding: 0.75rem 1rem;
        border-bottom: 1px solid #eee;
    }

    .navbar-collapse {
        background: #fff;
        padding: 1rem;
        border-top: 1px solid #eee;
    }
}

.hero {
    position: relative;
    min-height: 400px;
    background: url('../images/pier-header.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4); /* dark overlay */
    z-index: 1;
}

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

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.25rem;
}

@media (max-width: 768px) {
    .hero {
        min-height: 300px;
        padding: 2rem 1rem;
    }

    .hero h1 {
        font-size: 2rem;
    }
}

/* Initial state */
.animate-slide-up {
    opacity: 0;
    transform: translateY(30px);
}

/* Active state */
.animate-slide-up.active {
    animation: slideUpFade 0.8s ease forwards;
}

/* Keyframes */
@keyframes slideUpFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Optional delay for stagger effect */
.delay-1 {
    animation-delay: 0.2s;
}

@keyframes slideUpFade {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


.top-bar {
    background: #05676E; /* green tone */
    color: #fff;
    font-size: 0.9rem;
    padding: 0.4rem 0;
}

.top-bar a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.top-bar a:hover {
    text-decoration: underline;
}

.top-bar-left i {
    font-size: 1.1rem;
}

.top-bar-right {
    display: flex;
    gap: 0.25rem;
    align-items: center;
}

@media (max-width: 768px) {

    .top-bar .container {
        flex-direction: column;
        gap: 0.25rem;
        text-align: center;
    }

}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.top-bar-right i {
    font-size: 0.9rem;
    opacity: 0.9;
}

.subpage-hero {
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
}

.subpage-hero h1 {
    font-size: 2.5rem;
}

.subpage {
    min-height: 60vh;
}

/* MAIN FOOTER */
.site-footer {
    background: #3f4650;
    color: #e5e7eb;
    font-size: 14px;
}

/* Logo */
.footer-logo {
    max-width: 120px;
}

/* Headings */
.site-footer h5 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
}

/* Accent line under headings */
.site-footer h5::after {
    content: '';
    display: block;
    width: 30px;
    height: 3px;
    background: #2d6a4f;
    margin-top: 6px;
}

/* Lists */
.site-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer li {
    margin-bottom: 6px;
}

/* Links */
.site-footer a {
    color: #cbd5e1;
    text-decoration: none;
}

.site-footer a:hover {
    color: #2d6a4f;
}

/* Bottom bar */
.footer-bottom {
    background: #2d6a4f;
    color: #fff;
    font-size: 13px;
}

/* MAIN FOOTER */
.site-footer {
    background: #373B44;
    color: #e5e7eb;
    font-size: 14px;
}

/* Logo */
.footer-logo {
    max-width: 120px;
}

/* Headings */
.site-footer h5 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
}

/* Accent line under headings */
.site-footer h5::after {
    content: '';
    display: block;
    width: 30px;
    height: 3px;
    background: #05676E;
    margin-top: 6px;
}

/* Lists */
.site-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer li {
    margin-bottom: 6px;
}

/* Links */
.site-footer a {
    color: #cbd5e1;
    text-decoration: none;
}

.site-footer a:hover {
    color: #05676E;
}

/* Bottom bar */
.footer-bottom {
    background: #05676E;
    color: #fff;
    font-size: 13px;
}

.scroll-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #05676E;
    color: #fff;
    border: none;
    padding: 10px 14px;
    border-radius: 6px;
    cursor: pointer;
}

.footer-bottom a {
    color: #fff;
    text-decoration: none;
    margin: 0 4px;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

.home-notice {
    background: #e0b45c;
    color: #222;
}

.home-content {
    background: #ffffff;
}

.home-content ul {
    list-style: none;    
}

.rental-category {
    font-weight: 600;
    margin-bottom: 10px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 5px;
}

.rental-list {
    background: #f3f3f3;
    border-radius: 6px;
    overflow: hidden;
}

.rental-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 15px;
    border-bottom: 1px solid #ddd;
}

.rental-item:last-child {
    border-bottom: none;
}

.price {
    background: #05676E;
    color: #fff;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.rental-category {
    font-weight: 600;
    margin-bottom: 10px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 5px;
}

/* List container */
.rental-list {
    border-radius: 6px;
    overflow: hidden;
}

/* Each row */
.rental-list .list-group-item {
    background: #f3f3f3;
    border: 1px solid #ddd;
    border-bottom: none;
}

.rental-list .list-group-item:last-child {
    border-bottom: 1px solid #ddd;
}

/* Price badge */
.price-badge {
    background: #05676E;
    color: #fff;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
}

.subpage-hero {
    position: relative;
    min-height: 300px;
    background: url('/wp-content/themes/sharonslinens/assets/images/beach-bg.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.subpage-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

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

.subpage-hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
}

@media (max-width: 768px) {

    .subpage-hero {
        min-height: 220px;
        padding: 2rem 1rem;
    }

    .subpage-hero h1 {
        font-size: 2rem;
    }

}
.subpage ul {
    list-style: none !important;
}

.review-box {
    background: #e5e5e5;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.review-box strong {
    display: block;
    margin-top: 10px;
}

.stars {
    color: #f4c542;
    margin-top: 5px;
}

.site-footer {
    background: #3f4650;
    color: #e5e7eb;
    font-size: 14px;
}

.footer-logo {
    max-width: 120px;
}

.site-footer h5 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
}

.site-footer h5::after {
    content: '';
    width: 30px;
    height: 3px;
    background: #05676E;
    display: block;
    margin-top: 6px;
}

.site-footer a {
    color: #fff;
    text-decoration: none;
}

.site-footer a:hover {
    color: #05676E;
}

.footer-bottom {
    background: #05676E;
    color: #fff;
}

.footer-bottom a {
    color: #fff;
    margin: 0 4px;
}

.gallery-img {
    border-radius: 6px;
    transition: 0.3s;
    cursor: pointer;
}

.gallery-img:hover {
    transform: scale(1.05);
}

.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.lightbox-img {
    max-width: 90%;
    max-height: 90%;
}

.gallery-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.gallery-preview {
    width: 80px;
    height: 80px;
    background: #f1f1f1;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.gallery-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.gallery-preview {
    width: 100px;
    height: 100px;
    min-width: 100px; /* 👈 prevents stretching */
    background: #f1f1f1;
    border: 1px solid #ddd;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}