/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f9f5f0;
}

header {
    background-color: #8b5a2b;
    color: white;
    padding: 1rem 0;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

nav li {
    margin: 0 15px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

.language-switcher {
    margin-left: auto;
    padding-right: 20px;
}

main {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}



/* Logo Styles */
.logo {
    height: 60px; /* Adjust based on your logo */
    width: auto; /* Maintain aspect ratio */
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.8; /* Subtle hover effect */
}

/* Adjust header layout */
.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

/* If you want to keep the bakery name next to the logo */
.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* For responsive behavior */
@media (max-width: 768px) {
    .logo {
        height: 50px; /* Smaller on mobile */
    }
}




footer {
    background-color: #8b5a2b;
    color: white;
    text-align: center;
    padding: 1rem 0;
    margin-top: 2rem;
}

/* About Page */
.content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.profile-img {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.text-content {
    flex: 1;
    min-width: 300px;
}

/* Bread Page */
.bread-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.bread-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.bread-item img {
    border-radius: 8px;
    margin-bottom: 1rem;
    width: 200px;
}

/* Contact Page */
.contact-form {
    max-width: 600px;
    margin: 2rem auto;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
}

.form-group textarea {
    min-height: 150px;
}

button[type="submit"] {
    background-color: #8b5a2b;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
}

button[type="submit"]:hover {
    background-color: #6d4722;
}

.feedback {
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 4px;
}

.feedback.success {
    background-color: #d4edda;
    color: #155724;
}

    map {
        height: 400px;
        width: 100%;
        border-radius: 8px;
        margin: 20px 0;
        box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    }

    .map-container {
        flex: 1;
        min-width: 300px;
    }

/* Responsive Design */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    .language-switcher {
        margin-left: 0;
        padding-right: 0;
    }
    
    .content {
        flex-direction: column;
    }
}

/* Bakery Page Styles */
.bakery-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.bakery-image {
    flex: 1;
    min-width: 300px;
}

.bakery-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.bakery-info {
    flex: 2;
    min-width: 300px;
}

.bakery-details {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.detail-item {
    flex: 1;
    min-width: 250px;
    background: #fff8f0;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.detail-item h3 {
    color: #8b5a2b;
    margin-top: 0;
}

@media (max-width: 768px) {
    .bakery-content {
        flex-direction: column;
    }
    
    .bakery-details {
        flex-direction: column;
    }
}
