/*
Theme Name: Ghana December Experience
Theme URI: https://ghanadecembertours.com
Author: Ghana December Tours
Description: Custom travel theme for Ghana December Experience.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: ghana-december
*/


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

:root {
    --green: #006B3C;
    --gold: #D4AF37;
    --dark: #111111;
    --light: #f5f5f5;
    --white: #ffffff;
}


/* =========================================
   BASIC RESET
========================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding-top: 85px;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--dark);
    line-height: 1.6;
    background: var(--white);
}

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


/* =========================================
   TYPOGRAPHY
========================================= */

h1,
h2,
h3 {
    font-family: Georgia, "Times New Roman", serif;
}

h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 40px;
}

p {
    font-size: 18px;
}


/* =========================================
   LAYOUT
========================================= */

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

section {
    padding: 60px 0;
}


/* =========================================
   LINKS
========================================= */

a {
    color: var(--green);
    text-decoration: none;
}


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

.btn {
    display: inline-block;
    background: var(--gold);
    color: var(--dark);
    padding: 18px 42px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 18px;
    transition: 0.3s ease;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.35);
}

.btn:hover {
    transform: translateY(-2px);
    opacity: 1;
}


/* Header Booking Button */

.header-book-btn {
    display: inline-block;
    background: var(--gold);
    padding: 12px 24px;
    border-radius: 30px;
    color: var(--dark);
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s ease;
}

.header-book-btn:hover {
    transform: translateY(-2px);
}


/* =========================================
   HEADER
========================================= */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.header-container {
    width: 90%;
    max-width: 1200px;
    min-height: 85px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}


/* =========================================
   LOGO
========================================= */

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
}

.logo img {
    display: block;
    width: 230px;
    height: auto;
    max-height: 70px;
    object-fit: contain;
}


/* =========================================
   DESKTOP NAVIGATION
========================================= */

.main-nav {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.primary-menu {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    gap: 30px;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.primary-menu li {
    display: block;
    list-style: none !important;
    margin: 0;
    padding: 0;
}

.primary-menu a {
    display: block;
    padding: 10px 0;
    color: var(--dark);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

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


/* =========================================
   MOBILE MENU BUTTON
========================================= */

.mobile-menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 10px;
    border: 0;
    border-radius: 8px;
    background: transparent;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    margin: 5px auto;
    background: var(--dark);
    transition: all 0.3s ease;
}


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

.hero {
    min-height: calc(100vh - 85px);
    display: flex;
    align-items: center;

    background:
        linear-gradient(
            rgba(0, 0, 0, 0.55),
            rgba(0, 0, 0, 0.55)
        ),
        url("assets/images/ghana-hero.jpg");

    background-size: cover;
    background-position: center;

    color: var(--white);
    padding: 120px 0;
}

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

.hero h1 {
    font-size: clamp(40px, 6vw, 80px);
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero p {
    max-width: 700px;
    margin: 15px auto;
    font-size: 20px;
}

.hero .btn {
    margin-top: 30px;
    font-size: 18px;
    padding: 18px 45px;
}


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

.story-section {
    padding: 100px 0;
}


/* =========================================
   TWO-COLUMN SECTIONS
========================================= */

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.split img {
    border-radius: 25px;
}


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

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.card {
    background: var(--white);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.card h3 {
    font-size: 25px;
    margin-bottom: 15px;
}


/* =========================================
   TIMELINE
========================================= */

.timeline {
    max-width: 800px;
    margin: auto;
    position: relative;
}

.timeline:before {
    content: "";
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gold);
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.timeline-number {
    min-width: 85px;
    height: 55px;
    padding: 0 10px;
    border-radius: 30px;
    background: var(--green);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 13px;
    text-align: center;
    position: relative;
}

.timeline-content {
    background: #f8f8f8;
    padding: 25px;
    border-radius: 15px;
    flex: 1;
}


/* =========================================
   PRICING
========================================= */

.pricing-card {
    max-width: 600px;
    margin: auto;
    text-align: center;
}

.price {
    font-size: 50px;
    font-weight: bold;
    color: var(--green);
}

.pricing-card ul {
    text-align: left;
    max-width: 400px;
    margin: 30px auto;
}

.pricing-card li {
    margin-bottom: 12px;
}


/* =========================================
   FOOTER
========================================= */

footer {
    background: var(--dark);
    color: var(--white);
    padding: 30px 0;
    text-align: center;
}

footer p {
    color: var(--white);
}


/* =========================================
   FLOATING WHATSAPP BUTTON
========================================= */

a.floating-whatsapp {
    position: fixed !important;

    right: 20px !important;
    bottom: 20px !important;
    top: auto !important;
    left: auto !important;

    width: 45px !important;
    height: 45px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    padding: 0 !important;
    margin: 0 !important;

    background-color: #25D366 !important;

    border-radius: 50% !important;

    z-index: 2147483647 !important;

    box-sizing: border-box !important;

    text-decoration: none !important;

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25) !important;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease !important;
}


/* WhatsApp SVG */

a.floating-whatsapp .whatsapp-icon {
    display: block !important;

    width: 25px !important;
    height: 25px !important;

    margin: 0 !important;
    padding: 0 !important;

    fill: #ffffff !important;
}


/* WhatsApp Hover */

a.floating-whatsapp:hover {
    transform: scale(1.08) !important;

    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3) !important;
}


/* =========================================
   MOBILE RESPONSIVE
========================================= */

@media (max-width: 900px) {

    body {
        padding-top: 75px;
    }


    /* Header */

    .header-container {
        min-height: 75px;
    }

    .logo img {
        width: 180px;
        max-height: 55px;
    }


    /* Mobile Menu Button */

    .mobile-menu-toggle {
        display: block;
        position: relative;
        z-index: 10001;
    }


    /* Mobile Navigation */

    .main-nav {
        position: fixed;
        top: 75px;
        right: -100%;

        width: 85%;
        max-width: 360px;
        height: calc(100vh - 75px);

        padding: 35px 25px;

        background: var(--white);

        display: flex;
        flex-direction: column;
        align-items: stretch;

        overflow-y: auto;

        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.12);

        transition: right 0.35s ease;
    }

    .main-nav.is-open {
        right: 0;
    }


    /* Mobile Menu */

    .primary-menu {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch;

        gap: 0;

        width: 100%;
    }

    .primary-menu li {
        width: 100%;
        border-bottom: 1px solid #eeeeee;
    }

    .primary-menu a {
        padding: 16px 5px;
        font-size: 18px;
    }


    /* Hero */

    .hero {
        min-height: 80vh;
        padding: 70px 0;
    }

    .hero h1 {
        font-size: 32px;
    }


    /* Sections */

    section {
        padding: 40px 0;
    }

    .story-section {
        padding: 60px 0;
    }


    /* Headings */

    h2 {
        font-size: 32px;
    }


    /* Split Layout */

    .split {
        grid-template-columns: 1fr;
    }


    /* Cards */

    .cards {
        grid-template-columns: 1fr;
    }


    /* Timeline */

    .timeline-item {
        gap: 15px;
    }

    .timeline-number {
        min-width: 45px;
        height: 45px;
        font-size: 14px;
    }


    /* WhatsApp */

    a.floating-whatsapp {
        right: 15px !important;
        bottom: 15px !important;

        width: 42px !important;
        height: 42px !important;
    }

    a.floating-whatsapp .whatsapp-icon {
        width: 23px !important;
        height: 23px !important;
    }

}


/* =========================================
   HAMBURGER ANIMATION
========================================= */

.mobile-menu-toggle.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}