/* General Body Styles */
body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fdfdfd;
    color: #444;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header Styles */
header {
    background: url('https://source.unsplash.com/1600x900/?bakery,bread') no-repeat center center/cover;
    color: white;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    animation: fadeIn 2s ease-in-out;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.55);
}

header h1, header p {
    position: relative;
    z-index: 1;
}

.logo {
    font-size: 4em;
    animation: fadeIn 2s;
}

header h1 {
    font-family: 'Lora', serif;
    font-size: 4.5em;
    margin: 0;
    font-weight: 700;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.6);
    animation: slideInDown 1s ease-in-out;
}

header p {
    font-size: 1.4em;
    margin-top: 15px;
    animation: slideInUp 1s ease-in-out;
}

/* Section Styles */
section {
    padding: 60px 20px;
    margin: 0 auto;
    max-width: 850px;
    animation: fadeIn 2s;
}

.intro {
    text-align: center;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin-top: -60px;
    position: relative;
    z-index: 2;
    padding: 40px;
    border: 10px solid transparent;
    border-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><text y="50" font-size="50">🍞</text></svg>') 30 round;
}

.intro h2, .offerings h2, .location h2 {
    font-family: 'Lora', serif;
    color: #b55a0a;
    font-size: 3em;
    margin-bottom: 25px;
}

/* Offerings Section */
.offerings ul {
    list-style-type: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.offerings li {
    background-color: #fff;
    border: 1px solid #eee;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.offerings li:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.12);
}

/* Location Section */
.location {
    text-align: center;
    background-color: #fafafa;
    padding: 60px 20px;
    border-radius: 12px;
    margin-top: 40px;
}

.location address {
    font-style: normal;
    line-height: 2;
    font-size: 1.1em;
}

.location a {
    color: #b55a0a;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.location a:hover {
    color: #c06014;
    text-decoration: underline;
}

/* Footer Styles */
footer {
    background-color: #2c2c2c;
    color: white;
    text-align: center;
    padding: 25px;
    margin-top: 50px;
}

/* Keyframe Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInDown {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes slideInUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
