* {
    box-sizing: border-box;
}

body {
    background: #FDF7FA; 
    color: #4A3B44;    
    font-family: "Bitter", serif;
    margin: 0;
    line-height: 1.6;
}

#Header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

#Header img {
    max-width: 250px;
    height: auto;
}

ul {
    list-style-type: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

ul li a {
    text-decoration: none;
    color: #4A3B44;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.2rem;
    transition: color 0.3s;
}

ul li a:hover {
    color: #D484AD;
}

#mainDiv {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
    text-align: center;
}

h3 {
    font-size: 2rem;
    color: #D484AD;
    margin-bottom: 20px;
}

h2 {
    color: #BD6B95;
    margin-bottom: 20px;
}

#mainDiv p {
    font-size: 1rem;
    font-weight: 400;
    color: #5A4A54;
    margin-bottom: 20px;
    text-align: justify;
}

.Gallery {
    max-width: 1400px;
    margin: 40px auto 80px auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.Row1, .Row2 {
    display: grid;
    gap: 15px;
}

.Row1 { grid-template-columns: repeat(4, 1fr); }
.Row2 { grid-template-columns: repeat(5, 1fr); }

.Row1 .Image {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    height: auto;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.Row2 .Image {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    height: auto;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.Image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.Image:hover img {
    transform: scale(1.2);
}

.contact-section {
    max-width: 600px; 
    margin: 80px auto;
    padding: 40px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
}

.contact-section h3 {
    margin-top: 0;
    color: #D484AD;
}

.contact-section p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    font-size: 0.9rem;
    color: #4A3B44;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

input[type="text"],
input[type="email"],

textarea {
    padding: 12px 15px;
    border: 1px solid #E5C8D9;
    border-radius: 8px;
    font-family: "Bitter", serif;
    font-size: 1rem;
    background-color: #FDF7FA;
    transition: border-color 0.3s, box-shadow 0.3s;
}

input:focus, 
textarea:focus {
    outline: none;
    border-color: #D484AD;
    box-shadow: 0 0 0 3px rgba(212, 132, 173, 0.1);
}

.submit-btn {
    background-color: #D484AD;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    margin-top: 10px;
}

.submit-btn:hover {
    background-color: #BD6B95;
    transform: translateY(-2px);
}

.button{
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    background-color: #BD6B95;
    color: white;
    text-decoration: none;
    font-size: 1rem;
    text-align: center;
    transition: background-color 0.3s, transform 0.2s, box-shadow 0.3s;
    cursor: pointer;
    border: none;
    
}

.submit-btn:active {
    transform: translateY(0);
}

.ingredients-container {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 20px;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    color: #D484AD;
    margin-bottom: 10px;
}

.disclaimer {
    font-style: italic;
    color: #777;
    margin-bottom: 40px;
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    text-align: left;
}

.ingredient-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border-left: 5px solid #E5C8D9; /* Accent bar */
    transition: transform 0.3s ease;
}

.ingredient-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(212, 132, 173, 0.1);
}

.card-header h3 {
    margin: 0;
    color: #4A3B44;
    font-size: 1.4rem;
}

.tag {
    display: inline-block;
    background: #FDF7FA;
    color: #D484AD;
    font-size: 0.75rem;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
    margin-top: 8px;
    font-weight: bold;
    letter-spacing: 0.5px;
}

.card-body {
    margin-top: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
}

.card-body p {
    margin-bottom: 10px;
}

.site-footer {
    background-color: white;
    border-top: 1px solid #E5C8D9; /* Matches your bakery accent color */
    padding: 40px 20px;
    margin-top: 60px;
    text-align: center;
}

.footer-brand {
    font-size: 1.4rem;
    color: #D484AD;
    font-weight: bold;
    margin-bottom: 10px;
}

.footer-info {
    font-size: 1rem;
    color: #4A3B44;
    margin-bottom: 20px;
}

.footer-info a {
    color: #4A3B44;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-info a:hover {
    color: #D484AD;
}

.divider {
    margin: 0 10px;
    color: #E5C8D9;
}

.copyright {
    font-size: 0.85rem;
    color: #999;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}




@media (max-width: 900px) {
    .Row1, .Row2 { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
    #Header { flex-direction: column; gap: 20px; }
    .Row1, .Row2 { grid-template-columns: repeat(2, 1fr); }
    h3 { font-size: 1.8rem; }
    
        .ingredients-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
     .contact-section {
        margin: 40px 20px;
        padding: 25px;
    }
    
        .footer-info {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    .divider {
        display: none;
    }
}




