/* style.css - The "Cafe Menu" Theme  */

/* 1. Global Settings */
body {
    background-color: #FAF3E0; /* Light Cream (Latte Foam) */
    color: #3B2F2F;            /* Dark Espresso Text */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* 2. Header */
header {
    text-align: center;
    padding: 40px 20px;
    background-color: #FAF3E0; /* Blends with body */
    border-bottom: 3px solid #6F4E37; /* Thin Coffee Line */
}

h1 {
    color: #6F4E37; /* Coffee Bean Brown */
    font-size: 3em;
    margin: 0;
    font-weight: bold;
}

p.subtitle {
    color: #3B2F2F;
    font-size: 1.1em;
    margin-top: 10px;
}

/* 3. Navigation Bar */
nav {
    background-color: #3B2F2F; /* Dark Espresso Background */
    text-align: center;
    padding: 15px 0;
    margin-bottom: 40px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

nav a {
    color: #FAF3E0; /* Cream Text */
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    margin: 0 25px; /* Spacing between links */
    transition: color 0.3s ease;
}

nav a:hover {
    color: #D2691E; /* Cinnamon/Orange on Hover */
    text-decoration: underline;
}

/* 4. The Content Card */
.container {
    max-width: 900px;
    margin: 0 auto 40px auto; /* Centered */
    background-color: #FFFFFF; /* Pure White Paper */
    padding: 50px;
    border-radius: 8px;        /* Subtle corners */
    box-shadow: 0 4px 12px rgba(0,0,0,0.1); /* Soft shadow */
}

/* 5. Typography inside the Card */
h2, h3 {
    color: #D2691E; /* Cinnamon Accent */
    border-left: 5px solid #3B2F2F;
    padding-left: 15px;
    margin-top: 30px;
}

.blog-date {
    color: #888;
    font-style: italic;
    margin-bottom: 15px;
    display: block;
}

hr {
    border: 0;
    height: 1px;
    background: #D2691E;
    margin: 40px 0;
    opacity: 0.3;
}

/* gannt chart */
.timeline-container {
    text-align: center; /* Centers image */
    margin: 30px auto; 
    width: 100%;
    padding: 15px;
    box-sizing: border-box;
}

.bubble-img {
    width: 100%;
    max-width: 850px; /* sizzee */
    height: auto;
    border-radius: 25px;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
    display: block; /* margin*/
    margin: 0 auto; /* Center image */
}

/* hover pop up */
.bubble-img:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0px 12px 20px rgba(0, 0, 0, 0.25);
}