* {
    font-family: 'Sora', sans-serif;
    font-weight: 200;
}

.spacing {
    margin: auto;
    padding: 0px max(calc((100vw - 1200px)/2), 40px);
    box-sizing: border-box;
}

body {
    background-color: #fafaf5;
}

.navbar {
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    padding: 16px 40px;
    background-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    z-index: 1000;
}

.navbar:hover {
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.navbar-title {
    flex: 1;
}

.navbar-title h1 {
    font-size: 24px;
    font-weight: 700;
    color: #111;
    margin: 0;
}

.navbar-links {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
}

.navbar-links a {
    text-decoration: none;
    color: #555;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.navbar-links a::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    bottom: -4px;
    width: 100%;
    height: 2px;
    background-color: #0077cc;
    transform-origin: center;
    transition: transform 0.3s ease;
}

.navbar-links a:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.navbar-links a:hover {
    color: #0077cc;
}

.landing-container, .landing-container > * {
    height: 90vh;
    width: 100%;
}

.landing-image {
    object-fit: cover;
    backdrop-filter: blur(1px);
    filter: brightness(0.5);
}

.landing-image {
    object-fit: cover;
    width: 100%;
    height: 100%;
    filter: blur(2px);
    transition: filter 4s ease;
}

.landing-top {
    z-index: 3;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 12px;
}

.landing-header, .landing-text {
    color: #eee;
    text-shadow: 2px 2px 20px #111;
}

.landing-header {
    font-size: 64px;
    font-weight: 800;
}

.landing-text {
    font-size: 34px;
    font-weight: 100;
}

.content {
    padding-top: 40px;
    padding-bottom: 40px;
}

.content > h3 {
    font-size: 32px;
    margin-bottom: 16px;
}

.interest-container {
    display: flex;
    justify-content: center;
    align-content: center;
    gap: 8px;
}

.loc-cards-container {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    gap: 12px;
}

.loc-container, .loc-top, .loc-img-container {
    border-radius: 4px;
}

.loc-img-container {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.loc-top {
    z-index: 3;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 4px;
    padding: 12px;
    box-sizing: border-box;
    cursor: pointer;
    background: linear-gradient(7deg, rgba(11,11,11,1) 0%, rgba(28,28,28,0.7) 30%, rgba(80,80,80,0) 100%);
}

.loc-top > * {
    color: white;
    text-shadow: 2px 2px 12px #111;
    text-decoration: none;
}

.loc-top > a {
    font-size: 32px;
    font-weight: 500;
}

.loc-container {
    background-color: #ddd;
    width: 100%;
    aspect-ratio: 3 / 4;
    max-height: 350px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    filter: drop-shadow(2px 2px 12px #11111140);
}

a, button, .loc-top, .scroll-btn, .hamburger {
    cursor: pointer;
}

@media only screen and (max-width: 768px) {
    .loc-cards-container {
        grid-template-columns: 1fr 1fr;
    }

    .navbar {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-nav {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.9);
        padding: 16px;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        z-index: 9999;
    }

    .mobile-nav.show {
        display: flex;
    }
}

@media only screen and (max-width: 600px) {
    .loc-cards-container {
        grid-template-columns: 1fr;
    }

    .loc-container {
        background-color: #ddd;
        width: 100%;
        height: 300px;
    }
}

.blur-box {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    max-width: 800px;
    margin: 0 auto;
    animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.blur-box h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #111;
}

.blur-box p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.blur-box form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.blur-box label {
    font-weight: 500;
    font-size: 16px;
    color: #111;
}

.blur-box input,
.blur-box textarea,
.blur-box select {
    padding: 12px 14px;
    font-family: inherit;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 10px;
    background-color: #fdfdfd;
    transition: 0.3s border-color, 0.3s box-shadow;
    width: 100%;
}

.blur-box input:focus,
.blur-box textarea:focus,
.blur-box select:focus {
    border-color: black;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.blur-box button {
    background-color: black;
    color: white;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.blur-box button:hover {
    background-color: #333;
}

@media (max-width: 600px) {
    .blur-box {
        width: 90% !important;
        padding: 20px !important;
    }

    .blur-box input,
    .blur-box textarea,
    .blur-box select,
    .blur-box button {
        width: 100% !important;
        box-sizing: border-box;
    }
}

.hamburger {
    display: none;
    position: fixed;
    top: 16px;
    left: 16px;
    z-index: 1001;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(12px) saturate(160%);
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hamburger i {
    color: #111;
    font-size: 22px;
    line-height: 1;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #eee;
    padding: 16px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 9999;
}

.mobile-nav.show {
    display: flex;
}

.mobile-nav a {
    padding: 10px 0;
    text-decoration: none;
    color: black;
    font-size: 18px;
}

@media only screen and (max-width: 768px) {
    .navbar {
        background: transparent;
        box-shadow: none;
        padding-top: 0;
        padding-bottom: 0;
    }

    .navbar-title {
        display: none;
    }

    .hamburger {
        font-size: 36;
        display: flex;
    }
}

.badge-container {
    position: absolute;
    top: 8px;
    left: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    z-index: 5;
}

.badge {
    padding: 6px 14px !important;
    border-radius: 999px;
    font-size: 15px !important;
    font-weight: 600 !important;
    color: white !important;
    font-family: 'Sora', sans-serif;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.15);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    white-space: nowrap;
}

.badge.cheap {
    background: rgba(76, 175, 80, 0.4);
}

.badge.popular {
    background: rgba(244, 67, 54, 0.4);
}

.badge.location {
    background: rgba(33, 150, 243, 0.4);
}

.badge.coffee {
    background: rgb(111, 78, 55, 0.4);
}

.badge.hidden {
    background: rgba(156, 39, 176, 0.4);
}

.badge.vegan {
    background: rgba(0, 150, 136, 0.4);
}

.badge.comfy {
    background: rgba(255, 119, 0, 0.4);
}

.badge.star {
    background: rgba(255, 217, 0, 0.436);
}

.content h3 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 20px;
    margin-top: 60px;
    font-family: 'Sora', sans-serif;
    color: #111;
}

.scroll-wrapper {
    position: relative;
    overflow: hidden;
}

.loc-scroll-container {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(250px, 1fr);
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 16px 0;
}

.loc-scroll-container::-webkit-scrollbar {
    display: none;
}

.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    cursor: pointer;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    line-height: 1;
    color: #111;
    backdrop-filter: blur(12px) saturate(160%);
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.scroll-btn:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: translateY(-50%) scale(1.05);
    scale: 1.1;
}

.scroll-btn.left {
    left: 8px;
}

.scroll-btn.right {
    right: 8px;
}

@media (max-width: 768px) {
    .loc-scroll-container {
        grid-auto-columns: minmax(200px, 80%);
    }
}

.main-footer {
    width: 100%;
    padding: 30px 0;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 60px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.footer-text {
    font-size: 14px;
    color: #555;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 16px;
}

.footer-links a {
    text-decoration: none;
    color: #111;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #0077cc;
}

body.contact-page,
body.about-page {
    height: 100%;
    display: flex;
    flex-direction: column;
}

body.contact-page .main-content,
body.about-page .main-content {
    flex: 1;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

.page-wrapper {
    min-height: calc(100vh - 80px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.site-footer {
    height: 80px;
    flex-shrink: 0;
}

body.submit-page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

body.submit-page .content {
    flex: 1;
}


