body {
    margin: 0;
    padding: 0;
    background-image: url('images/img41.jpg');
    background-size: cover;       /* Makes the image cover the entire page */
    background-repeat: no-repeat; /* Prevents tiling */
    background-position: center;  /* Centers the image */
    height: 100vh;                /* Full viewport height */
    font-family:'Playfair Display', serif !important;
}

.navbar {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    background-color: #111;
    padding: 15px 0;
    font-family: 'Playfair Display', serif !important;
} 

.nav-home {
    color: #ff3333; 
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease; 

}

.nav-menu {
   color: #f39c12; 
   text-decoration: none;
   font-weight: 500;
   font-size: 16px;
   transition: color 0.3s ease; 

}

.nav-events {
   color: #27ae60; 
   text-decoration: none;
   font-weight: 500;
   font-size: 16px;
   transition: color 0.3s ease; 

}

.nav-gallery {
   color: #ff3333; 
   text-decoration: none;
   font-weight: 500;
   font-size: 16px;
   transition: color 0.3s ease; 

}

.nav-orderCake {
   color: #f39c12; 
   text-decoration: none;
   font-weight: 500;
   font-size: 16px;
   transition: color 0.3s ease; 

}

.nav-merch {
   color: #27ae60; 
   text-decoration: none;
   font-weight: 500;
   font-size: 16px;
   transition: color 0.3s ease; 

}

.nav-contact {
   color: #ff3333; 
   text-decoration: none;
   font-weight: 500;
   font-size: 16px;
   transition: color 0.3s ease; 

}

.navbar a:hover {
    color: #fff;
}



 #order-cake {
    margin-top: 80px;
    background-color: rgba(255, 250, 240, 0.05); /* cream tint */
    padding: 40px;
    border: 1px solid rgba(0, 123, 255, 0.6); 
    border-radius: 16px;
    box-shadow: 0 0 40px rgba(0, 123, 255, 0.3);
    max-width: 600px;
    width: 90%;
    margin: auto;
    backdrop-filter: blur(4px);
 
}


 #order-cake h1 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 30px;
    font-family: 'Playfair Display', serif;
    color: #fff8e7;
    letter-spacing: 1px;
}

label {
    display: block;
    margin-top: 15px;
    color: #fcebd4;
    font-weight: 500;
    font-size: 15px;
}

 #cake-order-form input,
 #cake-order-form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 6px;
    background-color: #1a1a1a;
    border: 1px solid #b08f6e;
    border-radius: 8px;
    color: #fefefe;
    font-family: Georgia, serif;
    font-size: 15px;
   
}

    input:focus,
    textarea:focus {
    outline: none;
    border-color: #f5c590;
    background-color: #222;
}

#cake-order-form button {
    margin-top: 25px;
    padding: 10px 20px !important;
    background-color: red;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 15px !important;
    font-weight: bold;
   
}

#cake-order-form button:hover {
    background-color: darkred; 
}

/* -------- Mobile Fixes -------- */
@media (max-width: 768px) {
    .navbar {
        flex-direction: row;
        flex-wrap: wrap;
        height: auto;
        
    }
    .navbar a {
        padding: 5px 10px 0;
        font-size: 10px;
    }
}


    #order-cake {
        margin-top: 40px;
        padding: 5px; /* reduce padding on mobile */
        width: 60%;    /* make it fit screen nicely */
    }

    #order-cake h1 {
        font-size: 22px; /* smaller heading */
    }

    #cake-order-form input,
    #cake-order-form textarea {
        padding: 8px;   /* smaller input padding */
        font-size: 14px;
    }

    #cake-order-form button {
        padding: 10px 40px !important;
        font-size: 15px !important;
    }




