@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Bold.woff2') format('woff2'),
        url('../fonts/Inter-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Medium.woff2') format('woff2'),
        url('../fonts/Inter-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: 'Inter', sans-serif;
    color: #fff;
}

#page-ai-photobooth {
    background-color: #1a1a1a;
    background-position: center;
    background-size: cover;
    overflow-x: hidden;
}

.page-header {
    padding: 20px 0;
}

.page-header h1 {
    color: #FFFFFF;
    font-family: Inter, sans-serif;
    font-size: 32px;
    font-weight: bold;
    margin: 0;
    text-align: center;
}

.title-container {
    margin-bottom: 40px;
    text-align: center;
}

.page-title {
    color: #FFFFFF;
    font-family: Inter, sans-serif;
    font-size: 24px;
    font-weight: 700;
    font-style: bold;
    line-height: 100%;
    margin-bottom: 24px;
}

.page-subtitle {
    font-family: Inter, sans-serif;
    font-size: 16px;
    line-height: 100%;
    font-weight: 500;
    color: #FFFFFF;
    margin-bottom: 40px;
}

.page {
    min-height: 80dvh;
    padding: 20px 0;
}

.mobile-container {
    position: relative;
    max-width: auto;
    min-height: 100dvh;
    margin: auto;
}

.mobile-container::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url('assets/dinner.png');
    background-size: 116% 120%;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.4;
    z-index: -2;
}

.center-full {
    width: 100%;
    margin: auto;
}

.center-90 {
    width: 90%;
    margin: auto;
}

footer.footer {
    font-family: Inter, sans-serif;
    font-size: 14px;
    color: #FFFFFF;
    font-weight: 500;
    width: 100%;
    height: 60px;
    box-sizing: border-box;
    background-color: #1D1E21;
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

footer.footer p {
    margin-bottom: 0;
    margin-top: 0;
}

/* DESKTOP STYLES */
@media screen and (min-width: 769px) {
    .mobile-container {
        max-width: 100%;
    }

    .page-header {
        text-align: center;
    }
}

@media only screen and (max-width: 600px) {
    footer.footer {
        gap: 16px;
    }

    .title-container {
        text-align: left;
    }
}

/************************************************AI Photobooth****************************************************/
.media-card {
    background-color: #1D1E21;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.media-display {
    width: 100%;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
}

.media-display img,
.media-display video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.media-footer {
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #1D1E21;
}

.media-label {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #CCCCCC;
    margin: 0;
}

.save-btn {
    background-color: #00BCB6;
    color: #FFFFFF;
    border: none;
    border-radius: 6px;
    padding: 8px 24px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.save-btn:hover {
    background-color: #009f90;
}

.save-icon {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}