
*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
    body{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
    background-color: rgb(11, 11, 11);
}
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgb(3, 3, 3);
    color: white;
    padding: 20px;
    justify-content: space-between;
    align-items: center;
    display: flex;
    z-index: 999; /* Ensures header stays on top of other elements */
}
h2{
    color: white;
}
nav ul {
    list-style-type: none;
    
}
nav ul li{
    display: inline;
    margin-right: 30px;
}
nav ul li a{
    color: white;
    text-decoration:none;
}
main{
   padding: 20px;
   text-align: center;
}
#hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 100px 0;
    margin: 0;
    box-sizing: border-box;
    background-image: url('newww.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    height: 100vh; 
}
#hero h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

#hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

#hero .bttn {
    background-color: #ff6347;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 1.2em;
    border-radius: 5px;
    transition: background-color 0.3s;
}

#hero .bttn:hover {
    background-color: #ff4500;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #hero h1 {
        font-size: 2em;
    }
    
    #hero p {
        font-size: 1em;
    }
    
    #hero .bttn {
        font-size: 1em;
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    #hero h1 {
        font-size: 1.5em;
    }
    
    #hero p {
        font-size: 0.9em;
    }
    
    #hero .bttn {
        font-size: 0.9em;
        padding: 8px 16px;
    }
}
footer{
    margin-left: 0;
    margin-right: 0;
    text-align: center;
    color: rgb(249, 249, 249);
    background-color: rgb(8, 8, 8);
    width:100%;
    bottom:0;
    padding: 10px 0px;
    margin-left: 0;
    position: fixed;
}
#menu {
    display: flex;
    flex-wrap: wrap;
    
    justify-content: space-around;
    padding: 20px;
    background-color: white;
    
}

.item-menu {
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    width: 23%;
    margin: 10px 0;
    box-sizing: border-box;
}

.item-menu img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

.item-menu h4 {
    margin: 10px 0;
}

.item-menu span {
    color: #333;
    font-weight: bold;
}


@media (max-width: 1200px) {
    .item-menu {
        width: 31%;
    }
}

@media (max-width: 992px) {
    .item-menu {
        width: 48%;
    }
}

@media (max-width: 768px) {
    .item-menu {
        width: 100%;
    }
}
.cold-drinks-section {
    background-color: white;
    padding: 20px;
    text-align: center;
}

.cold-drinks-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.cold-drink-item {
    margin: 10px;
    padding: 10px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
    flex: 1 1 calc(25% - 40px); 
    box-sizing: border-box; 
}

.cold-drink-item img {
    width: 100px;
    height: auto;
    margin-bottom: 10px;
}

.cold-drink-item h4 {
    margin: 10px 0;
    font-size: 1.2em;
}

.cold-drink-item span {
    font-size: 1.1em;
    color: #333;
}

.cold-drink-item:hover {
    transform: scale(1.05);
}


@media (max-width: 1200px) {
    .cold-drink-item {
        flex: 1 1 calc(33.33% - 40px); 
    }
}

@media (max-width: 768px) {
    .cold-drink-item {
        flex: 1 1 calc(50% - 40px); 
    }
}

@media (max-width: 480px) {
    .cold-drink-item {
        flex: 1 1 100%; 
    }
}
.cakes-section {
    background-color:  white;
    padding: 20px;
    text-align: center;
}

.cakes-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.cake-item {
    margin: 10px;
    padding: 10px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
    flex: 1 1 calc(25% - 40px); 
    box-sizing: border-box; 
}

.cake-item img {
    width: 150px;
    height: auto;
    margin-bottom: 10px;
}

.cake-item h4 {
    margin: 10px 0;
    font-size: 1.2em;
}

.cake-item span {
    font-size: 1.1em;
    color: #333;
}

.cake-item:hover {
    transform: scale(1.05);
}

/* Responsive breakpoints */
@media (max-width: 1200px) {
    .cake-item {
        flex: 1 1 calc(33.33% - 40px); 
    }
}

@media (max-width: 768px) {
    .cake-item {
        flex: 1 1 calc(50% - 40px); 
    }
}

@media (max-width: 480px) {
    .cake-item {
        flex: 1 1 100%; 
    }
}
/* Default styles */
.about-section {
    padding: 50px 0;
    text-align: center;
    background-color:  white;
    color: #070707;
}

.about-section h1 {
    color: #000000;
    font-size: 3em;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.about-section p {
    color: #070707;
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 40px;
}

.features {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.feature-item {
    flex: 1 1 300px;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-item img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.feature-item h3 {
    color: #080808;
    font-size: 1.8em;
    margin-bottom: 10px;
}

.feature-item p {
    color: #0d0d0d;
    font-size: 1.1em;
    line-height: 1.4;
}

.team {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.team-member {
    text-align: center;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.team-member img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 4px solid #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.team-member h4 {
    color: #000000;
    font-size: 1.6em;
    margin-bottom: 10px;
}

.team-member p {
    color: #080808;
    font-size: 1em;
    line-height: 1.4;
}

/* Animation */
.feature-item:hover, .team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

/* Responsive styles */
@media only screen and (max-width: 768px) {
    .feature-item, .team-member {
        flex-basis: calc(50% - 40px);
    }
}

@media only screen and (max-width: 480px) {
    .feature-item, .team-member {
        flex-basis: calc(100% - 40px);
    }
}
.contact-section {
    padding: 80px 0;
    text-align: center;
    background-color:white;
}

.contact-section h1 {
    color: rgb(5, 5, 5);
    font-size: 2.5em;
    margin-bottom: 30px;
}

.contact-info {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.contact-item {
    margin: 0 20px;
    text-align: center;
}

.contact-item img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.contact-item p {
    color: #050505;
    font-size: 1.1em;
    margin: 0;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: none;
    border-radius: 5px;
    box-sizing: border-box;
    background-color: #f0f0f0;
}

.contact-form textarea {
    resize: none;
}

.contact-form button {
    background-color: #333;
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1em;
    transition: background-color 0.3s;
}

.contact-form button:hover {
    background-color: #897575;
}

@media only screen and (max-width: 768px) {
    .contact-item {
        margin-bottom: 30px;
    }
}
.login-section {
    padding: 80px 0;
    text-align: center;
    background-color: #060505;
}

.login-section h1 {
    color: white;
    font-size: 2.5em;
    margin-bottom: 30px;
   
}

.login-form {
    max-width: 400px;
    margin: 0 auto;
}

.input-container {
    position: relative;
    margin-bottom: 20px;
}

.input-container input {
    width: calc(100% - 40px);
    padding: 15px 20px;
    border: none;
    border-radius: 25px;
    background-color: #f0f0f0;
    font-size: 1em;
    outline: none;
}

.input-container i {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    color:white;
}

.login-form button {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 25px;
    background-color: #333;
    color: #fff;
    font-size: 1.1em;
    cursor: pointer;
    transition: background-color 0.3s;
}

.login-form button:hover {
    background-color:rgb(142, 125, 125);
}