/* Sorry - just an initial overide to see if I can make the sites similar. The goal is to have style.css be a
copy of the bootstrap styles.css page. I'll delete from style.css (the WorPress one) any duplicates found here.
What we're left with will be the stuff we need to integrate back into this bootstrap version. */

:root {
    --primary: #2c3e50;
    --secondary: #daa520;
    --tertiary: #c8a97e; /* gold */
    --light: #f9f9f9;
    --dark: #212529;
}

body {
    font-family: 'Lato', sans-serif;
    color: #333;
    background-color: var(--light);
}

h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.divider {
    width: 80px;
    height: 3px;
    background-color: var(--tertiary);
    margin: 1.5rem auto;
}

.accordion-header {
    font-family: 'Lato', sans-serif;
}

.custom-logo {
    border: 1px #cccccc solid;
    border-radius: 7px;
}

/* Navigation */

.navbar {
    /*background-color: var(--primary); !* footer *!*/
    background-color: #1a2c3b;
}

.navbar-brand {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
}

.navbar-brand,
.nav-link {
    color: var(--light);
    font-weight: 500;
    margin: 0 10px;
    transition: all 0.3s;
}

.nav-link:hover {
    color: #ffc107;
}

/* Sections */

.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/hero-2.webp') center/cover no-repeat;
    height: 60vh;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.hero-section h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-section p {
    font-size: 1.3rem;
    font-weight: 400;
    max-width: 700px;
    margin: 20px auto;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

/* Constrain all card images to max height of 240 (most are 400 high) */
.custom-card-img-top img {
    height: 250px;
    object-fit: cover;
    border-top-left-radius: .375rem;
    border-top-right-radius: .375rem;
    width: 100%;
    display: block;
}

/* Constrain all card images to max height of 240 (most are 400 high) */
.card-img-top {
    height: 250px;
    object-fit: cover;
}

.home-dining-card img {
    border-top-left-radius: .375rem;
    border-bottom-left-radius: .375rem;
    display: block;
    width: 100%;
    object-fit: cover;
    max-width: 100%;
}

.wp-block-image {
    margin: 0 !important;
}

.hero-facilities {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../img/function-room.webp') center/cover no-repeat;
    /*https://pixabay.com/photos/meeting-meet-office-table-space-4565703/*/
}
.hero-spa {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/day-spa-tub.webp') center/cover no-repeat;
    /*https://www.pexels.com/photo/woman-in-green-tube-top-sitting-on-white-ceramic-bathtub-6724383/*/
}

/* Home */

.home-page {

    .blank-nothing {
        width: 0;
    }

    .hero-section {
        height: 70vh;
        background-size: cover;
        background-position: center;
        position: relative;
    }

    .hero-overlay {
        background-color: rgba(0,0,0,0.4);
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .text-shadow {
        text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    }

    .room-card {
        transition: transform 0.3s;
    }

    .room-card:hover {
        transform: translateY(-10px);
    }

    .amenity-icon {
        font-size: 2.5rem;
        color: #17a2b8;
    }

    .hero-home {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/hero-2.webp') center/cover no-repeat;
}
}

.custom-btn {
    display: inline-block;
}


/* Dining */

.hero-dining {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/salmon.webp') center/cover no-repeat;
}

.menu-card {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.menu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.signature-dish {
    position: relative;
    overflow: hidden;
}

.signature-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background-color: #c8a97e;
    color: white;
    padding: 5px 30px;
    transform: rotate(45deg);
    z-index: 10;
}

.chef-bio {
    background: #f3f0ea;
    padding: 3rem 0;
}

.testimonial-section {
    background: #f9f9f9;
    padding: 3rem 0;
}

/* Attractions */

.hero-attractions {
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('../img/ocean.webp') center/cover no-repeat;
    /*https://unsplash.com/photos/birds-eye-photography-of-people-near-white-boat-948Dftugtxo*/
}

.attraction-badge-custom {
    background-color: #2c3e50;
    color: white;
}

.attraction-card {
    border: none;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.attraction-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.booking-section {
    background-color: #f8f9fa;
}
.btn-booking {
    background-color: #2c3e50;
    color: white;
    border: none;
    padding: 10px 20px;
    margin-bottom: 8px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn-booking:hover {
    background-color: #1a2530;
    color: white;
}

.testimonial-card {
    border-left: 4px solid #2c3e50;
}


/* Footer */

.footer {
    background-color: var(--primary);
    color: white;
}

.footer-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.footer-link {
    display: block;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-email {
    display: inline-block;
}

.footer-link:hover {
    color: #7a9cc6;
    transform: translateX(3px);
}

.btn-gold {
    background-color: #c8a97e;
    color: white;
    border: none;
}

.btn-gold:hover {
    background-color: #b69a6e;
    color: white;
}

.social-icon {
    color: white;
    transition: all 0.3s;
}

.social-icon:hover {
    color: #7a9cc6;
}

.copyright {
    color: #aaa;
}


/* Quick implemetation of Spa styling */

.spa-page {

    .treatment-card {
        border: none;
        border-radius: 5px;
        overflow: hidden;
        transition: all 0.3s;
        margin-bottom: 30px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .treatment-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    }

    .treatment-card img {
        height: 200px;
        object-fit: cover;
    }

    .treatment-card .card-body {
        padding: 25px;
        display: flex;
        flex-direction: column;
    }

    .treatment-card .card-title {
        font-weight: 600;
        color: #122b40;
        margin-bottom: 15px;
    }

    .treatment-card .card-text {
        color: #666;
        margin-bottom: 20px;
        line-height: 1.6;
    }

    .price {
        font-weight: 700;
        color: #7a9cc6;
        font-size: 1.2rem;
    }

    .btn-book {
        background-color: #122b40;
        color: white;
        border: none;
        padding: 10px 25px;
        border-radius: 30px;
        transition: all 0.3s;
        margin-top: auto;
    }

    .btn-book:hover {
        background-color: #7a9cc6;
        transform: translateY(-3px);
    }

    .amenity-item {
        background-color: white;
        border-radius: 10px;
        padding: 30px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        height: 100%;
        transition: all 0.3s;
    }

    .amenity-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    .amenity-icon {
        font-size: 2.5rem;
        color: #7a9cc6;
        margin-bottom: 20px;
    }

    .testimonial {
        background-color: white;
        border-radius: 10px;
        padding: 30px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        margin-bottom: 30px;
    }

    .testimonial-text {
        font-style: italic;
        color: #555;
        line-height: 1.8;
        margin-bottom: 20px;
    }

    .client-name {
        font-weight: 600;
        color: #122b40;
    }

    .client-location {
        color: #7a9cc6;
        font-size: 0.9rem;
    }

    .cta-section {
        background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('img/wellness.webp') no-repeat center center;
        /* https://pixabay.com/photos/wellness-carafe-towels-white-3715861/ */
        background-size: cover;
        padding: 100px 0;
        color: white;
        text-align: center;
    }

    .cta-section h2 {
        font-family: 'Montserrat', sans-serif;
        font-size: 2.5rem;
        margin-bottom: 30px;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    }

    .btn-cta {
        background-color: #7a9cc6;
        color: white;
        border: none;
        padding: 15px 40px;
        font-size: 1.1rem;
        border-radius: 30px;
        transition: all 0.3s;
    }

    .btn-cta:hover {
        background-color: #122b40;
        transform: translateY(-3px);
    }

    .package-card {
        background-color: white;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        height: 100%;
        transition: all 0.3s;
    }

    .package-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

    .package-header {
        background-color: #122b40;
        color: white;
        padding: 20px 0;
        text-align: center;
    }

    .package-title {
        font-family: 'Montserrat', sans-serif;
        font-size: 1.8rem;
        margin-bottom: 10px;
    }

    .package-price {
        font-size: 2rem;
        font-weight: 700;
    }

    .package-price span {
        font-size: 1rem;
        font-weight: 400;
    }

    .package-features {
        padding: 30px;
    }

    .package-features ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .package-features li {
        margin-bottom: 15px;
        position: relative;
        padding-left: 30px;
        color: #555;
    }

    .package-features li:before {
        content: '\f00c';
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
        position: absolute;
        left: 0;
        color: #7a9cc6;
    }

    .therapists-section {
        background-color: #f9f9f9;
    }

    .therapist-card {
        background-color: white;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        margin-bottom: 30px;
        transition: all 0.3s;
    }

    .therapist-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

    .therapist-img {
        height: 300px;
        object-fit: cover;
    }

    .therapist-info {
        padding: 25px;
        text-align: center;
    }

    .therapist-name {
        font-family: 'Montserrat', sans-serif;
        font-weight: 600;
        color: #122b40;
        margin-bottom: 5px;
    }

    .therapist-title {
        color: #7a9cc6;
        font-style: italic;
        margin-bottom: 15px;
    }

    .booking-form {
        background-color: white;
        border-radius: 10px;
        padding: 40px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .form-control-spa {
        border-radius: 0;
        border: none;
        border-bottom: 1px solid #ddd;
        padding: 10px 5px;
        margin-bottom: 20px;
    }

    .form-control-spa:focus {
        box-shadow: none;
        border-color: #7a9cc6;
    }

    .form-label-spa {
        color: #122b40;
        font-weight: 500;
    }
} /* End Spa Page Styles */


/* Quick implemetation of Facilities styling */

.facilities-page {

        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 30px;
            color: var(--primary);
        }

        .facility-card {
            border: none;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            margin-bottom: 30px;
        }

        .facility-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        }

        .btn-primary {
            background-color: var(--primary);
            border-color: var(--primary);
        }

        .btn-primary:hover {
            background-color: #0a3d52;
            border-color: #0a3d52;
        }

        .feature-icon {
            font-size: 2rem;
            color: var(--secondary);
            margin-bottom: 15px;
        }

        .testimonial {
            background-color: #f8f9fa;
            padding: 30px;
            border-radius: 10px;
            margin-bottom: 30px;
        }

        .testimonial-author {
            font-weight: bold;
            color: var(--primary);
        }

        .cta-section {
            background-color: var(--primary);
            color: white;
            padding: 60px 0;
        }


        .facility-feature {
            margin-bottom: 30px;
        }

        .pricing-table {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }

        .pricing-table:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        }

        .pricing-header {
            background-color: var(--primary);
            color: white;
            padding: 20px;
            text-align: center;
        }

        .pricing-body {
            padding: 20px;
            background-color: white;
        }

        .price {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--primary);
        }

        .event-tag {
            background-color: var(--secondary);
            color: white;
            padding: 3px 10px;
            border-radius: 30px;
            font-size: 0.8rem;
            margin-right: 5px;
            display: inline-block;
            margin-bottom: 5px;
        }

        .request-form {
            background-color: #f8f9fa;
            padding: 30px;
            border-radius: 10px;
        }

        .virtual-tour-btn {
            position: absolute;
            bottom: 20px;
            right: 20px;
            background-color: rgba(255,255,255,0.8);
            border-radius: 50%;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            transition: all 0.3s ease;
        }

        .virtual-tour-btn:hover {
            background-color: var(--primary);
            color: white;
        }

        .capacity-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background-color: var(--primary);
            color: white;
            padding: 5px 15px;
            border-radius: 30px;
        }

    } /* End Facilities Page Styles */