/*...all existing code above..*/

body, html {
    background-color: black;
    color: white;
    margin: 0;
    padding: 0;
}

h1 {
    color: red;
    text-align: center; 
    font-family: "Caesar Dressing", system-ui;
    font-weight: 400;
    font-style: normal;
    font-size: 35px; /* Default for mobile */
    margin: 20px 0;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 10px auto;
}

p {
    font-family: "new rockers", system-ui;
    font-size: 20px; /* Scaled down for mobile readability */
    line-height: 1.5;
    padding: 0 15px;
}

/* --- 2. THE NAVIGATION (Responsive Flexbox) --- */
ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    background-color: #333333;
    display: flex;
    flex-direction: column; /* Vertical stack on mobile */
}

ul li a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    border-bottom: 1px solid #444;
    font-size: 18px;
}

ul li a:hover {
    background-color: #111111;
    color: red;
}

/* --- 3. PAGE ELEMENTS (About & Contact) --- */
article {
    width: 90%; /* Wide for mobile */
    margin: auto;
    padding-bottom: 50px;
}

/* Illustration Box for your About Page */
.illustration-zone {
    border: 3px dashed red;
    padding: 20px;
    margin: 20px 0;
    text-align: center;
    background-color: #111;
}

/* Contact Form Styling */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input, textarea {
    width: 100%;
    padding: 12px;
    background: #222;
    border: 1px solid #444;
    color: white;
    box-sizing: border-box;
}

.submit-btn {
    background-color: red;
    color: white;
    border: none;
    padding: 15px;
    font-family: "new rockers", system-ui;
    font-size: 20px;
    cursor: pointer;
}

.submit-btn:hover {
    background-color: white;
    color: red;
}

/* --- 4. DESKTOP ADAPTATIONS --- */
@media screen and (min-width: 801px) {
    h1 { font-size: 70px; }
    
    p { font-size: 35px; } /* Your original big size for desktop */
    
    article { width: 50%; }

    ul {
        flex-direction: row; /* Horizontal menu for desktop */
        justify-content: center;
    }

    ul li a {
        border-bottom: none;
    }
}

h1 a {
    text-decoration: none; 
    color: red;            
    display: inline-block; 
    transition: 0.3s;      
}

h1 a:hover {
    color: white;          
    transform: scale(1.1); 
    text-shadow: 0 0 10px red; 
}

/* Optional: if you want them to look like boxed buttons */
.big-button {
    border: 2px solid red;
    padding: 10px 40px;
    margin: 10px;
    background-color: rgba(255, 0, 0, 0.1);
}