:root {
    --text-primary: #ffffff;
    --text-subtitle: #e5c158; /* Gold color */
    --btn-bg: #f9f9f9;
    --btn-text: #1a1a1a;
    --btn-hover: #ffffff;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Plus Jakarta Sans', sans-serif;
}

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

body {
    font-family: var(--font-sans);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    /* Default to a smaller square/portrait friendly image for mobile */
    background-image: url('https://imagedelivery.net/ZsO2aG2SdYPyU25oNArcZw/13b70b33-62a7-4208-02ac-1297b707f800/square');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    color: var(--text-primary);
}

/* Tablet size */
@media (min-width: 601px) {
    body {
        background-image: url('https://imagedelivery.net/ZsO2aG2SdYPyU25oNArcZw/13b70b33-62a7-4208-02ac-1297b707f800/standart');
    }
}

/* Desktop size */
@media (min-width: 1281px) {
    body {
        background-image: url('https://imagedelivery.net/ZsO2aG2SdYPyU25oNArcZw/13b70b33-62a7-4208-02ac-1297b707f800/hero');
    }
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradient overlay for better text readability */
    background: linear-gradient(180deg, rgba(10, 30, 65, 0.5) 0%, rgba(10, 30, 65, 0.3) 50%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 450px;
    padding: 2rem 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Logo */
.logo-wrapper {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1.5rem;
    border: 2px solid var(--text-subtitle);
    background-color: rgba(10, 30, 65, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Typography */
.title {
    font-family: var(--font-sans);
    font-size: 2.5rem;
    font-weight: 600; /* Increased weight for sans-serif title */
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px; /* Sans serifs often look better with slightly tighter tracking for titles */
    text-shadow: 0 2px 4px rgba(0,0,0,0.6);
}

.subtitle {
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--text-subtitle);
    margin-bottom: 2.5rem;
    letter-spacing: 1px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.8);
}

/* Links */
.links {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.link-btn {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    background-color: var(--btn-bg);
    color: var(--btn-text);
    text-decoration: none;
    padding: 1rem 1.25rem;
    border-radius: 14px; 
    font-size: 1.1rem;
    font-weight: 600;
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.link-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* Brand specific colors */
.btn-airbnb { background-color: #FF5A5F; color: #ffffff; }
.btn-airbnb:hover { background-color: #e04e53; }

.btn-booking { background-color: #003B95; color: #ffffff; }
.btn-booking:hover { background-color: #002d73; }

.btn-vrbo { background-color: #002A6B; color: #ffffff; }
.btn-vrbo:hover { background-color: #001f4d; }

.btn-whatsapp { background-color: #25D366; color: #ffffff; }
.btn-whatsapp:hover { background-color: #20ba59; }

.link-btn .icon {
    width: 32px;
    height: 32px;
    margin-right: 0.5rem;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    object-fit: contain;
    /* Turn logos white to contrast with colored backgrounds */
    filter: brightness(0) invert(1);
}

.link-btn .text {
    flex-grow: 1;
    text-align: center;
    padding-right: 40px;
    position: relative;
    z-index: 2;
}

/* Ripple effect */
.ripple {
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    animation: ripple 0.6s linear;
    background-color: rgba(0, 0, 0, 0.1);
    width: 100px;
    height: 100px;
    margin-top: -50px;
    margin-left: -50px;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.container > * {
    animation: fadeUp 0.6s ease-out forwards;
    opacity: 0;
}

.logo-wrapper { animation-delay: 0.1s; }
.title { animation-delay: 0.2s; }
.subtitle { animation-delay: 0.3s; }
.links .link-btn:nth-child(1) { animation-delay: 0.4s; }
.links .link-btn:nth-child(2) { animation-delay: 0.5s; }
.links .link-btn:nth-child(3) { animation-delay: 0.6s; }
.links .link-btn:nth-child(4) { animation-delay: 0.7s; }

/* Responsive adjustments */
@media (max-width: 480px) {
    .title { font-size: 2.2rem; }
    .link-btn { padding: 0.875rem 1rem; font-size: 1.05rem; }
    .logo-wrapper { width: 110px; height: 110px; }
}
