:root {
    --primary-color1: #ffffff !important;
    --primary-color2: #3498DB !important;
    --cta-button-color: #3498DB !important;
    --gg-accent: #8abac8;
    --gg-text: #333;
    --gg-text-light: #666;
    --gg-border: #eee;
    --gg-footer-bg: #333032;
}

/* Sticky footer: push footer to bottom of viewport */
html, body {
    height: 100%;
}
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.gg-footer {
    margin-top: auto !important;
}

/* GuideGurus Prelander Styles */
.gg-header {
    background: #fff;
    border-bottom: 1px solid var(--gg-border);
    padding: 0.6em 0;
    min-height: 72px;
}

.gg-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1em;
}

.gg-logo {
    max-width: 200px;
    height: auto;
}

.gg-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 14px;
}

.gg-nav li a {
    color: #5898ab;
    font-size: 1.05em;
    text-transform: uppercase;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s;
}

.gg-nav li a:hover {
    color: var(--gg-text);
}

.gg-search-bar {
    position: relative;
}

.gg-search-bar input {
    border: 1px solid var(--gg-accent);
    width: 280px;
    line-height: 2.5em;
    padding: 0 2em 0 0.7em;
    font-size: 0.9em;
    color: var(--gg-text);
    border-radius: 0.2em;
    background: #fff;
    outline: none;
}

.gg-search-bar input:focus {
    border-color: var(--primary-color2);
}

/* Prelander Content */
.gg-prelander {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2em 1em 3em;
}

.gg-section-label {
    font-family: 'Arvo', serif;
    font-size: 1.3em;
    color: var(--gg-text);
    margin-bottom: 1em;
    padding-bottom: 0.3em;
    border-bottom: 2px solid var(--gg-accent);
    display: inline-block;
}

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

.gg-card {
    border: 2px solid var(--gg-accent);
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    transition: box-shadow 0.3s, transform 0.15s;
    text-decoration: none;
    color: inherit;
    display: block;
    background: #fff;
}

.gg-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.13);
    transform: translateY(-2px);
}

.gg-card-image {
    position: relative;
    overflow: hidden;
    padding-bottom: 55%;
    background: #f0f4f6;
}

.gg-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gg-card-body {
    padding: 0.8em 1em;
    border-top: 1px solid var(--gg-border);
}

.gg-card-body h3 {
    font-family: 'Arvo', serif;
    font-size: 1.1em;
    margin: 0;
    color: var(--gg-text);
    line-height: 1.3;
}

/* Footer */
.gg-footer {
    background: var(--gg-footer-bg);
    color: #aaa;
    padding: 40px 0 30px;
    margin-top: 3em;
    font-size: 0.9em;
}

.gg-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 0 1em;
}

.gg-footer-links {
    list-style: none;
    margin: 0 0 1em;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.3em;
}

.gg-footer-links li {
    display: inline;
}

.gg-footer-links li:not(:last-child)::after {
    content: "|";
    margin-left: 0.5em;
    color: #666;
}

.gg-footer-links a {
    color: #999;
    text-decoration: none;
    padding: 0 0.3em;
    transition: color 0.3s;
}

.gg-footer-links a:hover {
    color: #fff;
}

.gg-footer-copyright {
    font-size: 0.85em;
    margin-top: 1em;
}

/* Responsive */
@media (max-width: 991px) {
    .gg-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gg-header-inner {
        flex-wrap: wrap;
        gap: 0.5em;
    }

    .gg-nav {
        display: none;
    }

    .gg-search-bar input {
        width: 200px;
    }
}

@media (max-width: 575px) {
    .gg-grid {
        grid-template-columns: 1fr;
    }

    .gg-search-bar {
        display: none;
    }

    .gg-section-label {
        font-size: 1.1em;
    }
}
