/*
Theme Name: Notice Me Senpai
Description: Official brand launch landing page for Notice Me Senpai - A creative studio launching with style. Features newsletter signup, brand showcase, and direct links to our shop and contact.
Version: 1.0.0
Author: Notice Me Senpai Studio
Author URI: https://noticemesenpai.studio
Text Domain: notice-me-senpai
Tags: landing-page, brand-launch, newsletter, creative-studio, responsive
*/

/* Adobe Typekit - Scale VF for headings */
@import url('https://use.typekit.net/gac2pbu.css');

/* Google Fonts - Space Mono for body text */
@import url('https://fonts.googleapis.com/css2?family=Space+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Space Mono', monospace;
    background: #000000;
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

/* Headings use Scale VF Extended */
h1, h2, h3, h4, h5, h6 {
    font-family: "scale-variable", sans-serif;
    font-variation-settings: "wght" 400, "wdth" 125;
    font-weight: normal;
}

.nms-container {
    max-width: 800px;
    width: 100%;
    text-align: center;
}

/* Logo Styling */
.nms-logo {
    margin-bottom: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.nms-logo img {
    max-width: 90%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.custom-logo {
    max-width: 90%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Animated Logo (WebM) */
.nms-animated-logo {
    max-width: 90%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.nms-static-logo {
    max-width: 90%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Ensure video loads smoothly */
video.nms-animated-logo {
    background: transparent;
    object-fit: contain;
}

/* Newsletter Form */
.nms-newsletter {
    margin: 60px 0;
}

.nms-newsletter-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.nms-email-input {
    background: transparent;
    border: none;
    border-bottom: 2px solid #ffffff;
    color: #ffffff;
    font-family: 'Space Mono', monospace;
    font-size: 18px;
    font-style: italic;
    padding: 12px 20px;
    width: 100%;
    max-width: 400px;
    text-align: center;
    outline: none;
}

.nms-email-input::placeholder {
    color: #ffffff;
    font-style: italic;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.nms-email-input:focus::placeholder {
    opacity: 0;
}

.nms-email-input:focus {
    border-bottom-color: #ff0099;
}

.nms-subscribe-btn {
    background: #ff0099;
    color: white;
    border: none;
    padding: 15px 50px;
    font-size: 20px;
    font-family: 'Space Mono', monospace;
    font-style: italic;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 4px 4px 0px #000000;
}

.nms-subscribe-btn:hover {
    background: #cc0077;
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px #000000;
}

.nms-subscribe-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Message Display */
.nms-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 5px;
    font-family: 'Space Mono', monospace;
    font-weight: bold;
}

.nms-message.success {
    background: rgba(0, 217, 255, 0.2);
    color: #00d9ff;
    border: 1px solid #00d9ff;
}

.nms-message.error {
    background: rgba(255, 0, 153, 0.2);
    color: #ff0099;
    border: 1px solid #ff0099;
}

/* Action Buttons */
.nms-action-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.nms-btn {
    padding: 18px 40px;
    font-size: 20px;
    font-family: 'Space Mono', monospace;
    font-style: italic;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 5px 5px 0px #000000;
}

.nms-btn-etsy {
    background: #00d9ff;
    color: #000000;
}

.nms-btn-etsy:hover {
    background: #00b8d9;
    transform: translate(-2px, -2px);
    box-shadow: 7px 7px 0px #000000;
    color: #000000;
    text-decoration: none;
}

.nms-btn-contact {
    background: #ffff00;
    color: #000000;
}

.nms-btn-contact:hover {
    background: #e6e600;
    transform: translate(-2px, -2px);
    box-shadow: 7px 7px 0px #000000;
    color: #000000;
    text-decoration: none;
}

/* Brand Launch Specific Styles */
.launch-tagline {
    color: #ff0099;
    font-style: italic;
    margin-top: 10px;
    font-size: 18px;
    animation: pulse 2s infinite;
    font-family: 'Space Mono', monospace;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

.site-title a {
    color: #ffffff;
    text-decoration: none;
    font-size: 2.5rem;
    font-family: "scale-variable", sans-serif;
    font-variation-settings: "wght" 400, "wdth" 125;
    font-weight: normal;
}

.site-title a:hover {
    color: #ff0099;
    text-decoration: none;
}

/* WordPress specific styles */
.wp-block-group {
    margin: 0;
}

.wp-site-blocks {
    padding: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nms-logo img,
    .custom-logo {
        max-width: 100%;
    }
    
    .nms-btn {
        font-size: 18px;
        padding: 15px 30px;
    }
    
    .nms-email-input {
        font-size: 16px;
    }
    
    .nms-subscribe-btn {
        font-size: 18px;
        padding: 12px 40px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 20px 15px;
    }
    
    .nms-action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .nms-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .nms-logo {
        margin-bottom: 60px;
    }
    
    .nms-newsletter {
        margin: 40px 0;
    }
}