/* Reset & Base */
        *, *::before, *::after {
            box-sizing: border-box;
            border-radius: 8px;
        }
        .rye-regular {
            font-family: "Rye", serif;
            font-weight: 400;
            font-style: normal;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: url('/static/images/background_main.png') center/cover no-repeat;
            color: #fff;
            line-height: 1.4;
        }
        a {
            color: #fcf1d5;
            text-decoration: none;
            transition: color 0.3s;
        }
        a:hover {
            text-decoration: underline;
            color: #D99E1B;
        }

        /* Announcement Bar */
        .announcement-bar {
            width: 100%;
            background: #ffb300;
            color: #411a0b;
            text-align: center;
            font-family: 'Crimson Pro', serif;
            font-weight: 600;
            padding: 10px 14px;
            line-height: 1.2;
            position: relative;
            cursor: pointer;
            user-select: none;
        }
        .announcement-content { width: 100%; max-width: 900px; margin: 0 auto; }
        .announcement-bar.is-hidden { display: none !important; }
        .announcement-bar:focus { outline: 2px dashed #65371d; outline-offset: 2px; }

        /* Top Bar */
        .top-bar {
            background: #111;
            color: #aaa;
            font-size: 0.8rem;
            padding: 5px 10px;
        }

        .tob-bar-content {
            margin: 0 auto;          /* ← this centers it */
            display: flex;
            justify-content: space-between; /* or `center` if you want both items grouped in the middle */
            align-items: center;
            padding: 0 20px; 
        }

        .top-bar div {
            display: flex;
            align-items: center;
            gap: 4px;
            justify-content: space-between;
        }

        /* Header */
        header {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 15px 10px;
            background: #411a0b;
        }
        .logo {
            color: #fcf1d5;
            font-weight: bold;
            margin-bottom: 10px;
            font-family: "Crimson Pro", serif;
            font-style: normal;
            font-size: 1.4em;
            text-align: center;
        }
        nav ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 10px;
            align-items: center;
            padding: 0;
            font-size: 1.2rem;
        }
        nav a {
            padding: 6px 10px;
            border-radius: 4px;
            transition: background 0.3s, color 0.3s;
        }
        nav a:hover {
            background: #ffb300;
            color: #1a1a1a;
        }

        /* Hero Section */
        .hero {
            position: relative;
            background: no-repeat center/60% url('/static/images/logo.png');
            width: 100%;
            height: 50vh;
            overflow: hidden;
            margin-top: 20px;
        }
        .hero .content {
            text-align: center;
            margin: auto;
            padding: 5px;
            border: 2px solid #65371d66;
            border-radius: 8px;
            height: 50vh;
            background: #65371d66;
            font-family: 'Rye', 'serif';
            align-content: center;
        }
        .hero h2 {
            font-size: 2rem;
            margin-bottom: 8px;
            font-weight: normal;
            color: #f4ddb1;
        }
        .hero p {
            font-size: 1rem;
            margin-bottom: 15px;
        }
        .btn {
            background: #dda854;
            color: #43281d;
            padding: 10px 20px;
            border: none;
            border-radius: 4px;
            font-size: 0.9rem;
            cursor: pointer;
            transition: opacity 0.3s;
            font-family: 'Crimson Pro', serif;
            font-weight: bold;
        }
        .btn:hover {
            opacity: 1;
            color: #000;
        }

        /* Main & Sections */
        main {
            overflow: auto;
        }

        main .overlay {
            position: relative;
            inset: 0;
            background: rgba(0,0,0,0.5);
        }

        main::before {
            content: "";
            inset: 0;
            background: radial-gradient(ellipse at center, transparent 40%, rgb(135 57 0) 100%);
            pointer-events: none;
        }

        .about {
            margin-top: 20px;
        }

        main .about-text {
            border: 2px solid #65371d66;
            border-radius: 8px;
            background: #65371d66;
            font-weight: normal;
        }
        main h2 {
            margin-left: 5%;
            color: #fcf1d5;
            margin-bottom: 8px;
            font-size: 1.8rem;
            font-family: 'Rye', serif;
            font-weight: normal;
            text-align: center;
        }
        main p {
            margin-bottom: 15px;
        }

        main .our-story {
            margin-left: 5%;
            margin-right: 5%;
            color: #fcf1d5;
            font-size: 1rem;
        }

        .our-story {
            color: #fcf1d5;
        }
        .our-story:first-letter {
            /* Make it really big: */
            font-size: 6rem;         /* Adjust to taste */
            float: left;
            font-size: 6rem;
             line-height: 60px;
            padding-top: 4px;
            padding-right: 8px;
            padding-left: 3px;
            font-family: 'Crimson Pro';    /* Space between initial and text */
        }

        /* Contact Section */
        #contact_us {
            text-align: center;
            margin-top: 20px;
            padding: 5px;
            border: 2px solid #65371d66;
            border-radius: 8px;
            min-height: 20vh;
            background: #65371d66;
        }
        #contact_us h2 {
            font-family: 'Rye', 'serif';
            font-weight: normal;
            color: #fcf1d5;
            margin-bottom: 8px;
            font-size: 1.8rem;
        }
        #contact_us ul {
            list-style: none;
        }
        #contact_us li {
            margin: 8px 0;
            font-size: 0.95rem;
        }

        .about-text h2 {
            text-align: center;
            margin-left: 0;
        }

        .about-text ul {
            list-style-position: inside;
            padding-left: 0;
        }

        .instructions, .weddings {
            font-family: 'Crimson Pro', serif;
            font-size: 1.2rem;
            color: #fffdf2;
            text-align: center;
            font-weight: normal;
            padding-left: 0;
            padding-right: 0;
        }

        .wedding-sizes {
            display: grid;
            align-content: center;
            justify-content: center;
            justify-items: stretch;
            grid-template-areas: 
            "header"
            "tiers";
            background-color: #65371d66;
        }

        /* TODO do a table here! */
        .wedding-tiers {             /* fixed width or max-width of your choice */
            text-align: left;
            display: flex;
            flex-direction: column;
        }

        /* Reset list styles and indent bullets consistently */
        .wedding-tiers ul {
            grid-area: main;
            margin: 0;
            padding: 0;
            padding-left: 1.2em;
            list-style-position: inside;
        }

        /* Optional: spacing inside each tier block */
        .wedding-tiers h4 {
            grid-area: header;
            align-self: center;
            margin-bottom: 0.5rem;
        }

        .wedding-tiers > ul > li {
            margin-bottom: 0.75rem;
        }

        .instructions, .weddings p, span {
            font-weight: normal;
        }

        .instructions > h3,
        .weddings > h3 {
            font-size: 1.4rem;
            margin-bottom: 0;
            color: #fcf1d5;
        }

        .order-details {
            list-style: none;
            padding: 0;
            margin: 0;
            font-size: 0.9rem;
            color: #fcf1d5;
        }

        /* .instructions , .weddings ul {
            flex: 1;
            
            display: flex;
            flex-wrap: wrap;
            flex-direction: column;
            
            margin-top: 0;
            margin-bottom: 0;
        } */

        li::marker {
            font-size: 0.8em; /* Adjust the value as needed */
        }

        /* Footer */
        footer {
            color: #aaa;
            text-align: center;
            padding: 10px;
            font-size: 0.8rem;
            margin-top: 20px;
        }
        footer a {
            color: #ffb300;
        }

        .content ul{
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .carousel {
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 20px auto;
        }
        .carousel-container {
            position: relative;
            width: 100%;    /* Limits max size on large screens */
            aspect-ratio: 2.43/1;    /* Keeps a nice ratio, remove if you want to adapt to image aspect */
            overflow: hidden;
            border-radius: 8px;
            border: 2px solid #65371d66;
            background: #65371d66;
        }
        .carousel-img {
            opacity: 0;
            transition: opacity 0.8s;
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            object-fit: contain;   /* Shows full image, use cover for cropping */
            pointer-events: none;
        }
        .carousel-img.active {
            opacity: 1;
            pointer-events: auto;
            z-index: 1;
        }
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: #dda854cc;
            color: #43281d;
            border: none;
            border-radius: 50%;
            width: 32px;
            height: 32px;
            cursor: pointer;
            font-size: 1.5rem;
            z-index: 2;
            opacity: 0.8;
        }
        .carousel-btn.prev { left: 8px; }
        .carousel-btn.next { right: 8px; }

        /* Pricing Page Styles */
        .pricing-guide {
            padding: 20px 15px;
            color: #411a0b;
            max-width: 900px;
            margin: 20px auto;
            border: 2px solid #65371d66;
            background: #65371d66;
            border-radius: 8px;
        }

        .pricing-header {
            text-align: center;
            margin-bottom: 30px;
        }

        .pricing-header .pricing-logo {
            max-width: 150px;
            margin-bottom: -20px;
        }

        .pricing-header h1 {
            font-family: 'Rye', serif;
            font-weight: normal;
            font-size: 2.5rem;
            color: #fcf1d5;
            margin: 0;
        }

        .pricing-grid {
            display: grid;
            grid-auto-rows: 1fr;
            gap: 30px;
        }

        .price-item, .custom-size-section {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            background: #65371d66;
            padding: 20px;
            border-radius: 8px;
            border: 1px solid #e8d8c2;
        }

        .price-item-image img {
            max-width: 100%;
            height: auto;
            max-height: 200px; /* Control image height */
            margin-bottom: 15px;
        }

        .price-item-description {
            display: flex;
            flex-direction: column;
            height: stretch;
            justify-content: space-between;
            align-items: center;
        }

        .price-item-description h2 {
            font-family: 'Crimson Pro', serif;
            font-size: 2rem;
            color: #fffdf2;
            margin: 0 0 10px 0;
        }

        .price-item-description p {
            font-family: 'Segoe UI', sans-serif;
            color: #fffdf2;
            font-size: 1rem;
            line-height: 1.5;
            margin: 0 0 15px 0;
        }

        .price-tag {
            background-color: #411a0ba1;
            color: #fff;
            font-family: 'Crimson Pro', serif;
            font-weight: bold;
            font-size: 1.2rem;
            padding: 10px 25px;
            border-radius: 20px;
            display: inline-block;
        }

        .custom-size-section {
            margin-top: 30px;
        }

        .pricing-contact {
            text-align: center;
            margin-top: 40px;
            font-family: 'Crimson Pro', serif;
        }

        .pricing-contact p {
            margin: 5px 0;
        }

        .pricing-contact a {
            color: #a54a43;
            font-size: 1.1rem;
        }
        .pricing-contact a:hover {
            color: #D99E1B;
        }

        /* Menu Page Styles */
        .menu-guide {
            padding: 20px 15px;
            color: #fffdf2;
            max-width: 900px;
            margin: 20px auto;
            background: #65371d66;
            border: 2px solid #e8d8c2;
            border-radius: 8px;
            font-family: 'Crimson Pro', serif;
        }

        .menu-header {
            text-align: center;
            margin-bottom: 30px;
        }

        .menu-header .menu-logo {
            max-width: 150px;
            margin-bottom: -20px;
        }

        .menu-header h1 {
            font-family: 'Rye', serif;
            font-weight: normal;
            font-size: 2.5rem;
            color: #fcf1d5;
            margin: 0;
        }

        .menu-grid {
            display: grid;
            grid-template-columns: 1fr;
            margin-bottom: 30px;
        }

        .menu-category h2 {
            font-family: 'Crimson Pro', serif;
            font-weight: bold;
            font-size: 1.8rem;
            color: #fcf1d5;
            text-align: center;
            margin-bottom: 15px;
        }

        .menu-category ul {
            list-style: none;
            padding: 0;
            margin: 0;
            text-align: center;
        }

        .menu-category li {
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: #fffdf2;
        }

        .special-cakes ul {
            -moz-column-count: 2;
            -webkit-column-count: 2;
            column-count: 2;
            border-bottom: 1px dashed #e8d8c2;
        }

        .menu-footer {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px dashed #e8d8c2;
        }

        .menu-footer p {
            font-size: 1.1rem;
            color: #fffdf2;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* Desktop Overrides */
    @media (min-width: 768px) {
        .announcement-bar{
            margin: 0 auto;
            max-width: 900px;
        }    
        .top-bar {
            padding: 8px 20px;
            font-size: 0.9rem;
            margin: 0 auto;
            max-width: 900px;
        }

        .top-bar-content {
            width: 100%;
            max-width: 900px;
            margin: 0 auto;
            display: flex;
        }

        header {
            flex-direction: row;
            justify-content: space-between;
            padding: 5px;
            margin: 0 auto;
            flex-grow: 1;
            max-width: 900px;
        }

        .header-content {
            width: 100%;
            max-width: 900px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.5rem;
            margin: 0;
        }
        nav ul {
            flex-direction: row;
            gap: 0;
        }
        .hero {
            background: no-repeat center/30% url('/static/images/logo.png');
        }
        .hero h2 {
            font-size: 3rem;
        }
        .hero p {
            font-size: 1.1rem;
        }
        .btn {
            padding: 15px 30px;
            font-size: 1rem;
        }
        main h2 {
            font-size: 2rem;
        }
        #contact_us {
            margin: 40px auto;
            padding: 30px 20px;
            max-width: 900px;
        }
        footer {
            font-size: 0.9rem;
        }

        .carousel {
            max-width: 900px;
            justify-self: center;
        }

        .content {
            max-width: 900px;
        }

        .about-text {
            max-width: 900px;
            margin: auto;
        }

        .wedding-sizes {
            column-gap: 2rem;
            grid-template-areas: 
            "header header"
            "tiers tiers";
        }

        .pricing-grid {
            grid-template-columns: 1fr 1fr;
        }

        .price-item, .custom-size-section {
            flex-direction: row;
            text-align: left;
        }
        
        .price-item-image {
            flex-basis: 40%;
            margin-right: 20px;
            margin-bottom: 0;
        }

        .price-item-description {
            flex-basis: 60%;
        }

        .custom-size-section .price-item-image {
            margin-bottom: 0;
        }

        .menu-grid {
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }
    }
