/* =========================================================
   ROAM
   ========================================================= */

:root {
    --dark: #15251e;
    --dark-2: #20372d;
    --cream: #f5f1e9;
    --cream-2: #ebe5da;
    --orange: #d66b3e;
    --orange-light: #edb49a;
    --muted: #777e78;
    --white: #ffffff;
  	--green: #008000;

    --serif: "Playfair Display", Georgia, serif;
    --sans: "DM Sans", Arial, sans-serif;
}


/* ================= RESET ================= */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--cream);
    color: var(--dark);
    font-family: var(--sans);
    line-height: 1.5;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
}

img {
    max-width: 100%;
    display: block;
}

i {
    font-family: var(--serif);
    font-weight: 500;
}


/* ================= HEADER ================= */

.header {
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    width: 100%;
    color: white;
  	
  	background: rgba(17, 17, 17, 0.80);
    backdrop-filter: blur(10px);
}

.header-inner {
    width: min(1240px, calc(100% - 60px));
    height: 90px;
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.logo {
    display: flex;
    align-items: center;
    gap: 9px;

    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.05em;
}

.logo-dot {
    width: 10px;
    height: 10px;

    background: var(--orange-light);
    border-radius: 50%;
}

.nav {
    display: flex;
    gap: 35px;
}

.nav a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.75);
    
  transition: color 0.2s;
}

.signin-btn {
    padding: 0;
    margin: 0;

    border: 0;
    background: none;

    color: rgba(255,255,255,0.75);

    font-family: var(--sans);
    font-size: 0.78rem;
    font-weight: 400;

    line-height: 1.5;
    vertical-align: middle;

    transition: color 0.2s;
}


/* ================= SIGN IN POPUP ================= */

.signin-popup {
    position: fixed;
    z-index: 20;

    top: 75px;
    right: max(40px, calc((100% - 1340px) / 2));

    width: 310px;
    padding: 30px;

    box-sizing: border-box;

    background: var(--cream);
    color: var(--dark);

    border: 1px solid rgba(21, 37, 30, 0.1);
    border-radius: 16px;

    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translateY(-10px) scale(0.98);

    transition:
        opacity 0.2s ease,
        transform 0.2s ease,
        visibility 0.2s ease;
}

.signin-popup.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transform: translateY(0) scale(1);
}


/* Sign in heading */

.signin-popup h2 {
    margin: 0 0 5px;
	text-align: center;
    font-family: var(--serif);
    font-size: 2.2rem;
    font-weight: 500;

    line-height: 1;
}

.signin-popup > p {
    margin: 0 0 25px;
	text-align: center;
    color: var(--muted);
    font-size: 0.78rem;
}


/* Close button */

.signin-close {
    position: absolute;

    top: 12px;
    right: 15px;

    padding: 0;

    border: 0;
    background: none;

    color: var(--muted);

    font-size: 1.5rem;
    line-height: 1;

    cursor: pointer;

    transition: color 0.2s ease;
}

.signin-close:hover {
    color: var(--dark);
}


/* Sign in form */

.signin-popup form {
    display: flex;
    flex-direction: column;
}

.signin-popup label {
    margin-bottom: 6px;

    color: var(--dark);

    font-size: 0.68rem;
    font-weight: 700;
}

.signin-popup input {
    width: 100%;
    height: 42px;

    box-sizing: border-box;

    margin-bottom: 15px;
    padding: 0 12px;

    border: 1px solid #ddd8ce;
    border-radius: 8px;

    background: var(--white);
    color: var(--dark);

    font-family: var(--sans);
    font-size: 0.78rem;

    outline: none;

    transition: border-color 0.2s ease;
}

.signin-popup input:focus {
    border-color: var(--orange);
}

/* =========================================
   SIGN IN OPTIONS
========================================= */

.signin-options {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin: 0 0 15px;
}


/* =========================================
   GOOGLE BUTTON
========================================= */

.google-icon-btn {
    width: 28px;
    height: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    border: 1px solid #ddd8ce;
    border-radius: 50%;

    background: var(--white);

    cursor: pointer;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.google-icon-btn img {
    width: 16px;
    height: 16px;

    display: block;
}

.google-icon-btn:hover {
    transform: translateY(-1px);

    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.10);
}


/* =========================================
   FORGOT PASSWORD
========================================= */

.signin-options .forgot-password {
    margin: 0;

    color: var(--muted);

    font-size: 0.68rem;

    text-decoration: none;

    transition: color 0.2s ease;
}

.signin-options .forgot-password:hover {
    color: var(--orange);
}

/* Sign in button */

.signin-submit {
    width: 100%;
    height: 44px;

    margin-top: 5px;

    border: 0;
    border-radius: 8px;

    background: var(--dark);
    color: var(--white);

    font-family: var(--sans);
    font-size: 0.72rem;
    font-weight: 700;

    cursor: pointer;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.signin-submit:hover {
    background: var(--orange);

    transform: translateY(-1px);
}

.register-link {
    display: block;
    margin-top: 20px;

    text-align: center;

    color: var(--dark);

    font-size: 0.78rem;

    transition: color 0.2s ease;
}

.register-link:hover {
    color: var(--orange);
}

/* ================= PROFILE BUTTON LOGGED IN ================= */

.profile-btn {
    color: rgba(255,255,255,0.75);

    font-family: var(--sans);
    font-size: 0.78rem;
    font-weight: 400;

    transition: color 0.2s ease;
}

.profile-btn:hover {
    color: var(--white);
}

/* ================= FORGOT PASSWORD POPUP ================= */

.forgot-popup {
    position: fixed;
    z-index: 1000;

    top: 50%;
    left: 50%;

    width: min(380px, calc(100% - 40px));
    padding: 35px;

    box-sizing: border-box;

    background: var(--cream);
    color: var(--dark);

    border: 1px solid rgba(21, 37, 30, 0.1);
    border-radius: 16px;

    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translate(-50%, -45%) scale(0.98);

    transition:
        opacity 0.25s ease,
        transform 0.25s ease,
        visibility 0.25s ease;
}

.forgot-popup.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transform: translate(-50%, -50%) scale(1);
}

.forgot-popup h2 {
    margin: 0 0 8px;

    text-align: center;

    font-family: var(--serif);
    font-size: 2.1rem;
    font-weight: 500;

    line-height: 1;
}

.forgot-popup > p {
    margin: 0 0 25px;

    text-align: center;

    color: var(--muted);

    font-size: 0.78rem;
    line-height: 1.5;
}

.forgot-close {
    position: absolute;

    top: 12px;
    right: 15px;

    padding: 0;

    border: 0;
    background: none;

    color: var(--muted);

    font-size: 1.5rem;
    line-height: 1;

    cursor: pointer;
}

.forgot-close:hover {
    color: var(--dark);
}

.forgot-popup form {
    display: flex;
    flex-direction: column;
}

.forgot-popup label {
    margin-bottom: 6px;

    color: var(--dark);

    font-size: 0.68rem;
    font-weight: 700;
}

.forgot-popup input {
    width: 100%;
    height: 42px;

    box-sizing: border-box;

    margin-bottom: 15px;
    padding: 0 12px;

    border: 1px solid #ddd8ce;
    border-radius: 8px;

    background: var(--white);
    color: var(--dark);

    font-family: var(--sans);
    font-size: 0.78rem;

    outline: none;
}

.forgot-popup input:focus {
    border-color: var(--orange);
}

.forgot-submit {
    width: 100%;
    height: 44px;

    margin-top: 5px;

    border: 0;
    border-radius: 8px;

    background: var(--dark);
    color: var(--white);

    font-family: var(--sans);
    font-size: 0.72rem;
    font-weight: 700;

    cursor: pointer;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.forgot-submit:hover {
    background: var(--orange);

    transform: translateY(-1px);
}

.forgot-message {
    min-height: 20px;

    margin: 40px 5px 0;

    text-align: center;

    color: var(--dark);

    font-size: 0.95rem;
    line-height: 1.5;
}

.forgot-message.error {
    color: var(--dark);
}

.forgot-message.success {
    color: var(--dark);
}

/* ================= ERROR POPUP ================= */

.message-overlay {
    position: fixed;
    inset: 0;

    z-index: 2000;

    display: flex;
    align-items: center;
    justify-content: center;

    /* No blur or dark overlay */
    background: transparent;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;
}

.message-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.message-popup {
    position: relative;

    width: min(380px, calc(100% - 40px));

    padding: 35px 35px 25px;

    box-sizing: border-box;

    background: var(--cream);
    color: var(--dark);

    border: 1px solid rgba(21, 37, 30, 0.1);
    border-radius: 16px;

    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);

    text-align: center;

    overflow: hidden;

    transform: translateY(15px) scale(0.98);

    transition: transform 0.25s ease;
}

.message-overlay.active .message-popup {
    transform: translateY(0) scale(1);
}


/* Close */

.message-close {
    position: absolute;

    top: 12px;
    right: 16px;

    padding: 0;

    border: 0;
    background: none;

    color: var(--muted);

    font-size: 1.5rem;
    line-height: 1;

    cursor: pointer;
}

.message-close:hover {
    color: var(--dark);
}


/* Heading */

.message-popup h2 {
    margin: 0 0 8px;

    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 500;

    line-height: 1;
}


/* Message */

.message-popup p {
    margin: 0;

    color: var(--muted);

    font-size: 0.82rem;
}


/* 5 second timer */

.message-timer {
    position: absolute;

    bottom: 0;
    left: 0;

    width: 100%;
    height: 3px;

    background: var(--orange);

    transform-origin: left;
    transform: scaleX(1);
}

.message-overlay.active .message-timer {
    animation: messageTimer 3s linear forwards;
}

@keyframes messageTimer {
    from {
        transform: scaleX(1);
    }

    to {
        transform: scaleX(0);
    }
}

/* ================= REGISTER POPUP ================= */

.register-popup {
    position: fixed;
    z-index: 1000;

    top: 50%;
    left: 50%;

    width: min(420px, calc(100% - 40px));
    padding: 35px;

    box-sizing: border-box;

    background: var(--cream);
    color: var(--dark);

    border: 1px solid rgba(21, 37, 30, 0.1);
    border-radius: 16px;

    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translate(-50%, -45%) scale(0.98);

    transition:
        opacity 0.25s ease,
        transform 0.25s ease,
        visibility 0.25s ease;
}

.register-popup.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transform: translate(-50%, -50%) scale(1);
}


/* Register heading */

.register-popup h2 {
    margin: 0 0 8px;
	text-align: center;
    font-family: var(--serif);
    font-size: 2.2rem;
    font-weight: 500;
    line-height: 1;
}

.register-popup > p {
    margin: 0 0 25px;
	text-align: center;
    color: var(--muted);
    font-size: 0.78rem;
}


/* Register close button */

.register-close {
    position: absolute;

    top: 12px;
    right: 15px;

    padding: 0;

    border: 0;
    background: none;

    color: var(--muted);

    font-size: 1.5rem;
    line-height: 1;

    cursor: pointer;

    transition: color 0.2s ease;
}

.register-close:hover {
    color: var(--dark);
}


/* Register form */

.register-popup form {
    display: flex;
    flex-direction: column;
}

.register-popup label {
    margin-bottom: 6px;

    color: var(--dark);

    font-size: 0.68rem;
    font-weight: 700;
}

.register-popup input {
    width: 100%;
    height: 42px;

    box-sizing: border-box;

    margin-bottom: 15px;
    padding: 0 12px;

    border: 1px solid #ddd8ce;
    border-radius: 8px;

    background: var(--white);
    color: var(--dark);

    font-family: var(--sans);
    font-size: 0.78rem;

    outline: none;

    transition: border-color 0.2s ease;
}

.register-popup input:focus {
    border-color: var(--orange);
}

.register-popup input::placeholder {
    color: rgba(21, 37, 30, 0.4);
}


/* Register button */

.register-submit {
    width: 100%;
    height: 44px;

    margin-top: 5px;

    border: 0;
    border-radius: 8px;

    background: var(--dark);
    color: var(--white);

    font-family: var(--sans);
    font-size: 0.72rem;
    font-weight: 700;

    cursor: pointer;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.register-submit:hover {
    background: var(--orange);

    transform: translateY(-1px);
}


/* Register footer */

.register-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;

    margin-top: 23px;

    color: var(--muted);
    font-size: 0.78rem;
}

.register-signin {
    padding: 0;

    border: 0;
    background: none;

    color: var(--orange);

    font-family: inherit;
    font-size: inherit;

    cursor: pointer;

    transition: color 0.2s ease;
}

.register-signin:hover {
    color: var(--dark);
}

/* ================= MULTISITE SITE ================= */

.signout-btn {
    padding: 0;
    margin: 0;

    border: 0;
    background: none;

    color: rgba(255,255,255,0.75);

    font-family: var(--sans);
    font-size: 0.78rem;
    font-weight: 400;

    line-height: 1.5;
    vertical-align: middle;

    transition: color 0.2s;
}

.signout-btn:hover {
    color: var(--white);
}

/* =========================================================
   TRAVEL + AI HERO
========================================================= */

.travel-ai-hero {
    position: relative;

    width: calc(100% - 2cm);
    max-width: none;
    min-height: 780px;

    margin: calc(90px + 1.5cm) auto 30px;

    display: flex;
    align-items: center;

    overflow: hidden;

    border-radius: 32px;

    color: var(--white);

    background: var(--dark);

    box-sizing: border-box;

    isolation: isolate;
}


/* =========================================================
   SLIDESHOW
========================================================= */

.travel-hero-slides {
    position: absolute;
    inset: 0;

    overflow: hidden;

    z-index: -3;
}


.travel-hero-slide {
    position: absolute;
    inset: 0;

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    opacity: 0;

    transform: scale(1.04);

    transition:
        opacity 1.2s ease,
        transform 10s ease;
}


.travel-hero-slide.active {
    opacity: 1;

    transform: scale(1);
}


/* =========================================================
   DARK IMAGE OVERLAY
========================================================= */

.travel-ai-overlay {
    position: absolute;
    inset: 0;

    z-index: -2;

    background:
        linear-gradient(
            180deg,
            rgba(10, 28, 21, 0.82) 0%,
            rgba(10, 28, 21, 0.68) 45%,
            rgba(10, 28, 21, 0.48) 100%
        );
}


/* =========================================================
   MAIN CONTENT
========================================================= */

.travel-ai-content {
    position: relative;
    z-index: 2;

    width: 100%;
    min-height: 780px;

    box-sizing: border-box;

    padding: 70px 75px 100px;
}


/* =========================================================
   LEFT SIDE
========================================================= */

.travel-ai-left {
    position: absolute;

    left: 75px;
    top: 50%;

    transform: translateY(-50%);

    width: 42%;
    max-width: 650px;
}


/* =========================================================
   TRAVEL FOR THE MOMENT
========================================================= */

.travel-hero-tag {
    display: flex;
    align-items: center;

    gap: 12px;

    margin-bottom: 25px;

    color: var(--orange-light);

    font-size: 0.7rem;
    font-weight: 600;

    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.travel-hero-tag span {
    width: 28px;
    height: 1px;

    background: var(--orange-light);
}


/* =========================================================
   MAIN HEADLINE
========================================================= */

.travel-ai-left h1 {
    max-width: 800px;

    margin: 0;

    font-size: clamp(4rem, 7vw, 7rem);

    font-weight: 600;

    line-height: 0.93;

    letter-spacing: -0.065em;

    color: var(--white);
}

.travel-ai-left h1 i {
    color: #efb596;

    font-style: italic;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.travel-ai-left > p {
    max-width: 480px;

    margin: 30px 0 0;

    color: rgba(255, 255, 255, 0.76);

    font-size: 0.95rem;

    line-height: 1.8;
}


/* =========================================================
   FEATURED EVENT
   FIXED TO BOTTOM-RIGHT OF HERO
========================================================= */

.travel-hero-location {
    position: absolute;

    right: 75px;
    bottom: 55px;

    display: flex;
    flex-direction: column;

    gap: 4px;

    margin: 0;

    text-align: right;
}

.travel-hero-location span {
    color: rgba(255, 255, 255, 0.55);

    font-size: 0.65rem;

    letter-spacing: 0.14em;

    text-transform: uppercase;
}

.travel-hero-location strong {
    color: var(--white);

    font-size: 0.85rem;

    font-weight: 500;
}


/* =========================================================
   RIGHT SIDE / CHAT POSITION
========================================================= */

.travel-ai-right {
    position: absolute;

    top: 50%;
    right: 75px;

    width: 460px;

    transform: translateY(-42%);
}


/* =========================================================
   CHAT CARD
========================================================= */

.ai-chat {
    position: relative;

    width: 100%;

    min-height: 0;
    height: 390px;

    background: rgba(15, 29, 23, 0.94);

    border: 1px solid rgba(255, 255, 255, 0.12);

    border-radius: 24px;

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.30);

    box-sizing: border-box;

    overflow: hidden;

    backdrop-filter: blur(18px);
}


/* =========================================================
   CHAT HEADER
========================================================= */

.ai-chat-header {
    position: relative;

    display: flex;
    align-items: center;

    height: 62px;

    padding: 0 25px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.10);

    color: rgba(255, 255, 255, 0.88);

    font-family: var(--serif);

    font-size: 17px;

    font-weight: 400;
}

.ai-chat-header::before {
    content: "";

    width: 7px;
    height: 7px;

    margin-right: 10px;

    border-radius: 50%;

    background: #83c99c;

    box-shadow:
        0 0 12px rgba(131, 201, 156, 0.6);
}


/* =========================================================
   CHAT BODY
========================================================= */

.ai-chat-body {
    padding: 30px;
}


/* =========================================================
   CHAT INTRO
========================================================= */

.ai-chat-label {
    display: block;

    margin-bottom: 15px;

    color: var(--orange-light);

    font-size: 0.62rem;

    font-weight: 600;

    letter-spacing: 0.15em;

    text-transform: uppercase;
}

.ai-chat-intro h2 {
    margin: 0 0 28px;

    color: var(--white);

    font-family: var(--serif);

    font-size: 32px;

    font-weight: 400;

    line-height: 1.05;

    letter-spacing: -1px;
}

.ai-chat-intro h2 i {
    color: var(--orange-light);

    font-style: italic;
}


/* =========================================================
   INPUT
========================================================= */

.ai-input-wrapper {
    position: relative;

    display: flex;
    align-items: center;

    width: 100%;

    padding: 6px;

    gap: 10px;

    box-sizing: border-box;

    background: rgba(255, 255, 255, 0.08);

    border: 1px solid rgba(255, 255, 255, 0.12);

    border-radius: 14px;

    transition:
        border-color 0.2s ease,
        background 0.2s ease;
}

.ai-input-wrapper:focus-within {
    background: rgba(255, 255, 255, 0.10);

    border-color: rgba(255, 255, 255, 0.25);
}


/* =========================================================
   TEXTAREA
========================================================= */

.ai-input-wrapper textarea {
    flex: 1;

    width: 100%;
    height: 52px;

    padding: 14px 15px;

    resize: none;

    box-sizing: border-box;

    background: transparent;

    border: none;
    outline: none;

    color: var(--white);

    font-family: var(--sans);

    font-size: 13px;

    line-height: 20px;
}

.ai-input-wrapper textarea::placeholder {
    color: rgba(255, 255, 255, 0.45);
}


/* =========================================================
   SEND BUTTON
========================================================= */

.ai-send {
    width: 48px;
    height: 48px;

    flex: 0 0 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: none;

    border-radius: 10px;

    background: var(--orange);

    color: var(--white);

    font-size: 20px;

    cursor: pointer;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.ai-send:hover {
    background: var(--orange-light);

    transform: translateX(2px);
}


/* =========================================================
   QUICK OPTIONS
========================================================= */

.ai-suggestions {
    display: flex;
    flex-wrap: wrap;

    gap: 7px;

    margin-top: 16px;
}

.ai-suggestion {
    padding: 8px 13px;

    background: transparent;

    border: 1px solid rgba(255, 255, 255, 0.12);

    border-radius: 100px;

    color: rgba(255, 255, 255, 0.58);

    font-family: var(--sans);

    font-size: 11px;

    font-weight: 500;

    cursor: pointer;

    transition:
        color 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease;
}

.ai-suggestion:hover {
    background: rgba(255, 255, 255, 0.08);

    border-color: rgba(255, 255, 255, 0.25);

    color: var(--orange-light);
}


/* =========================================================
   SLIDESHOW DOTS
========================================================= */

.travel-hero-dots {
    position: absolute;

    z-index: 5;

    left: 50%;
    bottom: 28px;

    transform: translateX(-50%);

    display: flex;
    align-items: center;

    gap: 9px;
}


.travel-hero-dot {
    width: 8px;
    height: 8px;

    padding: 0;

    border: 1px solid rgba(255, 255, 255, 0.9);

    border-radius: 50%;

    background: transparent;

    opacity: 0.7;

    cursor: pointer;

    transition:
        background 0.25s ease,
        opacity 0.25s ease,
        transform 0.25s ease;
}


.travel-hero-dot:hover {
    opacity: 1;

    transform: scale(1.3);
}


.travel-hero-dot.active {
    background: white;

    opacity: 1;

    transform: scale(1.15);
}


/* ================= DESTINATIONS ================= */

.destinations {
    padding: 130px 0;
    background: var(--dark);
    color: white;
}

.destinations-header {
    width: min(1120px, calc(100% - 60px));
    margin: auto;

    display: flex;
    justify-content: space-between;
    align-items: end;

    margin-bottom: 60px;
}

.destinations-header h2 {
    margin-top: 18px;

    font-size: clamp(3rem, 5vw, 4.5rem);
    line-height: 1;
    letter-spacing: -0.05em;
}

.destinations-header h2 i {
    color: var(--orange-light);
}

.destinations-header > p {
    max-width: 240px;

    color: rgba(255,255,255,0.5);

    font-size: 0.8rem;
    line-height: 1.7;
}

.destination-list {
    width: min(1120px, calc(100% - 60px));
    margin: auto;

    border-top: 1px solid rgba(255,255,255,0.15);
}

.destination {
    min-height: 130px;

    display: grid;
    grid-template-columns: 70px 190px 1fr 40px;
    gap: 25px;
    align-items: center;

    border-bottom: 1px solid rgba(255,255,255,0.15);

    transition: 0.3s;
}

.destination:hover {
    padding-left: 15px;
    background: rgba(255,255,255,0.025);
}

.destination-number {
    color: rgba(255,255,255,0.35);

    font-size: 0.65rem;
}

.destination-photo {
    width: 190px;
    height: 85px;

    background-position: center;
    background-size: cover;

    filter: saturate(0.8);

    transition: 0.3s;
}

.destination:hover .destination-photo {
    filter: saturate(1);
}

.photo-japan {
    background-image: url("https://images.unsplash.com/photo-1493976040374-85c8e12f0c0e?auto=format&fit=crop&w=700&q=85");
}

.photo-portugal {
    background-image: url("https://images.unsplash.com/photo-1555881400-74d7acaacd8b?auto=format&fit=crop&w=700&q=85");
}

.photo-iceland {
    background-image: url("https://images.unsplash.com/photo-1504829857797-ddff29c27927?auto=format&fit=crop&w=700&q=85");
}

.photo-greece {
    background-image: url("https://images.unsplash.com/photo-1601581875309-fafbf2d3ed3a?auto=format&fit=crop&w=700&q=85");
}

.destination-name span {
    color: var(--orange-light);

    font-size: 0.63rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.destination-name h3 {
    margin-top: 3px;

    font-family: var(--serif);

    font-size: 2rem;
    font-weight: 500;
}

.destination-arrow {
    color: rgba(255,255,255,0.5);

    font-size: 1.2rem;

    transition: 0.25s;
}

.destination:hover .destination-arrow {
    color: white;
    transform: rotate(45deg);
}


/* ================= ABOUT ================= */

.about {
    padding: 130px 0;
    background: var(--cream-2);
}

.about-inner {
    width: min(1120px, calc(100% - 60px));
    margin: auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;

    margin-top: 60px;
}

.about-grid h2 {
    font-size: clamp(3rem, 5vw, 4.5rem);
    line-height: 1.02;
    letter-spacing: -0.055em;
}

.about-grid h2 i {
    color: var(--orange);
}

.about-text {
    padding-top: 15px;
    max-width: 430px;
}

.about-text p {
    color: var(--muted);

    font-size: 0.9rem;
    line-height: 1.9;
}

.about-text p + p {
    margin-top: 20px;
}

.about-large {
    margin-bottom: 30px;

    color: var(--dark) !important;

    font-family: var(--serif);
    font-size: 1.45rem !important;
    line-height: 1.4 !important;
}


/* ================= FOOTER ================= */

.footer {
    padding: 30px 0;

    background: var(--dark);
    color: white;
}

.footer-inner {
    width: min(1120px, calc(100% - 60px));
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer p {
    color: rgba(255,255,255,0.4);

    font-size: 0.7rem;
}

.footer-inner > span {
    color: rgba(255,255,255,0.3);

    font-size: 0.65rem;
}


/* ================= PROFILE PAGE ================= */

.profile-page {
    min-height: 100vh;
    padding: 170px 0 100px;

    background: var(--cream);
}

.profile-container {
    width: min(900px, calc(100% - 60px));
    margin: auto;
}

.profile-container h1 {
    margin-top: 20px;

    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1;
    letter-spacing: -0.055em;
}

.profile-container h1 i {
    color: var(--orange);
}


/* Profile card */

.profile-card {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 50px;

    margin-top: 60px;
    padding: 45px;

    background: white;

    box-shadow: 0 25px 70px rgba(30,40,34,0.08);
}


/* Avatar */

.profile-avatar {
    width: 120px;
    height: 120px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--dark);
    color: var(--orange-light);

    font-family: var(--serif);
    font-size: 3rem;
}


/* User information */

.profile-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.profile-item {
    display: flex;
    flex-direction: column;

    padding-bottom: 15px;

    border-bottom: 1px solid #e4e1d9;
}

.profile-item span {
    margin-bottom: 5px;

    color: var(--muted);

    font-size: 0.65rem;
    font-weight: 700;

    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.profile-item strong {
    color: var(--dark);

    font-size: 0.9rem;
}


/* Bottom section */

.profile-bottom {
    display: flex;
    justify-content: flex-end;

    margin-top: 50px;
}


/* Red sign out button */

.signout-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 150px;

    padding: 14px 25px;

    border: 0;
    border-radius: 8px;

    background: #c93636;
    color: white;

    font-family: var(--sans);
    font-size: 0.75rem;
    font-weight: 700;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.signout-button:hover {
    background: #a92d2d;

    transform: translateY(-2px);
}


/* ================= PROFILE MOBILE ================= */

@media (max-width: 700px) {

    .profile-page {
        padding: 140px 0 70px;
    }

    .profile-container {
        width: calc(100% - 35px);
    }

    .profile-card {
        grid-template-columns: 1fr;
        gap: 35px;

        padding: 30px;
    }

    .profile-avatar {
        width: 90px;
        height: 90px;

        font-size: 2.3rem;
    }

    .profile-details {
        grid-template-columns: 1fr;
    }

    .profile-bottom {
        justify-content: stretch;
    }

    .signout-button {
        width: 100%;
    }

}

/* ================= MOBILE ================= */

@media (max-width: 800px) {

    .header-inner,
    .hero-content {
        width: calc(100% - 35px);
    }

    .nav {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .hero {
        min-height: 700px;
    }

    .hero h1 {
        font-size: 4rem;
    }

    .hero-location {
        right: 20px;
        bottom: 25px;
    }

    .finder-container,
    .destinations-header,
    .destination-list,
    .about-inner {
        width: calc(100% - 35px);
    }

    .finder-intro {
        display: block;
    }

    .finder-intro p {
        margin-top: 25px;
    }

    .finder-card {
        padding: 25px;
    }

    .choices {
        grid-template-columns: 1fr;
    }

    .destinations-header {
        display: block;
    }

    .destinations-header > p {
        margin-top: 25px;
    }

    .destination {
        grid-template-columns: 35px 100px 1fr 20px;
        gap: 10px;
    }

    .destination-photo {
        width: 100px;
        height: 75px;
    }

    .destination-name h3 {
        font-size: 1.45rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .footer-inner {
        width: calc(100% - 35px);
    }

    .footer p {
        display: none;
    }

}


@media (max-width: 500px) {

    .finder-section,
    .destinations,
    .about {
        padding: 90px 0;
    }

    .hero h1 {
        font-size: 3.4rem;
    }

    .hero-content > p {
        font-size: 0.85rem;
    }

    .finder-card {
        min-height: 600px;
    }

    .destination {
        grid-template-columns: 30px 80px 1fr;
    }

    .destination-photo {
        width: 80px;
        height: 65px;
    }

    .destination-arrow {
        display: none;
    }

}