/*
Theme Name: Loving Girls Studio
Theme URI: https://www1.lovinggirlsstudio.com
Author: Your Name
Description: Custom theme with full-screen home and signup form.
Version: 1.0
*/

body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.fullscreen-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

.register-btn {
    position: absolute;
    bottom: 10%;
    right: 10%;
    padding: 15px 30px;
    background-color: #ff4081;
    color: white;
    font-size: 1.2em;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    z-index: 10;
    text-decoration: none;
}

.register-btn:hover {
    background-color: #f50057;
}

/* Signup form styles (inspired by models1a.com) */
.signup-form {
    max-width: 800px;
    margin: 40px auto;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.signup-form h1, .signup-form h2 {
    text-align: center;
    color: #333;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.photo-grid, .video-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.photo-item img, .video-item video {
    width: 100%;
    border-radius: 8px;
}
