/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.3) 100%), url('jeans-background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    color: #333;
    overflow-x: hidden;
}

.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Logo */
.logo {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    text-align: left;
    margin: 0;
}

.logo-text {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    margin: 1rem;
}

/* Main Content */
.main-content {
    background: rgba(0, 0, 0, 0.15);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(5px);
    text-align: center;
    max-width: 800px;
    width: 100%;
    margin-bottom: 0;
    z-index: 5;
}

/* Logo Image */
.logo-image {
    margin-bottom: 2rem;
    text-align: center;
}

.store-logo {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.store-logo:hover {
    transform: scale(1.05);
}

.coming-soon {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
    letter-spacing: 2px;
}

/* Subscription Form */
.subscription-form {
    margin-bottom: 2rem;
}

.subscription-form h3 {
    font-size: 1.5rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.email-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.input-group {
    display: flex;
    gap: 0.5rem;
    width: 100%;
    max-width: 400px;
}

.input-group input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.input-group input:focus {
    outline: none;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.subscribe-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    background: #000000;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.subscribe-btn .arrow {
    transition: transform 0.3s ease;
}

.subscribe-btn:hover .arrow {
    transform: translateX(3px);
}

.form-note {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-top: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Social Media Section */
.social-media-section {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.social-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 0.5rem;
    color: #ffffff;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.7));
}

.social-link:hover .social-icon {
    transform: scale(1.1);
    color: #000000;
}



/* Responsive Design */
@media (max-width: 1024px) {
    .coming-soon {
        font-size: 3rem;
    }
    
    .main-content {
        padding: 1.5rem;
        max-width: 700px;
    }
}

@media (max-width: 768px) {
    .coming-soon {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    .main-content {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .input-group {
        flex-direction: column;
        gap: 1rem;
    }
    
    .subscribe-btn {
        width: 100%;
        justify-content: center;
    }
    
    .social-media-section {
        gap: 1.5rem;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .coming-soon {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .subscription-form h3 {
        font-size: 1.2rem;
    }
    
    .main-content {
        padding: 1rem;
        margin: 0.5rem;
    }
    
    .logo-text {
        font-size: 1.2rem;
        margin: 0.5rem;
    }
    
    .social-media-section {
        gap: 1rem;
    }
    
    .social-icon {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 360px) {
    .coming-soon {
        font-size: 1.8rem;
    }
    
    .main-content {
        padding: 0.8rem;
    }
    
    .input-group input,
    .subscribe-btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* Landscape orientation */
@media (orientation: landscape) and (max-height: 600px) {
    .container {
        justify-content: flex-start;
        padding-top: 2rem;
    }
    
    .logo {
        position: relative;
        margin-bottom: 1rem;
    }
    
    .main-content {
        margin-top: 1rem;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .store-logo {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Touch devices */
@media (hover: none) and (pointer: coarse) {
    .subscribe-btn:hover {
        transform: none;
    }
    
    .social-link:hover .social-icon {
        transform: none;
    }
    
    .store-logo:hover {
        transform: none;
    }
}
