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

html, body {
    height: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Slideshow Background */
.slideshow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    filter: blur(3px);
}

.slide.active {
    opacity: 1;
}

/* Ken Burns Effect - Always running, different per slide */
.slide:nth-child(1) { animation: kenburns-1 25s linear infinite; }
.slide:nth-child(2) { animation: kenburns-2 25s linear infinite; }
.slide:nth-child(3) { animation: kenburns-3 25s linear infinite; }
.slide:nth-child(4) { animation: kenburns-4 25s linear infinite; }
.slide:nth-child(5) { animation: kenburns-5 25s linear infinite; }
.slide:nth-child(6) { animation: kenburns-6 25s linear infinite; }

@keyframes kenburns-1 {
    0%, 100% { transform: scale(1.05) translate(0, 0); }
    50% { transform: scale(1.15) translate(-2%, -1%); }
}

@keyframes kenburns-2 {
    0%, 100% { transform: scale(1.08) translate(1%, 0); }
    50% { transform: scale(1.15) translate(-1%, 1%); }
}

@keyframes kenburns-3 {
    0%, 100% { transform: scale(1.05) translate(-1%, 0); }
    50% { transform: scale(1.15) translate(1%, -1%); }
}

@keyframes kenburns-4 {
    0%, 100% { transform: scale(1.08) translate(0, 1%); }
    50% { transform: scale(1.15) translate(-1%, -1%); }
}

@keyframes kenburns-5 {
    0%, 100% { transform: scale(1.05) translate(0, -1%); }
    50% { transform: scale(1.15) translate(1%, 1%); }
}

@keyframes kenburns-6 {
    0%, 100% { transform: scale(1.08) translate(-1%, 1%); }
    50% { transform: scale(1.15) translate(0, -1%); }
}

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1D1E40;
    opacity: 0.85;
    z-index: -1;
}

/* Content */
.content {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
}

/* Logo */
.logo {
    max-width: 280px;
    width: 100%;
    height: auto;
    margin-bottom: 40px;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
}

/* Linktree Style */
.linktree {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: 400px;
    margin-bottom: 40px;
}

.link-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.link-btn svg,
.link-btn img {
    flex-shrink: 0;
    border-radius: 4px;
}

/* WhatsApp Button */
.link-btn.whatsapp {
    background-color: #A9C40F;
    color: #1D1E40;
    box-shadow: 0 4px 20px rgba(169, 196, 15, 0.3);
}

.link-btn.whatsapp:hover {
    background-color: #8BA60C;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(169, 196, 15, 0.4);
}

/* Phone Button */
.link-btn.phone {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.link-btn.phone:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Location Button */
.link-btn.location {
    background-color: #4285F4;
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(66, 133, 244, 0.3);
}

.link-btn.location:hover {
    background-color: #3367D6;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(66, 133, 244, 0.4);
}

/* Waze Button */
.link-btn.waze {
    background-color: #33CCFF;
    color: #1D1E40;
    box-shadow: 0 4px 20px rgba(51, 204, 255, 0.3);
}

.link-btn.waze:hover {
    background-color: #00BFFF;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(51, 204, 255, 0.4);
}

/* Address */
.address {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-top: 20px;
}

.address svg {
    flex-shrink: 0;
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 600px) {
    .logo {
        max-width: 200px;
        margin-bottom: 30px;
    }

    .linktree {
        max-width: 100%;
        gap: 12px;
    }

    .link-btn {
        padding: 16px 20px;
        font-size: 1rem;
        border-radius: 10px;
    }

    .address {
        font-size: 0.8rem;
        padding: 0 15px;
        flex-wrap: wrap;
        text-align: center;
    }
}

@media (max-width: 400px) {
    .logo {
        max-width: 160px;
    }

    .link-btn {
        padding: 14px 16px;
        font-size: 0.95rem;
    }
}
