
:root {
   --cherry-red: #9a1f40;
   --cream: #fbf7f4;
   --warm-brown: #4a3728;
   --soft-rose: #e3b5b5;
   --placeholder-bg: #e9e4e0;
}

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            margin: 0;
            padding: 0;
            background-color: var(--cream);
            color: var(--warm-brown);
            line-height: 1.6;
        }

		header {
			background-image: linear-gradient(rgba(74, 55, 40, 0.6), rgba(154, 31, 64, 0.4)), url('https://cherrycottagepastry.com/img/bg.png');
			background-size: cover;
			background-position: center;
			height: 250px; 
			display: -webkit-box;
			display: -webkit-flex;
			display: -moz-box;
			display: -ms-flexbox;
			display: flex;
			flex-direction: column;
			justify-content: center;
			align-items: center;
			text-align: center;
			padding: 0 15px;
			border-bottom: 5px solid var(--soft-rose);
			color: #fff;
		}

        header h1 {
            margin: 0;
            font-size: 3rem;
            font-family: 'Georgia', serif;
        }

        header p {
            margin: 0.5rem 0 0 0;
            font-style: italic;
            font-size: 1.2rem;
            opacity: 0.9;
        }

        .container {
            max-width: 900px;
            margin: 2rem auto;
            padding: 0 1rem;
        }

        .about-section {
            text-align: center;
            margin-bottom: 3rem;
            padding: 2rem;
            background: white;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
        }

        h2 {
            color: var(--cherry-red);
            font-family: 'Georgia', serif;
            border-bottom: 2px solid var(--soft-rose);
            padding-bottom: 0.5rem;
        }
/* Minimal Top Navigation */
.top-nav {
    background-color: var(--warm-brown);
    padding: 1rem 0;
    text-align: center;
}

.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.nav-links a {
    color: var(--cream);
    text-decoration: none;
    font-family: 'Segoe UI', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--soft-rose);
}
        /* Menu Grid */
        .menu-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
        }

        .menu-item {
            background: white;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
            overflow: hidden; /* Keeps the image corners rounded */
            border-bottom: 4px solid var(--cherry-red);
            transition: transform 0.2s;
            display: flex;
            flex-direction: column;
        }

        .menu-item:hover {
            transform: translateY(-3px);
        }

        /* Image Placeholder Style */
        .menu-item-image {
            width: 100%;
            height: 200px;
            background-color: var(--placeholder-bg);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #8c827a;
            font-style: italic;
            font-size: 0.9rem;
            object-fit: cover; /* Ensures real images don't distort later */
        }

        .menu-item-content {
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        .menu-item-header {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            margin-bottom: 0.5rem;
        }

        .menu-item h3 {
            margin: 0;
            color: var(--warm-brown);
            font-size: 1.3rem;
        }

        .menu-item .price {
            font-weight: bold;
            color: var(--cherry-red);
        }

        .menu-item p {
            margin: 0;
            font-size: 0.95rem;
            color: #666;
        }

        footer {
            text-align: center;
            padding: 2rem;
            margin-top: 4rem;
            font-size: 0.9rem;
            background-color: var(--warm-brown);
            color: var(--cream);
        }
/* Align video titles to the left */
#video-container .menu-item-header h3 {
    text-align: left;
    margin-left: 0; 
}

/* Optional: Align the video descriptions to the left as well */
#video-container .menu-item-content p {
    text-align: left;
}