body {
    font-family: "Source Sans 3", sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff;
}

header {
    text-align: center;
    padding: 90px;
    background-image: url('../assets/main1.jpg');
    background-size: cover;
    background-position: center;
}

h1 {
    font-family: "Rubik Wet Paint", system-ui;
    font-weight: 200;
    font-style: normal;
}

nav {
    background-color: #333;
    display: flex;
    justify-content: center;
    padding: 10px 0;
}

nav a {
    color: white;
    padding: 14px 20px;
    text-decoration: none;
}

nav a:hover {
    background-color: #ddd;
    color: black;
}

nav a.active {
    background-color: #555;
    color: white;
    border-bottom: 3px solid #ff4040;
    font-weight: bold;
}
.content {
    background-image: url('../assets/catalog.jpg');
    background-size: cover;
    background-position: center;
    padding-bottom: 100px;
}
.welcome-container {
    color: black;
    text-align: center;
    border-radius: 10px;
    padding-top: 50px;
}

.welcome-container h2 {
    margin: 0 0 50px;
}


.text-type1 {
    font-family: "Rubik Wet Paint", system-ui;
    font-weight: 400;
    font-style: normal;
    font-size: 42px;
}

.auth-form {
    max-width: 400px;
    margin: 0 auto; 
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.auth-form p {
    margin-top: 15px;
    font-family: "Source Sans 3", sans-serif;
}

.auth-form a {
    color: #ff4040;
    text-decoration: none;
}

.auth-form a:hover {
    text-decoration: underline;
}

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

.form-group input {
    width: 90%;
    padding: 12px 15px;
    border: 2px solid #ff8c40;
    border-radius: 8px;
    font-size: 16px;
    font-family: "Source Sans 3", sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #ff4040;
}

.submit-btn {
    display: block;
    width: 100%;
    padding: 12px;
    background: radial-gradient(circle at center, #ff8c40 0%, #ff4040 70%);
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.1s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
}

footer {
    text-align: center;
    padding: 10px;
    background-color: #333;
    color: white;
    position: fixed;
    bottom: 0;
    width: 100%;
}
@media (max-width: 768px) {
    body {
        padding-bottom: 60px;
    }
    
    header {
        padding: 40px 20px;
             background-position: 20% 50%;
            
    }
    
    h1 {
        font-size: 24px;
    }
    
    nav {
        flex-wrap: wrap;
        padding: 5px 0;
    }
    
    nav a {
        padding: 8px 10px;
        font-size: 14px;
        flex: 1 0 33%;
        min-width: 0;
        box-sizing: border-box;
    }
    
    .content {
        padding: 20px 10px 80px;
        background-attachment: scroll;
    }
    
    .welcome-container {
        padding-top: 30px;
    }
    
    .text-type1 {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .auth-form {
        width: 90%;
        max-width: 100%;
        padding: 20px 15px;
    }
    
    .form-group input {
        padding: 12px 15px;
        font-size: 16px;
    }
    
    .submit-btn {
        padding: 12px;
        font-size: 16px;
    }
    
    #register-prompt {
        font-size: 14px;
    }
    
    #orders-widget {
        width: 90%;
        right: 5%;
        bottom: 70px;
    }
        footer {
        font-size: 12px;
        padding: 5px;
    }
}