
/******************************************************
  GLOBAL RESET
******************************************************/
body {
    margin: 0px !important;
    font-family: "Lora", serif;
}


/******************************************************
  TOP BAR
******************************************************/
.topbar-wrapper {
    background: #565656;
    color: #ffffff;
}

.py-1{
    padding-top: .25rem !important;
    padding-bottom: .25rem !important;
}

/* Main Flex Layout */
.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LEFT SIDE */
.topbar-left {
    display: flex;
    align-items: center;
    font-family: "Lora", serif;
    
}

.topbar-item {
    display: flex;
    align-items: center;
}

.topbar-icon {
    width: 18px;
    height: auto;
    margin-right: 8px;
    filter: brightness(0) invert(1);
}

/* RIGHT SIDE SOCIAL ICONS */
.topbar-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

.topbar-right img {
    width: 18px;
    height: auto;
    filter: brightness(0) invert(1);
    transition: 0.2s ease;
}

.topbar-right img:hover {
    filter: brightness(0) saturate(100%) invert(70%) sepia(85%) saturate(1400%) hue-rotate(-10deg) brightness(100%) contrast(100%);
}
/******************************************************
  TOP BAR RESPONSIVE BREAKPOINTS
******************************************************/

/* Tablet (768px - 991px) */
@media (max-width: 991px) {
    .topbar-wrapper {
        font-size: 14px;
    }
    .topbar-left {
        gap: 15px;
    }
    .topbar-right {
        gap: 14px;
    }
    .topbar-right img {
        width: 18px;
    }
}
/* Mobile (0 - 767px) */
@media (max-width: 767px) {

    .topbar {
        display: flex;
        flex-direction: column;      /* STACK 2 ROWS */
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 8px 0;
        text-align: center;
    }

    .topbar-left {
  
        width: 100%;
    }

    .topbar-right {
      
        width: 100%;
        
    }

    .topbar-right img,
    .topbar-icon {
        width: 18px;
    }
}
/* Exact layout for 482px like your Image 1 */
@media (max-width: 482px) {

    .topbar {
        display: block !important;    /* Remove flex */
        width: 100%;
        padding: 10px;
    }

    /* LEFT SIDE = address + phone */
    .topbar-left {
        width: 100%;
        display: block !important;    /* Make both items appear in separate rows */
        margin-bottom: 8px;
    }

    .topbar-item {
        margin-bottom: 6px;           /* Gap between address & phone */
        display: flex;
        align-items: center;
    }

    /* RIGHT SIDE = Social icons */
    .topbar-right {
        width: 100%;
        display: flex;
        justify-content: flex-start;  /* Icons align left (like screenshot) */
        gap: 14px;
        margin-top: 5px;
    }

    .topbar-right img {
        width: 18px;
        height: auto;
    }
}


/******************************************************
  HEADER BASE
******************************************************/
.site-header {
    background: #ffffff;
    padding: 16px;
}
/******************************************************
  HEADER FLEX STRUCTURE
******************************************************/
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

/******************************************************
  MAIN NAV WRAPPER
******************************************************/
.main-nav-wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative; /* Search popup anchor */
}

/******************************************************
  CENTER MENU (Desktop)
******************************************************/
.main-menu-nav {
    flex: 1;
    display: flex;
    justify-content: center;
    font-family: "Lora", serif;
}

.main-menu-nav ul {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    gap: 35px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-menu-nav ul li {
    list-style: none !important;
}

.main-menu-nav ul li a {
    font-size: 16px;
    text-decoration: none;
    color: #555;
    transition: .3s;
}

.main-menu-nav ul li a:hover,
.main-menu-nav ul li a.active {
    color: #FAA808 !important;
}

/* First menu item highlighted */
.main-menu-nav ul li:first-child a {
    color: #FAA808 !important;

}

/******************************************************
  DROPDOWN ARROW
******************************************************/
.main-menu-nav ul li.dropdown > a::after {
    content: " ▾";
    margin-left: 4px;
    font-size: 12px;
}

/******************************************************
  SPECIAL MENU LINK (Get Pro)
******************************************************/
.main-menu-nav ul li a[href*="get-pro"] {
    color: #797876;
    font-weight: 700;
    text-transform: uppercase;
}

/******************************************************
  SEARCH ICON (Desktop)
******************************************************/
.nav-search {
    cursor: pointer;
}

.search-icon {
    width: 22px;
    height: auto;
    display: block;
    cursor: pointer;
}

/******************************************************
  SEARCH POPUP (Desktop)
******************************************************/
.search-popup {
    position: absolute;
    top: 45px;
    right: 0;
    width: 260px;
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    display: none;
    z-index: 1000;
}

.search-popup.active {
    display: block;
}

/* Search form */
.search-popup form {
    width: 100%;
    display: flex;
}

.search-popup input {
    width: 100%;
    padding: 11px 12px;
    border: 1px solid #ccc;
    font-size: 15px;
    border-radius: 6px 0 0 6px;
    outline: none;
}

.search-popup button {
    background: #FAA808;
    border: none;
    padding: 0 15px;
    border-radius: 0 6px 6px 0;
}

.search-submit-icon img.search-icon-white {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
}

/******************************************************
  MOBILE MENU PANEL (Side Drawer)
******************************************************/
.mobile-hamburger {
    display: none;
    cursor: pointer;
}

.hamburger-icon {
    width: 40px;
    cursor: pointer;
}

.mobile-menu-panel {
    position: fixed;
    top: 0;
    right: -300px;
    width: 260px;
    height: 100vh;
    background: #fff;
    padding: 30px 20px;
    box-shadow: -3px 0 10px rgba(0,0,0,0.2);
    transition: 0.3s ease-in-out;
    z-index: 999999;
    overflow-y: auto;
}

.mobile-menu-panel.open {
    right: 0;
}

.mobile-menu-close {
    font-size: 36px;
    cursor: pointer;
    text-align: left;
}

/* Mobile menu items */
.mobile-menu-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-nav ul li {
    margin: 18px 0;
}

.mobile-menu-nav ul li a {
    font-size: 18px;
    color: #444;
    font-weight: 500;
    text-decoration: none;
}

/* Mobile search button */
.mobile-search-btn {
    margin-top: 25px;
}

.mobile-search-icon {
    width: 24px;
    cursor: pointer;
}

/******************************************************
  RESPONSIVE STYLES (max-width: 991px)
******************************************************/
@media (max-width: 991px) {

    /* Hide desktop menu & search */
    .main-menu-nav {
        display: none !important;
    }

    .nav-search {
        display: none;
    }

    /* Show hamburger */
    .mobile-hamburger {
        display: block;
        position: static;
    }

    /* Reduce gaps */
    .main-nav-wrapper {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    /* Popup inside mobile menu */
    .search-popup {
        position: static !important;
        width: 100% !important;
        padding: 12px;
        box-shadow: none !important;
        border-radius: 6px;
        display: none;
    }

    .search-popup.active {
        display: block;
    }

    .header-inner {
        justify-content: space-between;
        width: 100%;
    }

    .mobile-hamburger {
        margin-left: auto;
    }
}




/******************************************************
  FOOTER
******************************************************/
.site-footer {
    background: #EEEFEF;
    padding-top: 160px;
}
/* =====================================
   FOOTER MAIN BLOCK
===================================== */
.content-block {
    text-align: center;
    margin: 0 auto;
    padding: 8px;
}

/* Typography for all text inside */
.content-block p,
.content-block li{
    color: #797876;
    

   
}


/* Links */
.content-block a {
    color: #444;
    text-decoration: underline;
}

.content-block a:hover {
    color: #faa808;
}

.social-block {
    text-align: center;
    margin-top: 20px;
}



.social-icons {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 50px;
    margin-bottom: 150px;
}

.social-icons li {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Normal circle */
.icon-circle {
    width: 45px;
    height: 45px;
    border-radius: 70px;
    border: 1px solid #bfbfbf;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
}

.icon-circle img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    filter: invert(76%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(90%) contrast(90%);
    transition: 0.3s ease;
}

/* Hover effect */
.icon-circle:hover {
    background: #faa808;
    border-color: #faa808;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

/* Icon becomes white on hover */
.icon-circle:hover img {
    filter: brightness(0) invert(1);
}



.footer-col.content-block.copyright hr {
    border: none;
    border-top: 1px solid #dee2e6;
    opacity: 1;             /* Bootstrap removes this, so restore it */
    margin-bottom: 24px;
}

/* Base container (mobile-first) */
.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}


/* ============================
   HERO SLIDER (Fixed BG + Sliding Content)
============================ */
.hero-slider {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
}

.hero-slide {
    width: 100%;
    height: 80vh;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;   /* IMAGE DOES NOT SLIDE */
    z-index: 1;
}

/* Show active slide */
.hero-slide.active {
    opacity: 1;
}

/* ============================
   SLIDING CONTENT ONLY
============================ */
.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateY(40px);
    opacity: 0;
    z-index: 10;
    text-align: center;
    transition: all 0.8s ease;
}

/* Content animation when slide activates */
.hero-slide.active .hero-content {
    opacity: 1;
    transform: translate(-50%, -50%) translateY(0);
}





/* =======================
   POSITION TEXT PERFECTLY
======================== */
.hero-content {
    position: absolute;
    top: 50%;                 /* vertical center */
    left: 50%;                /* horizontal center */
    transform: translate(-50%, -60%); 
    text-align: center;
    color: #fff;
}

/* =======================
   TITLE STYLE (MATCH SAMPLE)
======================== */
.hero-title {
    font-family: "Grand Hotel", cursive;
    font-size: 80px;               /* same size as theme */
    font-weight: normal;

    color: #ffffff;

    
}

/* =======================
   BUTTON STYLE
======================== */
.btn-primary {
  padding: 15px 35px !important;
  text-transform: uppercase;
  transition: 0.3s ease-in-out;
  font-weight: 700 !important;
  letter-spacing: 0.0675rem;
  border-radius: 50px !important;
  background-color: #FAA808 !important;
  border-color: #FAA808 !important;
}


.hero-title p{
    margin-bottom: 1rem !important;

}


.hero-title h1{
    margin-block-start: 0px !important;
    margin-block-end: 0px !important;
}




/* MAIN WRAPPER */
.hero-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

/* DEFAULT ICON STYLE */
.floating-icon {
    position: absolute;
    width: 100px;
    opacity: 1;
}

/* At width <= 999px → smaller icon */
@media (max-width: 999px) {
    .floating-icon {
        width: 50px;
    }
}

/* At width <= 767px → icon invisible */
@media (max-width: 767px) {
    .floating-icon {
        display: none !important;
    }
}
@media (max-width: 767px) {
    .hero-icons,
    .hero-icons * {
        display: none !important;
    }
}


/* ============================================================
   ANIMATION GROUPS (REFERENCE STYLE)
============================================================ */

/* float1 = UP FIRST (like icon-float1) */
.float-up {
    transform: translateY(50px);
    animation: floatUp 20s ease-in-out infinite;
}

/* float2 = DOWN FIRST (like icon-float2) */
.float-down {
    transform: translateY(-40px);
    animation: floatDown 20s ease-in-out infinite;
}

/* KEYFRAMES */
@keyframes floatUp {
    0%   { transform: translateY(50px); }
    50%  { transform: translateY(-40px); }
    100% { transform: translateY(50px); }
}

@keyframes floatDown {
    0%   { transform: translateY(-40px); }
    50%  { transform: translateY(50px); }
    100% { transform: translateY(-40px); }
}


/* ============================================================
   ASSIGN ANIMATION TO YOUR 9 ICONS
============================================================ */

/* float-up: 1,3,5,7,9 */
.floating-icon:nth-child(1),
.floating-icon:nth-child(3),
.floating-icon:nth-child(5),
.floating-icon:nth-child(7),
.floating-icon:nth-child(9) {
    transform: translateY(50px);
    animation: floatUp 20s ease-in-out infinite;
}

/* float-down: 2,4,6,8 */
.floating-icon:nth-child(2),
.floating-icon:nth-child(4),
.floating-icon:nth-child(6),
.floating-icon:nth-child(8) {
    transform: translateY(-40px);
    animation: floatDown 20s ease-in-out infinite;
}


/* ============================================================
   FINAL POSITIONS (Green → Snowflake → UFO → Sun)
============================================================ */

/* 1 — Blue cloud */
.floating-icon:nth-child(1) { top: 20%; left: 2.5%; }

/* 2 — Sparkles */
.floating-icon:nth-child(2) { top: 20%; left: 25%; }

/* 3 — Rainbow */
.floating-icon:nth-child(3) { top: 20%; left: 48%; }

/* 4 — Moon */
.floating-icon:nth-child(4) { top: 20%; right: 26%; }

/* 5 — Grey cloud */
.floating-icon:nth-child(5) { top: 20%; right: 2.5%; }


/* === BOTTOM ICONS ORDER (LEFT → RIGHT) === */

/* 6 — GREEN RAINBOW (leftmost) */
.floating-icon:nth-child(6) {  bottom: 20%;  left: 13%;}

/* 7 — SNOWFLAKE */
.floating-icon:nth-child(7) { bottom: 20%; left: 35%; }

/* 8 — UFO */
.floating-icon:nth-child(8) { bottom: 20%; left: 59%; }

/* 9 — SUN (rightmost) */
.floating-icon:nth-child(9) { bottom: 20%; right: 13%; }







/* Container spacing */
.padding-medium {
    padding-top: 10em;
    padding-bottom: 10em;
}

/* Row spacing like reference */
.row {
    justify-content: center;
    display: flex;
}

.text-center {
    text-align: center !important;
}

/* The big circle that holds the icon */
.category-icon {
    width: 170px;          /* circle width */
    margin: 0 auto 20px;   /* center + bottom spacing */
}

/* Icon size inside the circle */
.category-icon img,
.category-icon picture,
.category-icon svg {
    width: 70px !important;
    height: auto;
}







/* Remove underline from <a> */
.categories-item {
    text-decoration: none;
     color: #3C3C3C !important;
     font-family: "Grand Hotel", cursive !important;
     font-size: 32px;
}

.categories-item h2{
    font-weight: normal !important; 
    
}






/***** ABOUT US  */
.animated-border {
    position: relative;
    width: fit-content;
}
/* The dotted animated border made with ::before */
.animated-border::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    bottom: -50px;
    left: -50px;
    border-radius: 50rem;
    border: 25px dotted #E3EAF0;
    animation: rotate-border 90s linear infinite;
}

@keyframes rotate-border{
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.section-title h2{
    font-family: "Grand Hotel", cursive;
}

.about-description{
    color:#797876 !important;
    font-family: "Lora", serif;
}



html, body {
    overflow-x: hidden !important;
}

/* Stop breakout transform issues */
.breakout {
    width: 100vw;
    position: relative;
    left: 50%;
    margin-left: -50vw;
}

/* Fix jarallax overflow */
#cta {
    overflow: hidden !important;
}

#cta .jarallax-container,
#cta .jarallax-img {
    width: 100% !important;
    max-width: 100% !important;
    left: 0 !important; 
}




/* SECTION */
.cta-section {
    position: relative;
    overflow: hidden; /* Fix white gaps */
}

/* JARALLAX BACKGROUND */
.jarallax-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover !important;
    background-position: center !important;
    z-index: -1;
}



/* TITLE */
.banner-title {
    font-family: "Grand Hotel", cursive;
    color: #ffffff;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.27);
    text-transform: capitalize;
}

/* DESCRIPTION */
.banner-description {
    font-family: "Lora", serif;
    color: #ffffff !important;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.27);
    text-transform: capitalize;
}
