/* ==========================================================================
   Horizon Ethiopia Tours & Travel - Core Stylesheet
   ========================================================================== */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Poppins:wght@300;400;500;600;700&display=swap');

/* CSS Variables for Clean Design System */
:root {
    /* Color Palette */
    --primary: #123c84;
    /* Navy Blue */
    --primary-light: #28a7d6;
    /* Bright Sky Blue */
    --accent: #32aad6;
    /* Electric Cyan */
    --accent-hover: #1b8fb8;
    /* Darker Cyan */
    --dark: #12131a;
    /* Obsidian Black */
    --dark-grey: #2d3142;
    /* Card and Text Dark */
    --light-grey: #f4f6fa;
    /* Page Background Soft */
    --white: #ffffff;
    --gold: #fcb900;
    /* Star ratings / Highlights */
    --red: #cf2e2e;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Poppins', sans-serif;

    /* Effects */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 15px 35px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --glass: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.12);
}

/* Base Styles & Resets */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--dark-grey);
    background-color: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--dark);
    line-height: 1.25;
}

a {
    color: var(--primary-light);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center {
    text-align: center;
}

.my-5 {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.py-5 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.section-title {
    font-size: 2.25rem;
    position: relative;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--primary-light);
    border-radius: 2px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    outline: none;
}

.btn-primary {
    background-color: var(--accent);
    color: #000663 !important;
}

.btn-primary:hover {
    background-color: var(--primary);
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(18, 60, 132, 0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white) !important;
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary) !important;
    transform: translateY(-2px);
}

/* Header & Navigation Styles */
.topbar {
    background-color: var(--dark);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.topbar-contact {
    display: flex;
    gap: 20px;
}

.topbar-contact a {
    color: rgba(255, 255, 255, 0.8);
}

.topbar-contact a:hover {
    color: var(--accent);
}

.topbar-social {
    display: flex;
    gap: 15px;
}

.topbar-social a {
    color: rgba(255, 255, 255, 0.8);
}

.topbar-social a:hover {
    color: var(--accent);
}

.main-header {
    background-color: rgba(18, 19, 26, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo img {
    height: 60px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 0;
    display: block;
}

.nav-link:hover,
.nav-item.active .nav-link {
    color: var(--accent);
}

/* Dropdown Menu styling */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--primary-light);
    min-width: 220px;
    border-radius: var(--radius-sm);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    color: var(--white);
    padding: 10px 20px;
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown-link:last-child {
    border-bottom: none;
}

.dropdown-link:hover {
    background-color: var(--white);
    color: var(--dark) !important;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section & Sliders */
.hero {
    position: relative;
    height: 85vh;
    min-height: 550px;
    overflow: hidden;
    background-color: var(--dark);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: none;
}

.slide-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 20px;
    transform: translateY(30px);
    transition: transform 0.8s ease;
}

.slide.active .slide-content {
    transform: translateY(0);
}

.slide-content h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    color: var(--white);
}

.slide-content p {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 30px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.hero-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.hero-dot {
    position: relative;
    width: 24px;
    height: 4px;
    border-radius: 2px;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
}

.hero-dot.active {
    background-color: rgba(255, 255, 255, 0.4);
    width: 40px;
}

.hero-dot-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background-color: var(--accent);
    border-radius: 2px;
    transition: none;
}

.hero-dot.active .hero-dot-fill {
    width: 100%;
    transition: width 3000ms linear;
}

/* Page Subtitle Cover Header */
.subtitle-cover {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 100px 0 60px;
    color: var(--white);
    text-align: center;
}

.subtitle-cover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 19, 26, 0.75);
}

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

.subtitle-cover h1,
.subtitle-cover h2 {
    color: var(--white);
    font-size: 2.75rem;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    list-style: none;
    font-size: 0.9rem;
}

.breadcrumb li+li::before {
    content: '/';
    color: rgba(255, 255, 255, 0.5);
    margin-right: 10px;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a:hover {
    color: var(--accent);
}

.breadcrumb .active {
    color: var(--accent);
}

/* Sections - Welcome Section */
.welcome-section {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.welcome-section h1 {
    font-size: 2.25rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.welcome-subtitle {
    font-size: 1.2rem;
    color: var(--primary-light);
    font-weight: 500;
    margin-bottom: 30px;
}

/* Packages Grid */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.package-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(18, 176, 220, 0.2);
}

.package-img {
    height: 220px;
    position: relative;
    overflow: hidden;
    background-color: var(--light-grey);
}

.package-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.package-card:hover .package-img img {
    transform: scale(1.08);
}

.package-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.package-content {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.package-title {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--dark);
}

.package-desc {
    color: var(--dark-grey);
    font-size: 0.9rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

.package-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--light-grey);
    padding-top: 15px;
    font-size: 0.85rem;
}

.package-price {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.15rem;
}

.package-duration {
    color: #777;
}

/* Destinations (Hotels) Layout */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.destination-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    height: 380px;
}

.destination-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.destination-card:hover img {
    transform: scale(1.08);
}

.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 24px 24px;
    background: linear-gradient(to top, rgba(18, 19, 26, 0.9) 0%, rgba(18, 19, 26, 0.4) 60%, transparent 100%);
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 60%;
}

.destination-name {
    color: var(--white);
    font-size: 1.35rem;
    margin-bottom: 5px;
}

.destination-stars {
    color: var(--gold);
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.destination-price {
    font-weight: 500;
    font-size: 0.85rem;
    opacity: 0.9;
}

.destination-price span {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent);
}

/* Articles Section */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.article-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(18, 176, 220, 0.2);
}

.article-img {
    height: 200px;
}

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

.article-content {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.article-title {
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.article-excerpt {
    font-size: 0.9rem;
    color: var(--dark-grey);
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Partners Area */
.partners-section {
    background-color: var(--light-grey);
    padding: 40px 0;
}

.partners-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.partners-track {
    display: flex;
    width: max-content;
    gap: 90px;
    /* Spaced out a bit more */
    animation: scrollLogos 25s linear infinite;
}

.partner-logo {
    display: block;
    max-height: 50px;
    max-width: 130px;
    object-fit: contain;
    filter: none;
    /* Don't grey them out */
    opacity: 1;
    /* Don't darken them */
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.partner-logo:hover {
    transform: scale(1.08);
    /* Gentle interactive pop on hover */
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Promotional CTA Section */
.cta-section {
    background: linear-gradient(to right, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.cta-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.cta-text {
    max-width: 700px;
}

.cta-text h2 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 10px;
}

.cta-text p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Page Layouts - About Page */
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    color: var(--primary);
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.feature-box {
    padding: 20px;
    background-color: var(--light-grey);
    border-radius: var(--radius-sm);
}

.feature-box h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--primary);
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-member {
    background-color: var(--light-grey);
    padding: 30px 20px;
    border-radius: var(--radius-md);
    text-align: center;
    border-top: 4px solid var(--accent);
}

.team-member h3 {
    font-size: 1.25rem;
    margin-bottom: 5px;
}

.team-role {
    color: var(--primary-light);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    margin-bottom: 15px;
}

/* Fleet Listing (Car Rental) */
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
}

.fleet-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.fleet-img {
    height: 200px;
    background-color: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fleet-img i {
    font-size: 5rem;
    color: #bbb;
}

.fleet-content {
    padding: 24px;
}

.fleet-title {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.fleet-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--dark-grey);
}

.fleet-spec-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Details Page (Hotels Detail, Services Detail) */
.details-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.details-main {
    background-color: var(--white);
}

.details-sidebar {
    background-color: var(--light-grey);
    padding: 30px;
    border-radius: var(--radius-md);
    height: fit-content;
}

.sidebar-widget {
    margin-bottom: 30px;
}

.sidebar-widget:last-child {
    margin-bottom: 0;
}

.sidebar-title {
    font-size: 1.25rem;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--accent);
    padding-bottom: 10px;
}

.info-list li {
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}

.info-list span {
    font-weight: 600;
}

.hotel-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 30px;
}

.hotel-gallery-img {
    height: 150px;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

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

/* Booking Popup Modal (Vanilla HTML5 modal and clean custom JS style fallback) */
.booking-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(18, 19, 26, 0.85);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.booking-modal.active {
    opacity: 1;
    visibility: visible;
}

.booking-content {
    background-color: var(--white);
    border-radius: var(--radius-md);
    width: 90%;
    max-width: 600px;
    padding: 40px;
    position: relative;
    transform: scale(0.9);
    transition: var(--transition);
}

.booking-modal.active .booking-content {
    transform: scale(1);
}

.booking-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    background: none;
    border: none;
}

.booking-content h3 {
    margin-bottom: 20px;
    color: var(--primary);
    font-size: 1.5rem;
}

/* Forms Styling */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark-grey);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #cbd5e1;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--accent);
    outline: none;
    box-shadow: 0 0 0 3px rgba(50, 170, 214, 0.15);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Contact Info cards */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.contact-info-card {
    background-color: var(--light-grey);
    padding: 30px;
    border-radius: var(--radius-md);
    text-align: center;
    border-bottom: 4px solid var(--accent);
}

.contact-info-card i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 15px;
}

.contact-info-card h3 {
    margin-bottom: 10px;
}

/* Footer Section */
.bottom-widgets {
    background-color: var(--dark-grey);
    color: var(--white);
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.bottom-widgets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 40px;
}

.widget-title {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--accent);
}

.widget-text {
    font-size: 0.85rem;
    line-height: 1.7;
    opacity: 0.8;
}

.widget-links li {
    margin-bottom: 12px;
}

.widget-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.widget-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

/* Weather Widget style override */
.weather-card {
    background-color: var(--accent);
    color: var(--white);
    border-radius: var(--radius-md);
    padding: 20px;
    box-shadow: var(--shadow-md);
}

.weather-header {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.weather-temp {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.weather-details {
    font-size: 0.8rem;
    opacity: 0.95;
    line-height: 1.5;
}

.footer {
    background-color: var(--dark);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
}

.footer-socials a:hover {
    color: var(--accent);
}

/* Responsive adjustments */
@media (max-width: 991px) {

    .about-grid,
    .details-layout {
        grid-template-columns: 1fr;
    }

    .slide-content h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 90px);
        background-color: var(--dark);
        flex-direction: column;
        align-items: stretch;
        padding: 40px;
        gap: 20px;
        transition: var(--transition);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: rgba(255, 255, 255, 0.05);
        padding-left: 20px;
        margin-top: 10px;
        display: none;
    }

    .nav-item.open .dropdown-menu {
        display: block;
    }

    .cta-content {
        justify-content: center;
        text-align: center;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* ==========================================================================
   Homepage Transparent Header & Hero Refinement
   ========================================================================== */

/* Header Transparency */
.main-header.transparent-header {
    position: absolute;
    top: 36px;
    left: 0;
    width: 100%;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    z-index: 1000;
}

/* Brackets for active menu link */
.transparent-header .nav-item.active .nav-link {
    color: #fff !important;
}

.transparent-header .nav-item.active .nav-link::before {
    content: '[ ';
    color: #fff;
    font-weight: bold;
}

.transparent-header .nav-item.active .nav-link::after {
    content: ' ]';
    color: #fff;
    font-weight: bold;
}

/* Special Offers button styling */
.nav-link-special {
    background-color: #00aeef !important;
    color: #fff !important;
    border-radius: var(--radius-sm);
    padding: 8px 18px !important;
    font-weight: 700 !important;
    border: none;
    margin-left: 10px;
    transition: all 0.3s ease;
}

.nav-link-special:hover {
    background-color: #0092c7 !important;
}

/* Slide adjustments for left-aligned content */
.hero {
    height: 100vh;
    min-height: 620px;
}

.slide {
    justify-content: flex-start;
    align-items: center;
    padding-left: 8%;
}

.slide::before {
    background: none;
    /* Removed dimming overlay to keep the background image fully bright */
}

.slide-content {
    text-align: left;
    max-width: 750px;
    padding: 0 20px;
    margin-top: -160px;
    /* Shift the text content even higher */
}

.slide-content h2 {
    font-size: 3.0rem;
    /* Middle ground between 3.8rem and 2.4rem */
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin-bottom: 28px;
    /* Increased margin for better whitespace breathing room */
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.95), 0 0 20px rgba(0, 0, 0, 0.7);
    text-transform: capitalize;
}

.slide-content .hero-sub {
    font-size: 1.2rem;
    /* Middle ground between 1.3rem and 1.1rem */
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    line-height: 1.25;
    margin-bottom: 14px;
    display: block;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.95), 0 0 20px rgba(0, 0, 0, 0.7);
}

.slide-content .hero-desc {
    font-family: var(--font-heading);
    /* Use the sleek Outfit font */
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 25px;
    line-height: 1.5;
    font-weight: 300;
    /* Clean, elegant light weight */
    letter-spacing: 0.4px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.95);
}

.slide-content .btn-hero-outline {
    background: transparent;
    border: 2px solid #fff;
    color: #fff !important;
    font-weight: 600;
    text-transform: uppercase;
    padding: 10px 24px;
    display: inline-block;
    letter-spacing: 1px;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.slide-content .btn-hero-outline:hover {
    background: #fff;
    color: #000 !important;
    text-decoration: none;
}

/* Slider Arrow Controls */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.65);
    font-size: 3.5rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    padding: 15px;
    outline: none;
}

.hero-arrow:hover {
    color: #00aeef;
}

.prev-arrow {
    left: 20px;
}

.prev-arrow:hover {
    transform: translateY(-50%) translateX(-6px);
}

.next-arrow {
    right: 20px;
}

.next-arrow:hover {
    transform: translateY(-50%) translateX(6px);
}

/* Hero Booking Bar styles */
.hero-booking-bar {
    position: absolute;
    bottom: 90px;
    /* Shift the search bar even higher up */
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    background: rgba(18, 19, 26, 0.65);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: var(--radius-md);
    /* Fully rounded corners for floating style */
    z-index: 10;
    padding: 20px 25px 25px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.booking-tabs {
    display: flex;
    gap: 30px;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 8px;
}

.booking-tab {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    padding: 5px 0;
    position: relative;
    transition: color 0.3s;
}

.booking-tab:hover,
.booking-tab.active {
    color: #fff;
}

.booking-tab.active::after {
    content: '';
    position: absolute;
    bottom: -9px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #00aeef;
}

.booking-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr auto;
    gap: 15px;
    align-items: flex-end;
}

.booking-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.booking-field label {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    font-weight: 500;
}

.booking-field input,
.booking-field select {
    background: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 15px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: #333;
    height: 46px;
    box-sizing: border-box;
    width: 100%;
}

.booking-field input::placeholder {
    color: #999;
}

.booking-action .btn-search {
    background-color: #00aeef;
    color: #fff;
    border: none;
    height: 46px;
    padding: 0 35px;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.booking-action .btn-search:hover {
    background-color: #0092c7;
}

@media (max-width: 991px) {
    .booking-form-row {
        grid-template-columns: 1fr 1fr;
    }

    .booking-action {
        grid-column: span 2;
    }

    .booking-action .btn-search {
        width: 100%;
    }

    .slide-content h2 {
        font-size: 2.8rem;
    }

    .slide {
        padding-left: 5%;
    }
}

@media (max-width: 768px) {
    .main-header.transparent-header {
        position: static;
        background-color: rgba(18, 19, 26, 0.95);
    }

    .transparent-header .nav-item.active .nav-link::before,
    .transparent-header .nav-item.active .nav-link::after {
        content: none;
    }
}

@media (max-width: 576px) {
    .booking-form-row {
        grid-template-columns: 1fr;
    }

    .booking-action {
        grid-column: span 1;
    }

    .booking-tabs {
        gap: 15px;
    }
}

/* Hide Google Translate top banner and header frame */
body {
    top: 0 !important;
    position: static !important;
}

.skiptranslate,
.goog-te-banner-frame,
.goog-te-banner-frame.skiptranslate,
iframe.goog-te-banner-frame,
#goog-te-welcome {
    display: none !important;
    visibility: hidden !important;
}

/* Prevent Google Translate from showing tooltips/highlights on word hovers */
.goog-text-highlight {
    background-color: transparent !important;
    box-shadow: none !important;
}
/* Gallery Grid Lightbox styles */
.gallery-cell {
    position: relative;
    overflow: hidden;
    /* border-radius removed to stitch grid */
    height: 100%;
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='64' height='64' viewBox='0 0 64 64'%3E%3Cpath d='M32 4 v56 M4 32 h56' stroke='%23FFFFFF' stroke-width='1'/%3E%3C/svg%3E") 32 32, pointer;
}
.gallery-cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}
.gallery-cell:hover img {
    transform: scale(1.16);
}
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.gallery-cell:hover .gallery-overlay {
    opacity: 1;
}
#lightbox-close:hover {
    color: var(--accent) !important;
}
