/*
Theme Name: Smoll Landing Page
Theme URI: https://example.com
Author: Your Name
Description: A minimal landing page with centered logo, video, and tagline.
Version: 1.0
*/

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

html, body {
    height: 100%;
    width: 100%;
}

body {
    background-color: #fcf8f4;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    color: #111111;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* =============================================
   LAYOUT WRAPPER
   ============================================= */
.page-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    width: 100%;
    padding: 40px 20px 20px;
}

/* =============================================
   HEADER / LOGO
   ============================================= */
.site-header {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 40px;
}

/* Logo image — upload via WordPress Customizer or replace src in index.php */
.site-logo img {
    max-height: 40px;
    width: auto;
    display: block;
}

/* Text fallback if no logo image is set */
.site-logo .logo-text {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #111111;
    text-decoration: none;
}

/* =============================================
   VIDEO SECTION
   ============================================= */
.video-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
}

.video-container {
    width: 100%;
    position: relative;
}

/* The video fills its container and is centered */
.video-container video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* Poster/fallback image shown before play */
.video-container video:focus {
    outline: none;
}

/* =============================================
   TAGLINE TEXT
   ============================================= */
.tagline {
    text-align: center;
    padding: 36px 20px 20px;
    font-size: 15px;
    font-weight: 400;
    color: #111111;
    line-height: 1.5;
    letter-spacing: 0.01em;
    max-width: 500px;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
    width: 100%;
    text-align: center;
    padding: 40px 20px 30px;
    font-size: 11px;
    color: #888888;
    line-height: 1.7;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 480px) {
    .page-wrapper {
        padding: 28px 16px 16px;
    }

    .site-logo .logo-text {
        font-size: 22px;
    }

    .tagline {
        font-size: 14px;
    }
}
