/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Baumans", monospace;
    background: #f0f0f0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.6;
}

.wrapper {
    display: flex;
    width: 90%;
    max-width: 1200px;
    height: 80vh;
    min-height: 500px;
    max-height: 700px;
    background: #ffffff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Image Section - Left Half */
.image-section {
    flex: 0 0 50%;
    position: relative;
    overflow: hidden;
}

.image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Content Section - Right Half */
.content-section {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    background: #ffffff;
    text-align: center;
    height: 100%;
    width: 100%;
    gap: 20px;
}

.content-inner {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    height: 100%;
    transition: transform 0.25s ease, opacity 0.25s ease;
    gap: 30px;
}

.content-section h1 {
    font-size: 2em;
    font-weight: 600;
    letter-spacing: 0.35em;
    color: #333;
}

.subtitle {
    color: #999;
    font-size: 0.95em;
    line-height: 1.8;
    font-weight: 300;
    font-family: "Ubuntu";
}

/* Navigation Buttons */
.nav-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 280px;
}

.nav-button {
    display: block;
    padding: 12px 30px;
    border: 1px solid #e0e0e0;
    background: transparent;
    color: #666;
    text-decoration: none;
    font-size: 0.85em;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.5s ease;
}

.hidden {
   /* display: none;*/
   transform: scale(1.1);
   opacity: 0;
   height: 0;
   overflow: hidden;
}

.nav-button:hover {
    background: #333;
    color: #fff;
    border-color: #333;
}

.nav-button:active {
    transform: scale3d(0.9, 0.9, 1);
    transition: all 0.1s ease;
}

/* Form Styles */
form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
   /* max-width: 280px; */
}

form input[type="text"],
form input[type="email"],
form textarea {
    padding: 12px 30px;
    border: 1px solid #e0e0e0;
    background: transparent;
    color: #666;
    font-family: "Ubuntu", monospace;
    font-size: 0.85em;
    letter-spacing: 0.1em;
    font-weight: 400;
    transition: all 0.3s ease;
    resize: none;
}

form textarea {
    min-height: 100px;
    padding: 12px 30px;
}

form input[type="text"]::placeholder,
form input[type="email"]::placeholder,
form textarea::placeholder {
    color: #999;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.95em;
}

form input[type="text"]:focus,
form input[type="email"]:focus,
form textarea:focus {
    outline: none;
    border-color: #333;
    background: #fafafa;
}

form input[type="text"]:hover,
form input[type="email"]:hover,
form textarea:hover {
    border-color: #999;
}

/* Footer */
footer {
    color: #ccc;
    font-size: 0.7em;
    letter-spacing: 0.2em;
    font-weight: 300;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .wrapper {
        flex-direction: column;
        width: 95%;
        height: 80vh;
    }
    
    .image-section {
        min-height: 300px;
    }
    
    .content-section {
        padding: 20px 30px;
    }
    
    .content-section h1 {
        font-size: 1.6em;
    }
    
    .subtitle {
        font-size: 0.9em;
    }
    
    .nav-buttons {

    }
}

@media (max-width: 480px) {
    .wrapper {
        width: 100%;
        height: 100vh;
    }
    
    .image-section {
        flex: 0 0 250px;
        min-height: 250px;
    }
    
    .content-section {
        padding: 20px 20px;
    }
    
    .content-section h1 {
        font-size: 1.3em;
        letter-spacing: 0.25em;
    }
    
    .nav-buttons {
        max-width: 100%;
    }
    
    .nav-button {
        font-size: 0.8em;
        padding: 10px 20px;
    }
}
