/*
 * Copyright (c) 2025. Perun Consulting Services FZ LLE
 */


.header {
    height: 40vh;
    background-size: cover;
    background-position: center;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.header h1 {
    /* background-color: rgba(0, 0, 0, 0.2); */
    font-size: 2rem;
    font-weight: bold;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    padding: 0.2rem;
    border-radius: 6px;
}

.header h2 {
    background-color: rgba(0, 0, 0, 0.2);
    font-size: 1.5rem;
    font-weight: bold;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    padding: 0.2rem;
    border-radius: 6px;
}

/* Card specific styling */
.card {
    width: 100%; /* Full width for each card */
    display: flex;
    flex-wrap: wrap;
    border: 1px lightgray solid;
}

.card.shadowed {
    box-shadow: 1px 1px 5px #999;
    border-radius: 5px;
}


.card-team {
    padding: 1rem;
    height: auto !important;
}

.team-contact {
    color: #2c0b0e;
}

.team-contact a {
    color: #2c0b0e;
    text-decoration: none;
    font-weight: 500;
}

.team-contact a:hover {
    color: #2c0b0e;
    font-weight: bold;
}

.team-contact i {
    position: relative;
    top: 0.1rem;
}

/* Circle styling for team member photos */
.team-photo {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
}

/* Styling for image part */
.card-img-section {
    overflow: hidden;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px 0 0 5px;
}

/* On small screens - Image on top, description below */
.card-body-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1rem;
}

.sticker-left {
    position: absolute;
    top: 5%;
    left: -9px;
    width: auto;
    height: 30%;
    z-index: 99;
}

.sticker-top {
    position: absolute;
    top: -1rem;
    left: 0;
    width: 16rem;
    height: auto;
    z-index: 99;
}

.sticker-txt {
    position: absolute;
    top: 10%;
    left: 1rem;
    z-index: 100;
    text-align: center;
    font-size: 1.6rem;
    font-weight: bold;
    color: #ffdd00;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    font-family: Calibri, sans-serif;
}

.sticker-txt-top {
    position: absolute;
    top: -0.75rem;
    left: 3.5rem;
    z-index: 100;
    text-align: center;
    font-size: 1.6rem;
    font-weight: bold;
    color: #FFEFC1;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    font-family: Calibri, sans-serif;
}

.sticker-txt-top-small {
    position: absolute;
    top: -0.2rem;
    left: 3.5rem;
    z-index: 100;
    text-align: center;
    font-size: 1.3rem;
    font-weight: bold;
    color: #FFEFC1;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    font-family: Calibri, sans-serif;
}

@media (max-width: 576px) {
    .sticker-left {
        width: 35%;
        height: auto;
    }

    .sticker-txt {
        font-size: 1.2rem;
    }

    .lead {
        font-size: 1rem;
    }
}

/* Adjustments for medium and larger screens */
@media (min-width: 768px) {
    .card {
        flex-direction: row; /* Left to right alignment */
        height: 500px;
    }

    .card-img-section {
        flex: 0 0 70%; /* Image takes 40% of width */
        height: 100%;
    }

    .card-body-section {
        flex: 1; /* Description area takes the remaining space */
        padding: 2rem;
    }

    .card-body-section .card-title {
        text-align: center;
    }

    .header {
        height: 40vh;
    }

    .header h1 {
        font-size: 5rem;
    }

    .header h2 {
        font-size: 3rem;
    }

    body {
        background-color: mintcream;
    }
}

.btn-success {
    --bs-btn-color: #fff;
    --bs-btn-bg: rgba(25, 135, 118, 0.76);
    --bs-btn-border-color: #198754;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #00d5d0;
    --bs-btn-hover-border-color: #00d5d0;
    --bs-btn-focus-shadow-rgb: 60, 153, 110;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #00b2af;
    --bs-btn-active-border-color: #00b2af;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #198754;
    --bs-btn-disabled-border-color: #198754;
}

.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #009ada;
    --bs-btn-border-color: #009ada;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #0074a8;
    --bs-btn-hover-border-color: #0074a8;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #009ada;
    --bs-btn-active-border-color: #0a53be;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #afd3e7;
    --bs-btn-disabled-bg: #0d6efd;
    --bs-btn-disabled-border-color: #0d6efd;
}

/* Card descriptions with vertical layout adjustments */
.resort-card .card-body {
    flex-grow: 1;
}
@media (min-width: 768px) {
    .resort-card {
        flex-direction: row; /* Horizontal layout for large screens */
    }
}

/* Custom class for card styling */
.custom-card {
    border: 1px solid #ccc;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    padding: 15px;
    display: flex; /* Ensure left-to-right alignment of elements */
    align-items: center; /* Vertically align content */
    height: 100%; /* Ensure equal height */
}

/* Style for the circle with the initial letter */
.custom-circle {
    flex: 0 0 20%; /* Fixed width of 25% of the card */
    aspect-ratio: 1; /* Makes it a perfect circle */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    color: white;
    font-weight: bold;
}

/* Container for the right-side content */
.custom-card-content {
    flex: 1; /* Take up the remaining 75% of the card width */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.custom-rating {
    text-align: right;
}

/* Style for the star icons (rating row) */
.custom-rating img {
    width: 16px;
    height: 16px;
}

/* Style for the review text */
.custom-review-body {
    font-size: 12px;
    color: #555;
    text-align: justify;
    line-height: 1.5;
    padding-left: 10px;
}

/* Style for the reviewer text */
.custom-reviewer {
    text-align: right;
}

.custom-reviewer a {
    font-size: 12px;
    font-weight: bold;
    text-decoration: none;
    color: #333;
}

/* ==========================================================================
   CENTRALIZED STYLES (moved from inline and embedded styles)
   ========================================================================== */

/* ------------------------------------------------------------------------- */
/* Utility Classes                                                           */
/* ------------------------------------------------------------------------- */

/* Position utilities */
.pos-relative {
    position: relative;
}

/* Text utilities for cards */
.card-text-justified {
    font-size: 1.1rem;
    text-align: justify;
}

/* Font size utility for hero subtitle */
.font-size-80 {
    font-size: 80%;
}

/* Vertical align utility */
.valign-middle {
    vertical-align: middle;
}

/* ------------------------------------------------------------------------- */
/* Destination Page Header Styles                                            */
/* ------------------------------------------------------------------------- */

/* Base destination header - used on all destination pages */
.header-destination {
    height: 45vh;
    background-size: cover;
    background-position: center;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.header-destination h1 {
    font-size: 3rem;
    background-color: rgba(0, 0, 0, 0.1);
    text-shadow: 3px 3px 10px black;
    padding: 0.5rem 1rem;
    border-radius: 6px;
}

@media (max-width: 768px) {
    .header-destination {
        height: 40vh;
    }
    .header-destination h1 {
        font-size: 2rem;
    }
}

/* ------------------------------------------------------------------------- */
/* Destination-specific header backgrounds                                   */
/* ------------------------------------------------------------------------- */

/* Armenia */
.header-armenia {
    background-image: url('https://d117ew1ll41gas.cloudfront.net/images/tatev-armenia-1920.webp');
}
@media (max-width: 768px) {
    .header-armenia {
        background-image: url('https://d117ew1ll41gas.cloudfront.net/images/hayravank-armenia-540x360.webp');
    }
}

/* Azerbaijan */
.header-azerbaijan {
    background-image: url('https://d117ew1ll41gas.cloudfront.net/images/baku-2-2000x450.webp');
}
@media (max-width: 768px) {
    .header-azerbaijan {
        background-image: url('https://d117ew1ll41gas.cloudfront.net/images/baku-ha-center-540x360.webp');
    }
}

/* Bali */
.header-bali {
    background-image: url('https://d117ew1ll41gas.cloudfront.net/images/wat-arun-temple-bangkok-1920x800.webp');
    height: 60vh;
}
@media (max-width: 768px) {
    .header-bali {
        height: 40vh;
    }
}

/* Bosnia */
.header-bosnia {
    background-image: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url('https://d117ew1ll41gas.cloudfront.net/images/bosnia-mostar-mq-1920.webp');
    background-size: cover, cover;
}
@media (max-width: 768px) {
    .header-bosnia {
        background-image: url('https://d117ew1ll41gas.cloudfront.net/images/sarajevo-bridge-540x360.webp');
    }
}

/* Egypt */
.header-egypt {
    background-image: url('https://d117ew1ll41gas.cloudfront.net/images/egypt-luxor-1920.webp');
}
@media (max-width: 768px) {
    .header-egypt {
        height: 40vh;
    }
}

/* Georgia */
.header-georgia {
    background-image: url('https://d117ew1ll41gas.cloudfront.net/images/tbilisi-1920.webp');
}
@media (max-width: 768px) {
    .header-georgia {
        background-image: url('https://d117ew1ll41gas.cloudfront.net/images/bridge-tbilisi-night-540x360.webp');
    }
}

/* Kazakhstan */
.header-kazakhstan {
    background-image: url('https://d117ew1ll41gas.cloudfront.net/images/kazakhstan-republic-palace-1200.webp');
}

/* Malaysia */
.header-malaysia {
    background-image: url('https://d117ew1ll41gas.cloudfront.net/images/langkawi-eco-resort-1920x800.webp');
}
@media (max-width: 768px) {
    .header-malaysia {
        background-image: url('https://d117ew1ll41gas.cloudfront.net/images/kuala-lumpur-cityscape-600x400.webp');
    }
}

/* Maldives */
.header-maldives {
    background-image: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url('https://d117ew1ll41gas.cloudfront.net/images/maldives-overw-1920.webp');
    background-size: cover, cover;
}
@media (max-width: 768px) {
    .header-maldives {
        background-image: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url('https://d117ew1ll41gas.cloudfront.net/images/maldives-family-540x360.webp');
        background-size: cover, cover;
    }
}

/* Singapore */
.header-singapore {
    background-image: url('https://d117ew1ll41gas.cloudfront.net/images/panorama-singapore-1920.webp');
}
@media (max-width: 768px) {
    .header-singapore {
        background-image: url('https://d117ew1ll41gas.cloudfront.net/images/singapore-540x360.webp');
        height: 30vh;
    }
}

/* Sri Lanka */
.header-srilanka {
    background-image: url('https://d117ew1ll41gas.cloudfront.net/images/sri-lankan-leopard-1920.webp');
    height: 60vh;
}
@media (max-width: 768px) {
    .header-srilanka {
        height: 40vh;
    }
}

/* Thailand */
.header-thailand {
    background-image: url('https://d117ew1ll41gas.cloudfront.net/images/wat-arun-temple-bangkok-1920x800.webp');
}
@media (max-width: 768px) {
    .header-thailand {
        background-image: url('https://d117ew1ll41gas.cloudfront.net/images/bangkok-temple-540x360.webp');
    }
}

/* Turkiye */
.header-turkiye {
    background-image: url('https://d117ew1ll41gas.cloudfront.net/images/galata-1-wide.webp');
}
@media (max-width: 768px) {
    .header-turkiye {
        background-image: url('https://d117ew1ll41gas.cloudfront.net/images/istiklal-540x360.webp');
    }
}

/* Cruises */
.header-cruise {
    background-image: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url('https://d117ew1ll41gas.cloudfront.net/images/maldives-resort-1920x512.webp');
    background-size: cover, cover;
}
@media (max-width: 768px) {
    .header-cruise {
        background-image: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url('https://d117ew1ll41gas.cloudfront.net/images/beach-600x400.webp');
        background-size: cover, cover;
    }
}

/* UAE Staycations */
.header-uaestays {
    background-image: url('https://d117ew1ll41gas.cloudfront.net/images/burj-al-arab-1920.webp');
    height: 40vh;
}
@media (max-width: 768px) {
    .header-uaestays {
        background-image: url('https://d117ew1ll41gas.cloudfront.net/images/dubai-sunset-400.webp');
    }
}

/* Uzbekistan */
.header-uzbekistan {
    background-image: url('https://d117ew1ll41gas.cloudfront.net/images/uzbek-mosque-1920.webp');
    height: 60vh;
}
@media (max-width: 768px) {
    .header-uzbekistan {
        height: 40vh;
    }
}

/* Vietnam */
.header-vietnam {
    background-image: url('https://d117ew1ll41gas.cloudfront.net/images/vietnam-banner-1920.webp');
}
@media (max-width: 768px) {
    .header-vietnam {
        background-image: url('https://d117ew1ll41gas.cloudfront.net/images/lotus-hanoi-540x360.webp');
    }
}

/* Zanzibar */
.header-zanzibar {
    background-image: url('https://d117ew1ll41gas.cloudfront.net/images/beach-zanzibar-1920.webp');
}
@media (max-width: 768px) {
    .header-zanzibar {
        background-image: url('https://d117ew1ll41gas.cloudfront.net/images/zan-sunset-cruise-600x400.webp');
    }
}

/* ------------------------------------------------------------------------- */
/* About Page Header                                                         */
/* ------------------------------------------------------------------------- */

.header-about {
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('https://d117ew1ll41gas.cloudfront.net/images/woman-sunset-lounge-1920.webp');
    background-size: cover;
    background-position: center;
    height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.header-about h1 {
    font-size: 3rem;
    background-color: transparent;
    text-shadow: 3px 3px 10px black;
    padding: 0.5rem 1rem;
    border-radius: 6px;
}

@media (max-width: 768px) {
    .header-about {
        height: 40vh;
        background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('https://d117ew1ll41gas.cloudfront.net/images/woman-lounge-520.webp');
    }
    .header-about h1 {
        font-size: 2rem;
    }
}

/* About page specific */
.values-icon {
    font-size: 3rem;
    color: #007bff;
}

.team-member img {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    object-fit: cover;
}

/* ------------------------------------------------------------------------- */
/* Privacy Policy Page Header                                                */
/* ------------------------------------------------------------------------- */

.header-privacy {
    height: 50vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('https://d117ew1ll41gas.cloudfront.net/images/travel-privacy-1920.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.header-privacy h1 {
    font-size: 3rem;
    background-color: transparent;
    text-shadow: 3px 3px 10px black;
    padding: 0.5rem 1rem;
    border-radius: 6px;
}

@media (max-width: 768px) {
    .header-privacy {
        height: 40vh;
    }
    .header-privacy h1 {
        font-size: 2rem;
    }
}

/* ------------------------------------------------------------------------- */
/* Request/Thank You Page Header Image                                       */
/* ------------------------------------------------------------------------- */

.header-image {
    background: url('https://d117ew1ll41gas.cloudfront.net/images/sunbathing-beach-1920.webp') no-repeat center center;
    background-size: cover;
    height: 40vh;
}

.header-image-60 {
    height: 60vh;
}

/* Request form styling */
.form-div {
    width: 100%;
    padding: 1rem;
    border: 1px solid #c0c0c0;
    border-radius: 5px;
    align-content: center;
}

@media (min-width: 768px) {
    .form-div {
        width: 75%;
        background-color: #e7f5ff;
    }
}

/* ------------------------------------------------------------------------- */
/* Card Padding for Destination Pages                                        */
/* ------------------------------------------------------------------------- */

.card-padded {
    padding: 1rem;
}

.card-padded-auto {
    padding: 1rem;
    height: auto;
}

/* ------------------------------------------------------------------------- */
/* Review Circle Colors (utility classes for background colors)              */
/* ------------------------------------------------------------------------- */

.bg-review-green {
    background-color: #4CAF50;
}

.bg-review-orange {
    background-color: #FF6F00;
}

.bg-review-blue {
    background-color: #2196F3;
}

.bg-review-pink {
    background-color: #E91E63;
}

.bg-review-purple {
    background-color: #9C27B0;
}

.bg-review-teal {
    background-color: #009688;
}

/* ------------------------------------------------------------------------- */
/* Cruise Page Styles                                                        */
/* ------------------------------------------------------------------------- */

/* Area selector strip */
.cruise-area-selector {
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
}

/* Area button styling */
.cruise-area-btn {
    background-color: #fff;
    border: 2px solid #009ada;
    color: #009ada;
    font-weight: 500;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    transition: all 0.2s ease;
}

.cruise-area-btn:hover {
    background-color: #009ada;
    color: #fff;
}

.cruise-area-btn.active {
    background-color: #009ada;
    color: #fff;
    box-shadow: 0 2px 8px rgba(0, 154, 218, 0.4);
}

/* Loading state */
.cruise-loading {
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* No data message styling */
.cruise-no-data {
    text-align: center;
    padding: 3rem 1rem;
    color: #6c757d;
}
