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

body {
    font-family: Arial, sans-serif;
    background: #000;
    color: #fff;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 200px;
}

.section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    transition: opacity 0.3s ease;
}

#about {
    padding: 1rem;
    margin-top: 450px;
    align-items: flex-start;
}

.section h2 {
    font-size: 3rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.menu-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.qr-image {
    width: 200px;
    height: 200px;
    padding: 1rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.menu-link {
    color: #d4af37;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s;
}

.menu-link:hover {
    color: #fff;
    text-shadow: 0 0 10px #d4af37;
}

#menu {
    flex-direction: column;
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.3);
}

#contact {
    flex-direction: column;
}

.contact-container {
    display: flex;
    gap: 3rem;
    width: 90%;
    max-width: 1400px;
    align-items: center;
}

.contact-info {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.instagram-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #fff;
    font-size: 1.1rem;
}

.contact-icon {
    width: 24px;
    height: 24px;
    color: #d4af37;
    flex-shrink: 0;
}

.map-container {
    flex: 1.2;
    height: 500px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }
    
    .map-container {
        width: 100%;
    }
}

.about-container {
    display: flex;
    gap: 5rem;
    width: 90%;
    max-width: 1200px;
    align-items: center;
}

.about-text {
    flex: 1;
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.slider-container {
    flex: 2;
    position: relative;
    height: 500px;
}

.slider {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    transition: background-image 0.5s ease;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    font-size: 2.5rem;
    font-weight: 100;
    cursor: pointer;
    transition: all 0.3s;
    opacity: 0.6;
}

.slider-btn:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.2);
}

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

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

@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
    }
    
    .slider-container {
        width: 100%;
    }
}

.brand-logo {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1001;
    transition: opacity 0.3s ease;
}

.brand-logo img {
    height: 160px;
    width: auto;
}

.menu-btn {
    position: fixed;
    top: 2rem;
    left: 2rem;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1002;
    transition: opacity 0.3s ease;
}

.menu-btn::before,
.menu-btn::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background: #fff;
    transition: all 0.3s;
    left: 5px;
}

.menu-btn::before {
    top: 12px;
}

.menu-btn::after {
    bottom: 12px;
}

.menu-btn.open::before {
    transform: rotate(45deg);
    top: 18px;
}

.menu-btn.open::after {
    transform: rotate(-45deg);
    bottom: 18px;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.overlay.open {
    transform: translateX(0);
}

.overlay .text {
    padding-left: 5rem;
}

.overlay .text ul {
    list-style: none;
    text-align: left;
}

.overlay .text ul li {
    margin: 2rem 0;
}

.overlay .text ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 2.5rem;
    font-weight: bold;
    transition: color 0.3s;
}

.overlay .text ul li a:hover {
    color: #d4af37;
}

footer {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 2rem;
    border-top: 1px solid #333;
}

footer p {
    margin: 0;
    font-size: 0.9rem;
}

footer a {
    color: #d4af37;
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: #fff;
}

.hero-slider {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: background-image 1s ease-in-out;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    color: #fff;
}

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    margin: 0;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.7);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin: 1rem 0 0 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

#about h2 {
    margin-bottom: 3rem;
}

main {
    position: relative;
    z-index: 2;
    margin-top: 100vh;
    background: #000;
}

footer {
    position: relative;
    z-index: 2;
    background: #000;
    color: #fff;
    text-align: center;
    padding: 2rem;
    border-top: 1px solid #333;
}
