* { box-sizing: border-box }

/* ROOT STYLES*/
:root{
    --main-color:#f8f9fa;
    --secondary-color:#fdcbfd;
    --third-color:#c8b6ff;
    --text-color:#000000;
    

}/* BODY STYLES*/
 body{
    color: var(--text-color);
    font-family: 'Quicksand', sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--main-color)
}

/* Make headings curly and feminine */
h1, h2, h3{
    font-family: 'Quicksand';
  
}


/* Optional: Make it feel more elegant */
h1 {
  font-size: 3rem;
  font-weight: 600;
}

h2, h3 {
  font-weight: 500;
}
/* NAVBAR STYLES*/
.navbar,.brand-title {
    display: flex;
    font-family:'Dancing Script',cursive ;
    justify-content: space-between;
    align-items: center;
    background-color: var(--secondary-color);
    padding: 10px;
    color: var(--text-color);
    
}

button {
  border-radius: 8px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 500;
}

button:hover {
  background-color: #eecff1; /* soft pink hover */
  transition: 0.3s ease;
}


.brand-title {
    font-size: 2.5em;
    margin-left: 10px;
}

.navbar-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.navbar-links li {
    margin: 0 10px;
}

.navbar-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 2em;
}

.toggle-button {
    display: none;
    font-size: 1.5em;
    margin-right: 10px;
    cursor: pointer;
    text-decoration: none;
    color: var(--text-color);
}
 
.order-h2{
     text-align: center ;
}

nav a {
  color: #8e44ad; /* match your purple theme */
  text-decoration: none;
  padding: 0.5rem;
  transition: all 0.3s ease;
  font-weight: 500;
}


nav a:hover {
  color: #d36bc4; /* soft pink hover */
  transform: scale(1.05);
  text-shadow: 1px 1px 3px rgba(211, 107, 196, 0.2);
}

footer a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #ffc0e4; /* pastel pink for contrast */
}

button, .btn {
  background-color: #d36bc4;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  font-family: 'Quicksand', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
}

button:hover, .btn:hover {
  background-color: #b35ca7;
  box-shadow: 0 4px 8px rgba(179, 92, 167, 0.4);
  transform: scale(1.03);
}


footer {
  background: #b388eb; /* soft purple */
  padding: 2rem 1rem;
  text-align: center;
}


/* FOOTER STYLES*/
footer {
    background-color: var(--secondary-color);
    color: var(--text-color);
    padding: 20px 0;
    
}

.footer-container {
    display: block;
    justify-content: center;
    flex-wrap: wrap;
    padding: 20px;
    text-align: center;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    margin: 10px;
    text-align: center;
    
}

.footer-section h2 {
    margin-bottom: 10px;
}

.footer-section p, .footer-section ul {
    margin: 0;
    padding: 0;
    display: block;
    justify-content: center;

}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin: 5px 0;
}

.footer-section ul li a {
    color: var(--text-color);
    text-decoration: none;
}

.footer-section ul li a:hover {
    text-decoration: none;
}

.social-icons {
    display: flex;
    justify-content: center;
}

.social-icons a {
    margin: 0 10px;
    display: inline-block;
}

.social-icons img {
    width: 24px;
    height: 24px;
}

.footer-bottom {
    text-align: center;
    padding: 10px;
    background-color: var(--third-color);
    margin-top: 20px;
}


@media (max-width: 768px) {

    /* HAMBURGER MENU*/

    header {
        background-image: url('images/FeliciaBakesfavicon.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        width: 100%;
        height: auto;
    }
    
    .navbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        flex-wrap: wrap;
        position: relative; /* Ensures it stays within the screen */
    }
    
    .toggle-button {
        display: block;
        cursor: pointer;
        background-color: none;
        font-size: 1.5em;
        padding: 10px;
    }

    .navbar-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
        display: none;
        flex-direction: column;
        align-items: center;
        padding: 10px 0;
        z-index: 1000;
    }
    

    .navbar-links.active {
        display: flex;
    }

    .navbar-links ul {
        width: 100%;
        padding: 0;
    }

    .navbar-links li {
        text-align: center;
        width: 100%;
        padding:  10px 0;
    }

    .navbar-links a {
        font-size: 1.2em;
        text-decoration: none;
        color: #a99be3;
        padding: 10px 0;
        display: block;
        width:100% ;
    }


    .brand-title{
        font-size: 2em;
        white-space: nowrap;
    }

    .bento_cake, .cup_cakes {
        max-width: 100%; /* Prevents overflow */
        width: 100%;
        display: flex; /* Ensures they adapt */
        justify-content: center;    
        align-items: center; 
        box-shadow: 0 0 50px rgba(0,0,0,0.1);
        overflow: hidden; /* Ensures no extra content spills out */
        
    }
    
    .bento_cake img, .cup_cakes img {
        max-width: 100%; /* Ensures they don’t exceed their container */
        width: 100%;  
        height: auto; /* Keeps aspect ratio */
        display: block; /* Removes extra spacing issues */
        justify-content: center;
        border-radius: 40px;
        padding: 20px;
    
    }
    

        .bento_cake, .cup_cakes {
            padding: 10px; /* Prevents content from hitting screen edges */
        }

        h2{
            text-align: center;
        }
        
    }
    
    


/* Styling the form container */
form {
    width: 100%;
    max-width: 600px; /* Limit the form's width */
    margin: 0 auto; /* Center the form */
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  /* Styling the headings */
  h3 {
    font-size: 1.6rem;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
  }
  
  /* Styling the form labels */
  label {
    display: block; /* Ensures the label takes up full width */
    margin-bottom: 8px;
    font-size: 1rem;
    color: #555;
  }
  
  /* Styling input fields */
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="number"],
  input[type="datetime-local"],
  input[type="file"],
  textarea,
  select {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px; /* Space between fields */
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
  }
  
  /* Styling the submit button */
  button[type="submit"] {
    width: 100%;
    padding: 12px;
    background-color: #c8b6ff;
    color: white;
    font-size: 1.1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  button[type="submit"]:hover {
    background-color: #a287f3; /* Slightly darker green on hover */
  }
  
  /* Styling the checkbox */
  input[type="checkbox"] {
    margin-right: 10px;
  }
  
  /* Styling the checkbox label */
  label[for="terms"] {
    font-size: 0.9rem;
    color: #777;
  }
  
  /* Adding space between each form section */
  form h3, form label, form input, form textarea, form select {
    margin-bottom: 20px;
  }
  
  /* Styling the disabled input (e.g., pickup/delivery preference) */
  input[disabled], textarea[disabled] {
    background-color: #f2f2f2;
    cursor: not-allowed;
  }
  
  /* Optional: Add some styles for the file input */
  input[type="file"] {
    border: none;
    padding: 8px;
  }
  
/*  Upadated Home page */

 
.bento_cake {
    box-shadow: #c8b6ff;
    border-color: #a287f3;
    display: inline;              
    justify-content: center;    
    align-items: center; 
    box-shadow: 0 0 50px rgba(0,0,0,0.1);    
     
}

.bento_cake img {
    width: 500px;  
    height: 500px; 
    object-fit: cover; 
    
}

.cup_cakes {
    box-shadow: #c8b6ff;
    border-color: #a287f3;
    display: inline;              
    justify-content: center;    
    align-items: center; 
    box-shadow: 0 0 50px rgba(0,0,0,0.1);    
     
}

.cup_cakes img {
    width: 500px;  
    height: 500px; 
    object-fit: cover; 
    

}

.popular_box {
    box-shadow: #c8b6ff;
    border-color: #a287f3;
    display: inline;              
    justify-content: center;    
    align-items: center; 
    box-shadow: 0 0 50px rgba(0,0,0,0.1);  
    text-align: center;  
     
}

.popular_box video {
    width: 90%;  
    max-width: 500px; 
    height: auto;
    object-fit: cover; 
    display: block;
    margin: 0 auto;
    border-radius: 40px;
    padding: 20px;

}

.custom-orders {
    text-align: center;
    padding: 10px;

}

.custom-orders h2{
background-color: #a287f3;
}

.custom-orders img {
    max-width: 200px;
    height: auto;
    border-radius: 10px;
    margin-top: 20px;
    border-radius: 40px;
}

.order-button-custom {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 15px;
    background-color:#c8b6ff;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.order-button-custom:hover {
    background-color:#a88ff3 ;
}

/* Styling the contact page */


        

        
        

        #contact-container {
            
            background: linear-gradient(145deg #c7a0f3, white); /* Soft pastel gradient */
            border-radius: 12px;
            padding:10px;
            width: 90%; /* Makes it responsive */
            max-width: 500px; /* Prevents it from getting too large */
            margin: auto;
            transition: all 0.3s ease-in-out;
            text-align: center;
        }

        button {
            background:#574a7e ;
            color: white;
            font-size: 16px;
            padding: 10px 15px;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: 0.3s;
        }

        button:hover {
            background:#70629a ;
            transform: scale(1.05);
        }

        .aboutus{
            background: linear-gradient(145deg #c7a0f3, white); /* Soft pastel gradient */
            border-radius: 12px;
            padding:10px;
            width: 90%; /* Makes it responsive */
            max-width: 500px; /* Prevents it from getting too large */
            margin: auto;
            transition: all 0.3s ease-in-out;
            text-align: center;
        }

        .disclaimer{
            text-align: center;
            color:#C97A6D;
        }

        
        

       