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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

/* Slideshow Container */
.slideshow-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-color: #000;
}

/* Slides */
.slide {
    display: none;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.slide.active {
    display: block;
}

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

/* Fade animation */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from { opacity: 0.6; }
    to { opacity: 1; }
}

/* Info Box Overlay */
.info-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 3rem 4rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    text-align: center;
    z-index: 10;
    max-width: 90%;
    width: 550px;
}

.store-name {
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 2rem;
    letter-spacing: -1px;
}

.store-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.store-details p {
    font-size: 1.25rem;
    color: #34495e;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.75rem;
    line-height: 1.6;
}

.icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    margin-top: 2px;
    color: #3498db;
}

.indent {
    padding-left: 36px;
}

.store-message {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(52, 152, 219, 0.2);
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    text-align: center;
}

/* Navigation Dots */
.dots-container {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 11;
    display: flex;
    gap: 12px;
}

.dot {
    height: 15px;
    width: 15px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.dot.active {
    background-color: rgba(255, 255, 255, 1);
    transform: scale(1.1);
}

/* Mobile Responsive Design */
@media screen and (max-width: 768px) {
    .info-box {
        padding: 2rem 1.5rem;
        width: 85%;
        border-radius: 15px;
    }
    
    .store-name {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .store-details p {
        font-size: 1rem;
    }
    
    .icon {
        width: 22px;
        height: 22px;
    }
    
    .indent {
        padding-left: 30px;
    }
    
    .dots-container {
        bottom: 20px;
    }
    
    .dot {
        height: 12px;
        width: 12px;
    }
    
    .store-message {
        margin-top: 1.5rem;
        padding-top: 1rem;
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 480px) {
    .info-box {
        padding: 1.5rem 1rem;
        width: 90%;
    }
    
    .store-name {
        font-size: 1.75rem;
        margin-bottom: 1.25rem;
    }
    
    .store-details {
        gap: 1rem;
    }
    
    .store-details p {
        font-size: 0.95rem;
        flex-direction: row;
        text-align: left;
    }
    
    .icon {
        width: 20px;
        height: 20px;
    }
    
    .store-message {
        margin-top: 1.25rem;
        padding-top: 0.75rem;
        font-size: 0.85rem;
    }
}

