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

body {
    font-family: 'Vazirmatn';
    line-height: 1.6;
    background: #1a1a1a;
    color: #fff;
    overflow-x: hidden;
}

a {
   text-decoration: none;
}

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.slider-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    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;
    filter: brightness(0.4) blur(1px);
}

.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 3;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot.active,
.nav-dot:hover {
    background: #d4a574;
    border-color: #d4a574;
    transform: scale(1.2);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeInUp 1s ease-out;
}

.logo-container {
    margin-bottom: 3rem;
}

.logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #d4a574;
    box-shadow: 0 0 30px rgba(212, 165, 116, 0.3);
    animation: logoGlow 2s ease-in-out infinite alternate;
}

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

.cafe-name {
    font-size: 3rem;
    font-weight: 700;
    color: #d4a574;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(212, 165, 116, 0.3);
}

.tagline {
    font-size: 1.2rem;
    color: #e0e0e0;
    font-weight: 300;
    margin-bottom: 2rem;
}

.menu-btn {
    background: linear-gradient(135deg, #d4a574, #c19653);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Vazirmatn';
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.3);
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 auto;
}

.menu-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 165, 116, 0.4);
}

.menu-btn i {
    font-size: 1.2rem;
}

.contact-section {
    padding: 4rem 0;
    background: #2a2a2a;
}

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

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.contact-item i {
    font-size: 2rem;
    color: #d4a574;
    width: 60px;
    text-align: center;
}

.contact-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #d4a574;
}

.contact-info p,
.contact-info a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1.1rem;
}

.contact-info a:hover {
    color: #d4a574;
}

.map-btn {
    background: rgba(212, 165, 116, 0.2);
    color: #d4a574;
    border: 1px solid #d4a574;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-family: 'Vazirmatn';    
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.map-btn:hover {
    background: #d4a574;
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-btn.instagram {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
}

.social-btn.telegram {
    background: linear-gradient(135deg, #0088cc, #229ed9);
    color: white;
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.social-btn i {
    font-size: 1.3rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes logoGlow {
    from {
        box-shadow: 0 0 30px rgba(212, 165, 116, 0.3);
    }
    to {
        box-shadow: 0 0 50px rgba(212, 165, 116, 0.6);
    }
}

@media (max-width: 768px) {
    .cafe-name {
        font-size: 2.2rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .hero-content {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .social-links {
        flex-direction: column;
    }
    
    .logo {
        width: 100px;
        height: 100px;
    }
}

