* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: #574035;
    background-color: #efebe0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: rgba(239, 235, 224, 0.95);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(87, 64, 53, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 60px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-links a:not(.cta-btn) {
    text-decoration: none;
    color: #574035;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:not(.cta-btn):hover {
    color: #c29a92;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    align-items: center;
    gap: 20px;
}

.mobile-cta {
    background: linear-gradient(135deg, #c29a92, #d4b2a7);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(194, 154, 146, 0.3);
    font-size: 0.9rem;
}

.mobile-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(194, 154, 146, 0.4);
    color: white;
}

/* Hamburger Menu */
.hamburger-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-menu span {
    width: 24px;
    height: 2px;
    background: #574035;
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 89px;
    left: 0;
    width: 100%;
    background: rgba(239, 235, 224, 0.98);
    backdrop-filter: blur(10px);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(87, 64, 53, 0.1);
}

.mobile-menu-overlay.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-menu-links {
    list-style: none;
    padding: 30px 20px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.mobile-menu-links a {
    color: #574035;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: block;
}

.mobile-menu-links a:hover {
    background: #f8f5f0;
    color: #c29a92;
}

.cta-btn {
    background: linear-gradient(135deg, #c29a92, #d4b2a7);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(194, 154, 146, 0.3);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(194, 154, 146, 0.4);
    color: white;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8f5f0 0%, #efebe0 100%);
    padding: 180px 0 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background-image: url('../images/Donut-Shop-featured-image.jpg');
    background-size: cover;
    background-position: center left;
    background-repeat: no-repeat;
    mask-image: linear-gradient(to right, rgba(0,0,0,1) 0%, rgba(0,0,0,0.8) 60%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,1) 0%, rgba(0,0,0,0.8) 60%, rgba(0,0,0,0) 100%);
    z-index: 0;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    color: #574035;
    margin-bottom: 20px;
    font-weight: 300;
    letter-spacing: -1px;
}

.hero .subtitle {
    font-size: 1.3rem;
    color: #8b6f67;
    margin-bottom: 15px;
    font-style: italic;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero .services-list {
    font-size: 1.1rem;
    color: #574035;
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-cta {
    background: linear-gradient(135deg, #c29a92, #d4b2a7);
    color: white;
    padding: 18px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(194, 154, 146, 0.3);
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(194, 154, 146, 0.4);
    color: white;
}

/* Event Types Strip */
.event-types-strip {
    background: white;
    padding: 50px 0;
    border-bottom: 2px solid #f8f5f0;
}

.strip-title {
    text-align: center;
    font-size: 2rem;
    color: #574035;
    margin-bottom: 10px;
    font-weight: 300;
}

.strip-subtitle {
    text-align: center;
    color: #c29a92;
    font-size: 1.1rem;
    margin-bottom: 40px;
    font-style: italic;
}

.event-types-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.event-type {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    padding: 15px;
    border-radius: 10px;
}

.event-type:hover {
    transform: translateY(-5px);
    background: #f8f5f0;
}

.event-icon {
    width: 50px;
    height: 50px;
    color: #c29a92;
    transition: all 0.3s ease;
}

.event-type:hover .event-icon {
    color: #574035;
    transform: scale(1.1);
}

.event-type span {
    font-size: 0.9rem;
    color: #574035;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
}

/* Services Section */

.services {
    padding: 80px 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #574035;
    margin-bottom: 20px;
    font-weight: 300;
}

.section-subtitle {
    text-align: center;
    color: #c29a92;
    font-size: 1.2rem;
    margin-bottom: 60px;
    font-style: italic;
}

.services-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: start;
}

.services-image {
    position: sticky;
    top: 120px;
    border: 3px solid #574035;
    border-radius: 15px;
    overflow: hidden;
    background: white;
    box-shadow: 0 4px 15px rgba(87, 64, 53, 0.1);
}

.services-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-card {
    background: #f8f5f0;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: #c29a92;
    box-shadow: 0 10px 30px rgba(194, 154, 146, 0.2);
}

.service-card h3 {
    color: #574035;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* Services CTA Button */
.services-cta-container {
    text-align: center;
    margin-top: 50px;
}

.services-cta-btn {
    background: linear-gradient(135deg, #c29a92, #d4b2a7);
    color: white;
    padding: 18px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(194, 154, 146, 0.3);
}

.services-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(194, 154, 146, 0.4);
    color: white;
}

/* Gallery - Carousel Section */

.gallery {
    padding: 80px 0;
    background: #f8f5f0;
}

/* Carousel Container */
.carousel-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.carousel-slide {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 60px;
    position: relative;
}

.carousel-image {
    max-width: 100%;
    max-height: 600px;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(194, 154, 146, 0.2);
    cursor: pointer;
    transition: transform 0.3s ease;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.carousel-image:hover {
    transform: translate(-50%, -50%) scale(1.02);
    box-shadow: 0 12px 40px rgba(194, 154, 146, 0.3);
}

.carousel-image-1 {
    z-index: 1;
}

.carousel-image-2 {
    z-index: 2;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.carousel-image-2.fade-in {
    opacity: 1;
}

/* Carousel Navigation Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #c29a92;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    color: #574035;
}

.carousel-btn:hover {
    background: #c29a92;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

.carousel-btn svg {
    width: 24px;
    height: 24px;
}

/* Carousel Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #c29a92;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.indicator:hover {
    background: rgba(194, 154, 146, 0.5);
    transform: scale(1.2);
}

.indicator.active {
    background: #c29a92;
    transform: scale(1.3);
}

/* Zoom Overlay */
.zoom-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.zoom-overlay.active {
    display: flex;
    opacity: 1;
}

.zoom-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 120px;
    max-height: 100vh;
}

.zoom-image {
    max-width: 100%;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
}

/* Zoom Close Button */
.zoom-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    z-index: 10001;
}

.zoom-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.zoom-close svg {
    width: 24px;
    height: 24px;
}

/* Zoom Navigation Buttons */
.zoom-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    z-index: 10001;
}

.zoom-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.zoom-nav.prev {
    left: 30px;
}

.zoom-nav.next {
    right: 30px;
}

.zoom-nav svg {
    width: 28px;
    height: 28px;
}

/* About Section */
.about {
    padding: 80px 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    color: #574035;
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: 300;
}

.about-text p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 1.1rem;
}

.about-image {
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(194, 154, 146, 0.1);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f5f0 0%, #efebe0 100%);
    text-align: center;
}

.contact h2 {
    color: #574035;
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 300;
}

.contact p {
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.contact-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(194, 154, 146, 0.1);
    min-width: 200px;
}

.contact-item h4 {
    color: #574035;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.contact-item p {
    color: #c29a92;
    margin: 0;
    font-size: 1rem;
}

/* Form Embed Styling */
#formflow-embed {
    max-width: 600px;
    margin: 0 auto 50px auto;
    padding: 40px;
    background: white;
    border: 3px solid #c29a92;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(194, 154, 146, 0.25);
    transition: all 0.3s ease;
}

#formflow-embed:hover {
    box-shadow: 0 12px 40px rgba(194, 154, 146, 0.35);
    transform: translateY(-2px);
}

/* Footer */
footer {
    background: #574035;
    color: #efebe0;
    padding: 50px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 30px;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.maple-leaf {
    width: 60px;
    height: 60px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.footer-left p {
    margin: 0;
    font-size: 1.1rem;
    color: #efebe0;
    font-weight: 500;
}

.footer-center {
    text-align: center;
}

.footer-center p {
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.footer-right {
    text-align: right;
}

.footer-nav {
    list-style: none;
    margin-bottom: 20px;
}

.footer-nav li {
    margin-bottom: 8px;
}

.footer-nav a {
    color: #efebe0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #c29a92;
}

.social-links {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.social-links a {
    color: #efebe0;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #c29a92;
}

.social-icon {
    width: 24px;
    height: 24px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(239, 235, 224, 0.2);
    font-size: 0.8rem;
    color: rgba(239, 235, 224, 0.7);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        gap: 15px;
    }

    .nav-links a:not(.cta-btn) {
        font-size: 0.9rem;
    }

    .hero {
        padding: 120px 0 80px;
    }

    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .hero .subtitle {
        font-size: 1.1rem;
    }

    .hero .services-list {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
    }

    /* Event Types Strip Tablet */
    .event-types-strip {
        padding: 40px 0;
    }

    .strip-title {
        font-size: 1.8rem;
    }

    .strip-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .event-types-container {
        gap: 30px;
    }

    .event-icon {
        width: 45px;
        height: 45px;
    }

    .event-type span {
        font-size: 0.85rem;
    }

    .services {
        padding: 60px 0;
    }


    .services-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services-image {
        position: relative;
        top: 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .service-card {
        padding: 30px 25px;
    }

    .gallery {
        padding: 60px 0;
    }

    /* Carousel Tablet */
    .carousel-container {
        min-height: 400px;
    }

    .carousel-slide {
        padding: 0 50px;
    }

    .carousel-image {
        max-height: 500px;
    }

    .carousel-btn {
        width: 45px;
        height: 45px;
    }

    .carousel-btn svg {
        width: 20px;
        height: 20px;
    }

    /* Zoom Overlay Tablet */
    .zoom-content {
        padding: 80px 80px;
    }

    .zoom-nav {
        width: 50px;
        height: 50px;
    }

    .zoom-nav svg {
        width: 24px;
        height: 24px;
    }

    .about {
        padding: 60px 0;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .about-text p {
        font-size: 1rem;
    }

    .contact {
        padding: 60px 0;
    }

    .contact h2 {
        font-size: 2rem;
    }

    .contact p {
        font-size: 1.1rem;
    }

    .contact-info {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .contact-item {
        width: 100%;
        max-width: 300px;
        padding: 25px;
    }

    #formflow-embed {
        padding: 10px;
        margin: 0 5px;
    }

    /* Footer Tablet */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }

    .footer-left {
        justify-content: center;
    }

    .footer-right {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    #formflow-embed {
        padding: 15px;
        margin: 0 20px;
    }
}

@media (max-width: 480px) {
    .nav-links a:not(.cta-btn) {
        display: none;
    }
    
    .hero h1 {
        font-size: 2rem;
    }

    .hero .services-list {
        font-size: 0.95rem;
    }
    
    .container {
        padding: 0 15px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .services-grid {
        gap: 20px;
    }

    .service-card {
        padding: 25px 20px;
    }

    .service-card h3 {
        font-size: 1.2rem;
    }

    .about-text h2 {
        font-size: 1.8rem;
    }

    .contact h2 {
        font-size: 1.8rem;
    }

    .contact-item {
        padding: 20px;
    }

    #formflow-embed {
        padding: 5px;
        margin: 0 0 30px 0;
    }


    .logo {
        height: 50px;
    }

    .cta-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .hero-cta {
        padding: 15px 30px;
        font-size: 1rem;
    }

    /* Carousel Mobile */
    .carousel-container {
        min-height: 350px;
    }

    .carousel-slide {
        padding: 0 40px;
    }

    .carousel-image {
        max-height: 400px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
    }

    .carousel-btn.prev {
        left: 5px;
    }

    .carousel-btn.next {
        right: 5px;
    }

    .carousel-btn svg {
        width: 18px;
        height: 18px;
    }

    .indicator {
        width: 10px;
        height: 10px;
    }

    /* Zoom Overlay Mobile */
    .zoom-content {
        padding: 60px 20px;
    }

    .zoom-close {
        width: 40px;
        height: 40px;
        top: 15px;
        right: 15px;
    }

    .zoom-close svg {
        width: 20px;
        height: 20px;
    }

    .zoom-nav {
        width: 45px;
        height: 45px;
    }

    .zoom-nav.prev {
        left: 10px;
    }

    .zoom-nav.next {
        right: 10px;
    }

    .zoom-nav svg {
        width: 22px;
        height: 22px;
    }

    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-left {
        justify-content: center;
    }

    .footer-right {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-nav {
        margin-bottom: 15px;
    }
}
