/* ===================== RESET & BASE ===================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-bg: #f5f0eb;
    --color-text: #1a1a1a;
    --color-text-light: #666;
    --color-white: #ffffff;
    --color-accent: #c8a882;
    --color-accent-hover: #b8956e;
    --color-border: rgba(0, 0, 0, 0.08);
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --radius: 12px;
    --max-width: 480px;
    --phone-width: 420px;
    --phone-height: 90vh;
}

/* ===================== BODY / OUTER WRAPPER ===================== */
body {
    font-family: var(--font-main);
    background-color: #5a3d32;
    color: var(--color-text);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-font-smoothing: antialiased;
}

/* ===================== PHONE FRAME (Desktop only) ===================== */
.phone-frame {
    width: var(--phone-width);
    height: var(--phone-height);
    border-radius: 32px;
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
    background-color: #7c5646;
    background-image: url('assets/background.jpg');
    background-size: cover;
    background-position: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* Scrollbar innerhalb des Frames verstecken */
.phone-frame::-webkit-scrollbar {
    display: none;
}
.phone-frame {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* ===================== CONTAINER ===================== */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 48px 24px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100%;
}

/* ===================== PROFILE HEADER ===================== */
.profile {
    text-align: center;
    margin-bottom: 32px;
}

.profile__avatar {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--color-white);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 16px;
}

.profile__name {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 4px;
    color: var(--color-white);
}

.profile__tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 400;
}

/* ===================== MAIN LINKS ===================== */
.links {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
}

.link-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 16px 24px;
    background: var(--color-white);
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--color-text);
    font-size: 15px;
    font-weight: 500;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    position: relative;
}

.link-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.link-button:active {
    transform: translateY(0);
}

.link-button__icon {
    font-size: 12px;
}

/* ===================== VIDEO CARD ===================== */
.video-card {
    display: block;
    width: 100%;
    border-radius: var(--radius);
    overflow: hidden;
    text-decoration: none;
    color: var(--color-white);
    position: relative;
    background: #1a1a1a;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.video-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.video-card__thumb {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
}

.video-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    aspect-ratio: 16 / 9;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.15);
    transition: background 0.15s ease;
}

.video-card:hover .video-card__overlay {
    background: rgba(0, 0, 0, 0.3);
}

.video-card__play {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.video-card__info {
    padding: 12px 16px;
    background: #FF0000;
}

.video-card__label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.85;
    margin-bottom: 2px;
}

.video-card__title {
    display: block;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
}

/* ===================== PRODUCTS (aktuell ausgeblendet) ===================== */
.products {
    width: 100%;
    margin-bottom: 40px;
    display: none;
}

.products__heading {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
    text-align: center;
}

.products__placeholder {
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    padding: 20px;
}

.product-card {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    padding: 12px 16px;
    background: var(--color-white);
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--color-text);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    margin-bottom: 12px;
}

.product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.product-card__image {
    width: 64px;
    height: 64px;
    border-radius: 8px;
    object-fit: cover;
}

.product-card__text {
    font-size: 15px;
    font-weight: 500;
}

/* ===================== FOOTER ===================== */
.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding-top: 24px;
    padding-bottom: 8px;
    margin-top: auto;
}

.social {
    display: flex;
    gap: 20px;
}

.social__icon {
    color: var(--color-white);
    opacity: 0.6;
    transition: opacity 0.15s ease;
}

.social__icon:hover {
    opacity: 1;
}

.footer__impressum {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
}

.footer__impressum:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* ===================== MOBILE: Fullscreen, kein Phone-Frame ===================== */
@media (max-width: 550px) {
    body {
        background-color: #7c5646;
        align-items: flex-start;
    }

    .phone-frame {
        width: 100%;
        height: auto;
        min-height: 100vh;
        border-radius: 0;
        box-shadow: none;
    }

    .container {
        padding: 32px 16px 24px;
        min-height: 100vh;
    }

    .profile__avatar {
        width: 80px;
        height: 80px;
    }

    .profile__name {
        font-size: 20px;
    }
}
