:root {
    --bg-color: #F6EBD4;
    --text-color: #172c25;
    --primary-color: #172c25;
    --secondary-color: #2ea3f2;
    --accent-color: var(--primary-color);
    --secondary-text: #555555;
    --border-color: transparent;

    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    --font-family: 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;
    --container-max-width: 900px;
    --container-wide-width: 1200px;
}

@media (prefers-color-scheme: dark) {
    :root {
        --bg-color: #172c25;
        --text-color: #ffffff;
        --primary-color: #ffffff;
        --secondary-text: #dddddd;
    }
}

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

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body:not(.scrollable) {
    overflow: hidden;
}

h1,
h2,
h3 {
    font-weight: 300;
    letter-spacing: -0.02em;
}

.headline {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.05;
    color: var(--text-color);
    margin-bottom: 2rem;
    letter-spacing: -0.04em;
    text-transform: none;
}

.headline strong {
    font-weight: 900;
    color: var(--primary-color);
}

.description {
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.5;
    color: var(--text-color);
    max-width: 900px;
    margin: 0 auto;
    opacity: 1;
}

.large-text {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-color);
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 0;
    background: transparent;
    z-index: 1000;
}

.site-header .inner-container {
    width: 100%;
    padding: 0 10vw;
    max-width: 100% !important;
}

.header-layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo-img {
    max-width: 50px;
    height: auto;
    display: block;
    border-radius: 50%;
}

.tabs-nav {
    background: transparent;
    padding: 0;
    display: flex;
    gap: var(--spacing-md);
}

.tab-btn {
    background: transparent;
    border: none;
    text-decoration: none;
    padding: 8px 16px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.tab-btn:hover {
    opacity: 1;
}

.tab-btn.active {
    opacity: 1;
    border-bottom-color: var(--primary-color);
    color: var(--primary-color);
}

.main-content {
    width: 100%;
    height: 100vh;
    padding-top: 50px;
}

.tab-content {
    display: none;
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
    scroll-snap-type: y mandatory;
    -webkit-overflow-scrolling: touch;
    background-color: var(--bg-color);
    /* Fix scroll miss on touch */
}

.tab-content::-webkit-scrollbar {
    display: none;
}

.tab-content.active {
    display: block;
}

.slide {
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    max-height: 100vh;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 10vw;
    position: relative;
    overflow: hidden;
    background: transparent !important;
    text-align: left;
}

.inner-container {
    width: 100%;
    max-width: 900px;
    margin: 0;
    margin-bottom: 80px;
    position: relative;
    z-index: 5;
    /* Ensure above hero images */
}

.next-slide-btn {
    position: absolute;
    bottom: 140px;
    left: 50%;
    transform: translateX(-50%);
    background: transparent;
    border: 2px solid var(--text-color);
    color: var(--text-color);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    opacity: 0.6;
    z-index: 999;
    padding: 0;
}

.next-slide-btn:hover {
    background: var(--text-color);
    color: var(--bg-color);
    opacity: 1;
}

.typewriter-cursor::after {
    content: '|';
    animation: blink 1s step-start infinite;
    color: var(--primary-color);
    margin-left: 2px;
    font-weight: 300;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

.ghost-text {
    visibility: hidden;
    opacity: 0;
    position: relative;
    z-index: 0;
}

.visible-text {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    color: var(--text-color);
}

.slide-progress {
    position: fixed;
    bottom: 220px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 900;
}

.progress-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.progress-dot.active {
    background: var(--primary-color);
    transform: scale(1.3);
}

.contact-info {
    margin-top: 40px;
    font-size: 1.2rem;
    opacity: 0.7;
}

.contact-info a {
    color: inherit;
    text-decoration: underline;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: var(--spacing-md) 0;
}

.benefits-list li {
    padding: 0.75rem 0;
    font-size: 1.2rem;
    font-weight: 600;
    opacity: 0.9;
}

.benefits-list strong {
    color: var(--primary-color);
    font-weight: 700;
}

.process-steps {
    display: flex;
    gap: var(--spacing-md);
    margin: var(--spacing-md) 0;
}

.step {
    flex: 1;
    padding: var(--spacing-md);
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
}

.step span {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.split-slide {
    flex-direction: row;
    padding: 0;
}

.split-content {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
}

.left-content {
    align-items: flex-start;
    text-align: left;
    width: 100%;
    padding: 60px 10vw;
}

.right-content {
    position: fixed;
    right: 0;
    top: 100px;
    width: 45vw;
    height: calc(100vh - 100px);
    padding: 20px;
    background: transparent;
    z-index: 500;
    pointer-events: auto;
}

#my-cal-inline-30min {
    width: 100%;
    height: 100%;
    pointer-events: auto;
}

@media screen and (min-width: 769px) {

    #my-cal-inline-30min {
        padding-right: 30px;
    }

}

.inner-container-left {
    max-width: 600px;
}



.slide .headline,
.slide .description,
.slide .benefits-list,
.slide .process-steps {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: 0.2s;
}

.slide.animate-in .headline,
.slide.animate-in .description,
.slide.animate-in .benefits-list,
.slide.animate-in .process-steps {
    opacity: 1;
    transform: translateX(0);
}

.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 20px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    max-width: 600px;
    width: 90%;
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cookie-actions {
    display: flex;
    gap: 10px;
}

.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.btn-secondary {
    background: transparent;
    color: var(--text-color);
    border: 1px solid var(--text-color);
}

.vendor-wrapper {
    display: flex;
    flex-direction: row;
    width: 100%;
    min-height: 100vh;
    position: relative;
    padding: 0 10vw;
    align-items: center;
    box-sizing: border-box;
}

.vendor-text-section {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.vendor-text-section .inner-container {
    max-width: 600px;
    margin: 0;
}

.vendor-cal-section {
    position: absolute;
    right: 0;
    top: 100px;
    width: 45vw;
    height: calc(100vh - 100px);
    z-index: 10;
}

#my-cal-inline-30min {
    width: 100%;
    height: 100%;
    border: none;
}

.vendor-footer {
    display: none;
}

.hero-image {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
    /* Was -1, checking visibility */
    pointer-events: none;
    user-select: none;
    transition: transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-mac {
    right: -2vw;
    bottom: 0;
    width: 45vw;
    max-width: 1100px;
}

.hero-iphone {
    right: 35vw;
    bottom: 0;
    width: 10vw;
    max-width: 300px;
    z-index: 2;
}

/* Parallax Effects */
body[data-active-slide="0"] .hero-iphone {
    transform: translateY(0);
}

body[data-active-slide="1"] .hero-iphone {
    transform: translateY(100vh) scale(0.95);
}

body[data-active-slide="1"] .hero-mac {
    transform: translateX(100vw) scale(0.95);
}

body[data-active-slide="2"] .hero-iphone {
    transform: translateY(-200px) scale(0.9);
    opacity: 0;
    /* Fade out on last slide maybe? */
}

.hero-trip-planner {
    left: 75%;
    bottom: -100vh;
    /* Start off-screen down */
    width: 20vw;
    max-width: 400px;
    z-index: 3;
    opacity: 0;
    transform: translateX(-50%) translateY(100px);
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

body[data-active-slide="0"] .hero-trip-planner {
    transform: translateX(-50%) translateY(100vh);
    opacity: 0;
}

body[data-active-slide="1"] .hero-trip-planner {
    bottom: 15vh;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

body[data-active-slide="2"] .hero-trip-planner {
    transform: translateX(-50%) translateY(-100vh) scale(0.9);
    opacity: 0;
}