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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}


/* Logo */
.logo-container {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
}

.logo {
    max-width: 200px;
    height: auto;
    filter: brightness(0) invert(1) drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

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

/* Sections */
.section {
    padding: 60px 20px;
}

.section:nth-child(even) {
    background: #f9f9f9;
}

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

h2 {
    font-size: 36px;
    margin-bottom: 30px;
    text-align: center;
    color: #2980b9;
}

h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2980b9;
}

p {
    margin-bottom: 15px;
    font-size: 18px;
}

/* About Section */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-text h2 {
    text-align: left;
}

.about-text p {
    text-align: justify;
}

.about-slider {
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: 8px;
}

.about-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.about-slide.active {
    opacity: 1;
}

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

/* Menu Section */
#menu {
    text-align: center;
}

.menu-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.menu-content {
    text-align: center;
}

.menu-logo-bg {
    height: 100%;
    min-height: 500px;
    background-image: url('placemakers/MamaMaria - Logos-01.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.1;
}

.qr-placeholder {
    margin: 30px auto;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

.qr-placeholder img {
    max-width: 100%;
    max-height: 100%;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.contact-item {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
}

.contact-item h3 {
    margin-bottom: 20px;
}

.contact-item a {
    color: #2980b9;
    text-decoration: none;
    font-weight: bold;
}

.contact-item a:hover {
    text-decoration: underline;
}

.instagram-feed {
    margin-top: 20px;
    max-height: 400px;
    overflow: hidden;
}

/* Footer */
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 20px;
}

/* Burger Menu */
.b-container {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
}

.b-menu {
    width: 40px;
    height: 30px;
    cursor: pointer;
    position: relative;
}

.b-bun {
    background: #fff;
    position: absolute;
    left: 0;
    width: 100%;
    height: 4px;
    border-radius: 2px;
    transition: 0.3s;
}

.b-bun--top {
    top: 0;
}

.b-bun--mid {
    top: 13px;
}

.b-bun--bottom {
    top: 26px;
}

.b-container.open .b-bun--top {
    transform: rotate(45deg);
    top: 13px;
}

.b-container.open .b-bun--mid {
    opacity: 0;
}

.b-container.open .b-bun--bottom {
    transform: rotate(-45deg);
    top: 13px;
}

.b-nav {
    position: fixed;
    top: 0;
    left: -300px;
    width: 250px;
    height: 100vh;
    background: rgba(41, 128, 185, 0.95);
    z-index: 999;
    padding: 80px 20px 20px;
    transition: 0.3s;
    list-style: none;
}

.b-nav.open {
    left: 0;
}

.b-nav li {
    margin: 20px 0;
}

.b-link {
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    display: block;
    padding: 10px;
    transition: 0.3s;
}

.b-link:hover {
    background: rgba(255,255,255,0.1);
    padding-left: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .logo {
        max-width: 100px;
    }
    
    h2 {
        font-size: 28px;
    }
    
    .about-container {
        grid-template-columns: 1fr;
    }
    
    .menu-container {
        grid-template-columns: 1fr;
    }
    
    .menu-logo-bg {
        display: none;
    }
    
    .about-text h2 {
        text-align: center;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
}
