/* =================================
   GLOBAL CSS
   Travel Website Design System
================================= */


/* ================================
   CSS RESET
================================ */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'Poppins', sans-serif;
    background: #ffffff;
    color: #1a1a1a;
    line-height: 1.6;
}



/* TYPOGRAPHY */

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    letter-spacing: 0.2px;
    color: #1a1a1a;
    background: #ffffff;
}
.page-header {
    background: url('../images/hero-2.jpg');
}

/* HEADINGS */

h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.5px;
    font-weight: 600;
    /* color: #0b2545; */
}

h1 {
    font-size: 56px;
    line-height: 1.2;
}

h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

h3 {
    font-size: 24px;
}

p {
    color: #555;
    margin-bottom: 16px;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}



/* ================================
   ROOT VARIABLES
================================ */

:root {

    --primary: #d4af37;
    --secondary: #1e1e1e;
    --dark: #0f0f0f;
    --light: #ffffff;
    --gray: #bdbdbd;

    --container-width: 1200px;

    --radius: 10px;

    --transition: 0.3s ease;

    --section-padding: 100px;

}



/* ================================
   CONTAINER
================================ */

.container {
    max-width: var(--container-width);
    margin: auto;
    padding: 0 20px;
}




/* TOPBAR */

.topbar {
    background: #f4f4f4;
    font-size: 14px;
    padding: 8px 0;
}

.topbar i {
    margin-right: 6px;
    color: #d4af37;
}

.topbar span {
    margin: 0 10px;
    color: #bbb;
}




.topbar {
    background: #F5F5F5;
    font-size: 14px;
    padding: 8px 0;
    color: #555;
}

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

.topbar i {
    color: #D4AF37;
    margin-right: 6px;
}

/* NAVBAR */

.navbar {
    background: #fff;
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.logo {
    font-weight: 600;
    font-size: 22px;
    color: #0b2545;
}

.logo img {
    max-height: 95px !important;
}

.nav-links a {
    margin: 0 18px;
    font-weight: 500;
    color: #333;
    transition: .3s;
}

.nav-links a:hover {
    color: #d4af37;
}


.nav-links a {
    margin: 0 22px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.nav-links a::after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background: #d4af37;
    transition: 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}









/* NAVBAR */

.navbar {
    background: #ffffff;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    color: #0B2545;
    letter-spacing: 0.5px;
}

/* NAV LINKS */

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: #333;
    position: relative;
    padding-bottom: 4px;
}

/* Elegant hover underline */

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #D4AF37;
    transition: 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

/* MOBILE MENU BUTTON */

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #0B2545;
    display: block;
    border-radius: 3px;
}




/* CTA */

.nav-actions {
    display: flex;
    align-items: center;
}

.btn-primary {
    background: #D4AF37;
    color: #000;
    padding: 12px 26px;
    border-radius: 40px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all .3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.35);
}



/* ================================
   SECTION
================================ */

.section {
    padding: var(--section-padding) 0;
}

.section-title {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    margin-bottom: 50px;
}



.section-title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 10px;
    position: relative;
}

.section-title::after {
    content: "";
    width: 70px;
    height: 3px;
    background: #d4af37;
    display: block;
    margin: 18px auto 0;
    border-radius: 5px;
}

.section-subtitle {
    text-align: center;
    color: #777;
    margin-bottom: 60px;
    letter-spacing: 1px;
}

.section {
    padding: 120px 0;
}

.section-title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 15px;
    position: relative;
}

.section-title::after {
    content: "";
    width: 60px;
    height: 3px;
    background: #D4AF37;
    display: block;
    margin: 15px auto 0;
    border-radius: 5px;
}


/* ================================
   GRID SYSTEM
================================ */

.grid {
    display: grid;
    gap: 30px;
}

/* 4 column grid */

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* 3 column grid */

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

/* 2 column grid */

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}



/* ================================
   CARDS
================================ */

.card {
    background: #1b1b1b;
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.card {
    background: #ffffff;
    border: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.card:hover {
    transform: translateY(-6px);
}

.card img {
    width: 100%;
}

.card-body {
    padding: 20px;
}



.card {
    background: #fff;
    border-radius: 14px;
    padding: 0px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all .35s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

/* ================================
   BUTTONS
================================ */

.btn {
    display: inline-block;
    padding: 12px 26px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
}

.btn {
    padding: 14px 30px;
    border-radius: 50px;
    font-size: 15px;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--primary);
    color: #000;
}

.btn-primary:hover {
    background: #c59d2d;
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: #000;
}




/* New styles */

.btn {
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all .3s ease;
    display: inline-block;
}

.btn-primary {
    background: #d4af37;
    color: #000;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 25px rgba(212, 175, 55, 0.4);
}

.btn-outline {
    border: 2px solid #d4af37;
    color: #d4af37;
}

.btn-outline:hover {
    background: #d4af37;
    color: #000;
}

/* ================================
   FLEX UTILITIES
================================ */

.flex {
    display: flex;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}



/* ================================
   TEXT UTILITIES
================================ */

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

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



/* ================================
   SPACING UTILITIES
================================ */

.mt-20 {
    margin-top: 20px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-60 {
    margin-top: 60px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-60 {
    margin-bottom: 60px;
}



/* ================================
   RESPONSIVE BREAKPOINTS
================================ */


/* Laptop */

@media(max-width:1200px) {

    .grid-4 {
        grid-template-columns: repeat(3, 1fr);
    }

}


/* Tablet */

@media(max-width:992px) {

    .grid-4,
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-title {
        font-size: 32px;
    }

}


/* Mobile */

@media(max-width:600px) {

    .grid-4,
    .grid-3,
    .grid-2 {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 70px 0;
    }

    .section-title {
        font-size: 26px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }

}



/* MOBILE NAVIGATION */

@media(max-width:768px) {

    .nav-links {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 30px 0;
        display: flex;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
        right:0; /* <-- this makes it visible */
    }

    .menu-toggle {
        display: flex;
    }

    .nav-actions {
        display: none;
    }

}