/**
 * Theme Name: Gogo Travel Gogo Custom
 * Description: Custom high-end styles for Gogo Travel Gogo
 */

:root {
    --gogo-green: #1A3C34;
    --gogo-green-light: #2A5C50;
    --gogo-sand: #F5F1E8;
    --gogo-sand-light: #FAF8F5;
    --gogo-gold: #D4AF37;
    --gogo-text: #2C2C2C;
    --gogo-text-light: #666666;
    --gogo-white: #FFFFFF;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

body {
    font-family: var(--font-body);
    color: var(--gogo-text);
    background-color: var(--gogo-sand-light);
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--gogo-green);
    font-weight: 700;
}

/* Utilities */
.gogo-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.gogo-btn {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--gogo-gold);
    color: var(--gogo-white);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--gogo-gold);
}

.gogo-btn:hover {
    background-color: transparent;
    color: var(--gogo-gold);
}

.gogo-btn-outline {
    background-color: transparent;
    border: 1px solid var(--gogo-white);
    color: var(--gogo-white);
}

.gogo-btn-outline:hover {
    background-color: var(--gogo-white);
    color: var(--gogo-green);
}

/* Section Spacing */
.gogo-section {
    padding: 80px 0;
}

/* Typography Enhancements */
.gogo-heading-xl {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 24px;
}

.gogo-heading-lg {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.gogo-subheading {
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    color: var(--gogo-gold);
    margin-bottom: 16px;
    display: block;
}

/* Hero Section Styles */
.gogo-hero {
    position: relative;
    height: 100vh;
    /* Full viewport height */
    width: 100vw;
    margin-left: calc(50% - 50vw);
    /* Break out of container */
    margin-right: calc(50% - 50vw);
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    color: var(--gogo-white);
    margin-top: 0;
}

/* Fix for Astra specific spacing */
.home #primary,
.home #main,
.home .site-content {
    margin-top: 0 !important;
    padding-top: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
}

.home .entry-header {
    display: none;
}

.gogo-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(26, 60, 52, 0.3), rgba(26, 60, 52, 0.6));
    z-index: 1;
}

.gogo-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
    padding-top: 80px;
    /* Optical adjustment if header is present */
}

.gogo-hero h1 {
    color: var(--gogo-white);
}

/* Marquee Animation */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }

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

.gogo-marquee-item {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    margin: 0 40px;
    letter-spacing: 2px;
}

/* Product Card Hover */
.gogo-product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.gogo-btn-link:hover {
    opacity: 0.7;
    margin-left: 5px;
    transition: margin 0.3s ease;
}

/* Bento Grid / Categories */
.gogo-bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
}

.gogo-bento-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 300px;
    display: block;
    text-decoration: none;
}

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

.gogo-bento-item:hover img {
    transform: scale(1.05);
}

.gogo-bento-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
}

/* Mountains */
.gogo-cat-bg-1 {
    background-image: url('../images/cat-mountains.png');
    background-size: cover;
    background-position: center;
}

/* Beach */
.gogo-cat-bg-2 {
    background-image: url('../images/cat-beach.png');
    background-size: cover;
    background-position: center;
}

/* Desert */
.gogo-cat-bg-3 {
    background-image: url('../images/cat-desert.png');
    background-size: cover;
    background-position: center;
}

/* City */
.gogo-cat-bg-4 {
    background-image: url('../images/cat-city.png');
    background-size: cover;
    background-position: center;
}

/* Tropical Water */

.gogo-bento-title {
    color: var(--gogo-white);
    font-size: 24px;
    margin: 0;
}

/* Grid Spans */
.span-4 {
    grid-column: span 4;
}

.span-6 {
    grid-column: span 6;
}

.span-8 {
    grid-column: span 8;
}

.span-12 {
    grid-column: span 12;
}

@media (max-width: 768px) {

    .span-4,
    .span-6,
    .span-8 {
        grid-column: span 12;
    }

    .gogo-heading-xl {
        font-size: 2.5rem;
    }
}