/* ==========================================================================
   Sunshine Tour & Travel — Stylesheet
   Brand colors: #183f72 (deep blue) · #cf2e2e (red) · #068b50 (green)
   ========================================================================== */
html,
body {
    overflow-x: hidden;
}

:root {
    --blue: #183f72;
    --blue-dark: #102b4f;
    --red: #cf2e2e;
    --green: #068b50;
    --black: #14171c;
    --white: #ffffff;

    --bg-soft-blue: #eff4fa;
    --bg-soft-green: #eefaf3;
    --bg-soft-red: #fdf2f2;

    --text-dark: #1c2330;
    --text-muted: #5b6573;

    --font-display: 'Poppins', sans-serif;
    --font-body: 'Nunito Sans', sans-serif;

    --radius-lg: 22px;
    --radius-md: 14px;
    --radius-sm: 8px;

    --shadow-soft: 0 10px 30px rgba(16, 43, 79, 0.08);
    --shadow-card: 0 14px 34px rgba(16, 43, 79, 0.12);

    --header-height: 84px;
}

/* ==========================================================================
   Base
   ========================================================================== */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
    padding-top: var(--header-height);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    color: var(--blue);
    font-weight: 700;
    margin: 0;
}

p {
    color: #020202;
    line-height: 1.75;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all .25s ease;
}

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

.section-soft-blue {
    background-color: var(--bg-soft-blue);
}

.section-soft-green {
    background-color: var(--bg-soft-green);
}

.section-soft-red {
    background-color: var(--bg-soft-red);
}

section {
    padding: 90px 0;
}

.section-eyebrow {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 10px;
}

.section-title {
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.2;
    margin-bottom: 18px;
}

.section-title span {
    color: var(--green);
}

.section-subtext {
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto;
}

.section-heading {
    margin-bottom: 50px;
}

.lead-text {
    font-size: 18px;
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.6;
}

/* Buttons */
.btn-primary-brand {
    background-color: var(--blue);
    border: 2px solid var(--blue);
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 600;
    padding: 13px 30px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all .3s ease;
}

.btn-primary-brand:hover {
    background-color: var(--red);
    border-color: var(--red);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-brand {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 600;
    padding: 13px 30px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all .3s ease;
}

.btn-outline-brand:hover {
    background-color: var(--white);
    color: var(--blue);
}


/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background-color: #ffffff;
    z-index: 1000;
    transition: box-shadow .3s ease, height .3s ease;
}

.site-header.scrolled {
    box-shadow: 0 6px 24px rgba(16, 43, 79, .12);
}

.header-inner {
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    /* gap: 12px;*/
}

.brand-icon {
    width: 10%;
    /*height: 46px;*/
    border-radius: 50%;
    /*
  background: linear-gradient(135deg, var(--red), var(--blue));
  color: var(--white);*/
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-name {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 21px;
    color: var(--blue);
}

.brand-sub {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 11px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--green);
}

/* Nav */
.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-link {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 15px;
    color: var(--text-dark);
    position: relative;
    padding: 6px 0;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--red);
    transition: width .3s ease;
}

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

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.btn-enquire-nav {
    background-color: #01140b;
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 14px;
    padding: 10px 22px;
    border-radius: 50px;
    white-space: nowrap;
    transition: all .3s ease;
}

.btn-enquire-nav:hover {
    background-color: var(--blue);
    color: var(--white);
    transform: translateY(-2px);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    background: var(--bg-soft-blue);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    z-index: 1100;
    position: relative;
}

.hamburger .bar {
    width: 22px;
    height: 2.5px;
    background-color: var(--blue);
    border-radius: 3px;
    transition: transform .35s ease, opacity .25s ease, background-color .3s ease;
}

.hamburger.active .bar {
    background-color: var(--red);
}

.hamburger.active .bar-top {
    transform: translateY(8.5px) rotate(45deg);
}

.hamburger.active .bar-mid {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active .bar-bottom {
    transform: translateY(-8.5px) rotate(-45deg);
}

.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(16, 23, 36, .55);
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s ease;
    z-index: 999;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ==========================================================================
   Responsive (header/nav portions)
   ========================================================================== */
@media (max-width: 991.98px) {
    :root {
        --header-height: 74px;
    }

    .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: min(82vw, 340px);
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 110px 32px 32px;
        gap: 36px;
        transition: left .45s cubic-bezier(.65, 0, .35, 1);
        box-shadow: 18px 0 50px rgba(0, 0, 0, .12);
    }

    .main-nav.nav-open {
        left: 0;
    }

    .nav-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 22px;
        width: 100%;
    }

    .nav-links li {
        width: 100%;
        opacity: 0;
        transform: translateX(-40px);
        transition: opacity .4s ease, transform .4s ease;
    }

    .main-nav.nav-open .nav-links li {
        opacity: 1;
        transform: translateX(0);
    }

    .main-nav.nav-open .nav-links li:nth-child(1) {
        transition-delay: .08s;
    }

    .main-nav.nav-open .nav-links li:nth-child(2) {
        transition-delay: .14s;
    }

    .main-nav.nav-open .nav-links li:nth-child(3) {
        transition-delay: .20s;
    }

    .main-nav.nav-open .nav-links li:nth-child(4) {
        transition-delay: .26s;
    }

    .main-nav.nav-open .nav-links li:nth-child(5) {
        transition-delay: .32s;
    }

    .main-nav.nav-open .nav-links li:nth-child(6) {
        transition-delay: .38s;
    }

    .nav-link {
        font-size: 17px;
    }

    .btn-enquire-nav {
        opacity: 0;
        transform: translateX(-40px);
        transition: opacity .4s ease .42s, transform .4s ease .42s;
    }

    .main-nav.nav-open .btn-enquire-nav {
        opacity: 1;
        transform: translateX(0);
    }

    .hamburger {
        display: flex;
    }

    .nav-overlay {
        display: block;
    }
}












/* footer css code  */

.site-footer{
    background: linear-gradient(135deg,#000000,#000000);
    color:#fff;
    padding:70px 0 25px;
}

/* Logo */
.site-footer h3{
    font-size:32px;
    letter-spacing:1px;
}

.site-footer span.text-warning{
    font-size:15px;
    letter-spacing:3px;
    font-weight:600;
}

/* Headings */

.footer-title{
    font-size:22px;
    font-weight:600;
    color:#fff;
    margin-bottom:25px;
    position:relative;
}

.footer-title::after{
    content:"";
    width:50px;
    height:3px;
    background:#ffc107;
    display:block;
    margin-top:8px;
    border-radius:10px;
}

/* Paragraph */

.site-footer p{
    color:#d8d8d8;
    line-height:1.8;
    font-size:15px;
}

/* Links */

.site-footer ul{
    padding:0;
    margin:0;
}

.site-footer ul li{
    list-style:none;
    /*margin-bottom:12px;*/
}

.site-footer ul li a{
    color:#d8d8d8;
    text-decoration:none;
    transition:all .3s ease;
}

.site-footer ul li a:hover{
    color:#ffc107;
    padding-left:6px;
}

/* Contact */

.site-footer p i{
    width:25px;
    font-size:18px;
}

/* Social Icons */

.site-footer .text-md-end a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:42px;
    height:42px;
    margin-left:8px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    color:#fff;
    transition:.3s;
    text-decoration:none;
}

.site-footer .text-md-end a:hover{
    background:#ffc107;
    color:#000;
    transform:translateY(-4px);
}

/* Divider */

.site-footer hr{
    opacity:.15;
}

/* Copyright */

.site-footer .row:last-child p{
    font-size:15px;
    color:#bfc7d1;
}

/*=========================================
        Tablet
==========================================*/

@media (max-width:991px){

    .site-footer{
        padding:60px 0 20px;
    }

    .footer-title{
        margin-top:10px;
    }

}

/*=========================================
        Mobile
==========================================*/

@media (max-width:767px){

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

    .footer-title::after{
        margin:10px auto 0;
    }

    .site-footer p{
        margin-bottom:15px;
    }

    .site-footer .text-md-end{
        text-align:center !important;
    }

    .site-footer .text-md-end a{
        margin:5px;
    }

}

/*=========================================
        Small Mobile
==========================================*/

@media (max-width:575px){

    .site-footer{
        padding:50px 0 20px;
    }

    .site-footer h3{
        font-size:28px;
    }

    .footer-title{
        font-size:20px;
    }

    .site-footer p,
    .site-footer ul li a{
        font-size:14px;
    }

}