@import "../css/common.css";
@import "../css/icons/tabler-icons/tabler-icons.css";



/*** hero ***/
.hero-section {
    position: relative;
    height: 100vh;
    color: #fff;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('../Images/Background/hero-img.jpg') center center/cover no-repeat;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.85), rgba(0,0,0,0.2));
    z-index: 2;
}

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

.hero-subtitle {
    color: #EAA636;
    font-size: 28px;
    margin-bottom: 10px;
    font-family: 'TrajanPro-Regular';
}

.hero-title {
    color: #fff;
    font-size: 45px;
    font-weight: 700;
    line-height: 1.2;
    font-family: "Poppins", sans-serif;

}

.hero-title span {
    color: #EAA636;
    letter-spacing: 4px;
    font-size: 3rem;
}

.hero-desc {
    margin-top: 20px;
    max-width: 500px;
    color: #fff;
    font-family: 'TrajanPro-Regular';
}

.hero-buttons {
    margin-top: 30px;
    display: flex;
    align-items: center;
}

.hero-buttons .btn {
    background: #EAA636;
    border: none;
    padding: 12px 25px;
    font-weight: 600;
    margin-right: 20px;
}

.hero-stats {
    position: relative;
    bottom: 100px;
    width: 100%;
    z-index: 3;
}

.hero-stats h3 {
    font-size: 35px;
    color: #fff;
    font-family: "Poppins", sans-serif;
}

.hero-stats p {
    font-size: 15px;
    font-weight: 300;
    color: #ffffff;
}
.hero-stats .col:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.3);
}
.hero-stats h3::after {
    content: "+";
}



.hero-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--secondary);
}


/*** Facts ***/
.fact-item {
    transition: .3s;
}

.fact-item:hover {
    margin-top: -10px;
    background: #FFFFFF !important;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

/* WRAPPER */
.features-strip {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

/* ITEM */
.feature-item {
    text-align: center;
    color: #fff;
}

/* ICON */
.feature-icon {
    font-size: 28px;
    color: #EAA636;
    margin-bottom: 10px;
}

/* TEXT */
.feature-item p {
    font-size: 13px;
    letter-spacing: 1px;
    line-height: 1.5;
    margin: 0;
}

/* DIVIDER */
.feature-divider {
    width: 1px;
    height: 60px;
    background: rgb(234 166 54);
}

.feature-icon img {
    width: 30%;
}

/* ===== BRAND SECTION ===== */
/* SECTION */
.brands-section {
    background: #0a0a09;
    padding: 100px 0;
    color: #fff;
}

/* TITLE */
.brands-subtitle {
    color: #EAA636;
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-family: 'TrajanPro-Bold';
}

.brands-title {
    font-size: 3rem;
    font-weight: 600;
    font-family: 'TrajanPro-Bold';
    color: #fff;
}

/* WRAPPER */
.brands-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 0 50px;
}

/* CARD */
.brand-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.brand-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

/* OVERLAY */
.brand-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0.2));
}

/* CONTENT */
.brand-content {
    position: absolute;
    top: 50%;
    left: 40px;
    transform: translateY(-50%);
    max-width: 300px;
}

/* TITLE */
.brand-content h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* TEXT */
.brand-content p {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 20px;
}

/* BUTTON */
.brand-btn {
    display: inline-block;
    background: #EAA636;
    color: #fff;
    padding: 10px 20px;
    font-size: 13px;
    text-decoration: none;
    transition: 0.3s;
}

.brand-btn:hover {
    background: #fff;
    color: #0a0a09;
}
.brandLogo{
    height: auto !important;
}
/* HOVER ZOOM */
.brand-card:hover img {
    transform: scale(1.05);
    transition: 0.4s;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .brands-wrapper {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    .brand-content {
        left: 20px;
    }
}
/* ===== BOOKING ===== */
/* SECTION */
.booking-section {
    background: #0a0a09;
    padding: 100px 0;
    color: #fff;
}

/* TITLES */
.booking-subtitle {
    color: #EAA636;
    font-size: 1rem;
    letter-spacing: 2px;
    font-family: 'TrajanPro-Bold';
}

.booking-title {
    font-size: 3rem;
    margin-bottom: 40px;
    font-family: 'TrajanPro-Bold';
    color: #ffffff;
}

/* WRAPPER */
.booking-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
}

/* FORM */
.booking-form {
    border: 1px solid #EAA636;
    padding: 30px;
    border-radius: 8px;
    background: rgba(255,255,255,0.02);
}

/* INPUTS */
.booking-form label {
    font-size: 13px;
    margin-bottom: 5px;
    display: block;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    outline: none;
}

/* ROW */
.booking-form .row {
    display: flex;
    gap: 15px;
}

.booking-form .col {
    flex: 1;
}

/* BUTTON */
.booking-btn {
    width: 100%;
    padding: 12px;
    background: #EAA636;
    border: none;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.booking-btn:hover {
    background: #fff;
    color: #0a0a09;
}

/* INFO SIDE */
.booking-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 75px;
}

/* INFO ITEM */
.info-item {
    display: flex;
    gap: 15px;
}

.info-item img{
    width: 40px;
    height: 40px;
}

.info-item i {
    font-size: 2.5rem;

    background: linear-gradient(
        135deg,
        #6e4b1f 0%,
        #cfa24a 25%,
        #ffd700 50%,
        #cfa24a 75%,
        #6e4b1f 100%
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;

    /* glow */
    text-shadow:
        0 0 3px rgba(255, 215, 0, 0.4),
        0 0 8px rgba(234, 166, 54, 0.3);
}

.info-item h4 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: #fff;
    font-family: 'TrajanPro-Bold';
}

.info-item p {
    color: #cbcbcb;
    font-size: 1rem;
}

.booking-form select, .booking-form input, .booking-form textarea {
    border-radius: 10px;
}
/* RESPONSIVE */
@media (max-width: 991px) {
    .booking-wrapper {
        grid-template-columns: 1fr;
    }
}
/* ===== packages ===== *//* SECTION */
.packages-section {
    background: #0a0a09;
    padding: 100px 0;
    color: #fff;
    text-align: center;
}

/* MAIN GRID */
.pkg-main {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
    align-items: center;
}

/* TABS */
.pkg-tabs {
    margin: 30px 0;
}

.pkg-tabs button {
    padding: 10px 20px;
    border: 1px solid #EAA636;
    background: transparent;
    color: #fff;
    margin: 0 5px;
    cursor: pointer;
    transition: 0.3s;
}

.pkg-tabs button.active {
    background: #EAA636;
}

/* CONTAINER */
.pkg-container {
    position: relative;
    overflow: hidden;
    height: 370px;
}

.pkg-btn {
    border-radius: 4px;
    backdrop-filter: blur(2px);
}

.pkg-subtitle {
    color: #EAA636;
    font-size: 1rem;
    letter-spacing: 2px;
    font-family: 'TrajanPro-Bold';
}

.pkg-title {
    font-size: 3rem;
    margin-bottom: 40px;
    font-family: 'TrajanPro-Bold';
    color: #ffffff;
}

.pkg-card-title {
    font-size: 1.3rem;
    font-family: 'TrajanPro-Bold';
    color: #ffffff;
}

.pkg-card-price {
    font-size: 0.9rem;
    font-family: 'TrajanPro-Bold';
    color: #ffffff;
}

/* GROUP */
.pkg-group {
    position: absolute;
    width: 100%;
    display: flex;
    gap: 20px;
    justify-content: flex-end;
    transform: translateX(100%);
    opacity: 0;

    transition: transform 0.6s ease, opacity 0.6s ease;
}

#pkgImage{
    transition: all;
}
/* BUTTON BASE */
.pkg-btn, .highlight .pkg-btn:hover {
    background: transparent;
    color: #fff;
    border: 1px solid #EAA636;
    padding: 10px 20px;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;

    /* subtle glow border */
    box-shadow: 0 0 8px rgba(234, 166, 54, 0.3);
    transition: all 0.5s ease;
}

/* HOVER EFFECT */
.pkg-btn:hover, .highlight .pkg-btn{
    background: linear-gradient(135deg, #cfa24a, #ffd700, #a6782a);
    color: #0a0a09;
    box-shadow: 0 0 15px rgba(234, 166, 54, 0.6);
}

/* ACTIVE */
.pkg-group.active {
    transform: translateX(0);
    opacity: 1;
    position: relative;
}

/* CARDS */
.pkg-card {
    background: #111;
    padding: 30px;
    width: 250px;
    border: 1px solid #333;
    border-radius: 10px;
}

.pkg-card.highlight {
    border: 2px solid #EAA636;
}

/* RIGHT IMAGE */
.pkg-right img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}
/* LIST RESET */
.pkg-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

/* LIST ITEM */
.pkg-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #ddd;
    text-align: left;
}

/* GOLD CHECK ICON */
.pkg-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 14px;

    /* gold gradient */
    background: linear-gradient(135deg, #cfa24a, #ffd700, #a6782a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    /* glow */
    text-shadow: 0 0 6px rgba(234,166,54,0.4);
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .pkg-main {
        grid-template-columns: 1fr;
    }
}
/* ===== MOBILE ===== */
@media (max-width: 768px) {
    .features-strip {
        flex-direction: column;
        gap: 20px;
    }

    .feature-divider {
        width: 60px;
        height: 1px;
    }
}
@media (max-width: 991px) {
    .hero-bg{
        background-position-x: -950px;
    }
    .hero-title span{
        letter-spacing: 2px;
        font-size: 1.7rem;
    }
    .hero-title{
        font-size: 2.5rem;
        line-height: 1;
    }
}