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

body,
html {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    min-height: 100vh;
}

/* navbar styles */
.logo-text {
    font-family: 'Pacifico', cursive;
    font-size: 26px;
    color: var(--primary-color);
}

.logo-icon {
    font-size: 26px;
    color: #fe424d;
}

.nav-link {
    font-weight: 500;
}

.faster-one-regular {
    font-family: "Faster One", system-ui;
    font-weight: 400;
    font-style: normal;
}

.navbar {
    height: 5rem;
    background-color: white;
}


.nav-link {
    color: #222222 !important;
}

/* Footer Styles */
.footer {
    background-color: #1a1a1a;
    font-size: 0.85rem;
    color: #e0e0e0;
}

/*
.footer-divider {
    border-top: 1px solid #444;
    opacity: 1;
}
    */
.footer-divider {
    border: 0;
    height: 1px;
    background-color: #ffffff;
    /* Pure white */
    opacity: 1;
    /* Remove fading */
}

.footer-cities {
    line-height: 2;
    margin-bottom: 0.5rem;
}

.explore-more {
    font-size: 0.9rem;
    color: #fff;
    cursor: pointer;
}

.footer-heading {
    color: #fff;
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
}

.footer-link {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-link:hover {
    color: #fff;
}

.social-icons i {
    font-size: 1.2rem;
}

.footer-legal {
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
}

.copyright {
    font-size: 0.8rem;
}

.app-buttons img {
    cursor: pointer;
    transition: transform 0.2s;
}

.app-buttons img:hover {
    transform: scale(1.05);
}

/* Navbar Pill Search - Airbnb Style */
.search-pill-container {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

.search-pill {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 40px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.2s;
    height: 48px;
    padding: 0 8px 0 24px;
    margin: 0;
}

.search-pill:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.search-field-pill {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 16px;
    height: 100%;
    position: relative;
    cursor: pointer;
    min-width: 140px;
}

.search-field-pill.date-field {
    min-width: 120px;
}

.search-field-pill:hover {
    background: rgba(0, 0, 0, 0.03);
    border-radius: 40px;
}

.search-field-pill label {
    font-size: 11px;
    font-weight: 800;
    margin: 0;
    color: #222;
    padding-bottom: 2px;
}

.search-field-pill input {
    border: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
    color: #666;
    background: transparent;
    outline: none;
    width: 100%;
    text-overflow: ellipsis;
}

.search-field-pill input::placeholder {
    color: #aaa;
}

.search-field-pill input[type="date"]::-webkit-calendar-picker-indicator {
    background: transparent;
    bottom: 0;
    color: transparent;
    cursor: pointer;
    height: auto;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
}

.pill-divider-nav {
    width: 1px;
    height: 32px;
    background-color: #ddd;
}

.search-pill-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 8px;
    transition: 0.2s;
    flex-shrink: 0;
}

.search-pill-btn:hover {
    background-color: var(--primary-hover);
}

.pac-container {
    z-index: 1050 !important;
}

@media (max-width: 768px) {
    .search-pill-container {
        display: none !important;
    }

    /* Allow dropdown to overflow on mobile */
    body {
        overflow-y: scroll;
        position: relative;
    }

    .pac-container {
        z-index: 9999 !important;
    }

    /* Prevent keyboard from pushing form up */
    input, textarea, select {
        font-size: 16px;
    }

    /* Ensure form stays in view */
    .booking-card {
        width: 100%;
        position: relative;
    }
}