/* Coming Soon Page Styles - Light Theme */
/* Color Palette: #000000, #ffffff, #eeeeee, #ee242f */
/* RGB Variables: black(0,0,0), white(255,255,255), gray(238,238,238), red(238,36,47) */

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

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
    /* Background image - replace with your image path */
    background-image: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?q=80&w=2072&auto=format&fit=crop');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

/* To use your own background image, replace the URL above with your image path like:
   background-image: url('/frontend/images/your-background.jpg');
   or from storage: url('{{ asset("storage/your-background.jpg") }}');
*/

.bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.8) 0%,
        rgba(255, 255, 255, 0.9) 50%,
        rgba(238, 238, 238, 0.8) 100%
    );
    /* Alternative overlay options - uncomment one if you prefer different overlay styles */
    /* Solid light overlay: */
    /* background: rgba(255, 255, 255, 0.8); */
    
    /* Red tinted light overlay: */
    /* background: linear-gradient(135deg, rgba(238, 36, 47, 0.1) 0%, rgba(255, 255, 255, 0.9) 100%); */
    
    z-index: 1;
    pointer-events: none;
}

/* Animated particles */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(238, 36, 47, 0.6);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.particle:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
    animation-duration: 8s;
}

.particle:nth-child(2) {
    top: 80%;
    left: 80%;
    animation-delay: 2s;
    animation-duration: 10s;
    background: rgba(0, 0, 0, 0.2);
}

.particle:nth-child(3) {
    top: 40%;
    left: 70%;
    animation-delay: 4s;
    animation-duration: 12s;
    background: rgba(238, 36, 47, 0.4);
}

.particle:nth-child(4) {
    top: 60%;
    left: 30%;
    animation-delay: 6s;
    animation-duration: 9s;
    background: rgba(0, 0, 0, 0.15);
}

.particle:nth-child(5) {
    top: 10%;
    left: 60%;
    animation-delay: 1s;
    animation-duration: 11s;
}

.particle:nth-child(6) {
    top: 90%;
    left: 40%;
    animation-delay: 3s;
    animation-duration: 7s;
    background: rgba(0, 0, 0, 0.25);
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) translateX(0px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    50% { 
        transform: translateY(-30px) translateX(20px) rotate(180deg);
        opacity: 0.8;
    }
}

.coming-soon-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
    padding: 20px;
}

.coming-soon-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(238, 238, 238, 0.8);
    border-radius: 24px;
    padding: 4rem 3rem;
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    text-align: center;
    max-width: 700px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.coming-soon-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ee242f 0%, #ffffff 50%, #ee242f 100%);
}

.coming-soon-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        circle at 50% 0%,
        rgba(238, 36, 47, 0.02) 0%,
        transparent 70%
    );
    pointer-events: none;
}

/* Logo Section */
.logo-section {
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.logo-img {
    max-height: 90px;
    width: auto;
    filter: brightness(0.9) contrast(1.1);
}

/* Title Styles */
.coming-soon-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    line-height: 1.2;
}

.title-main {
    color: #000000;
    display: inline-block;
    margin-right: 0.5rem;
}

.title-accent {
    color: #ee242f;
    display: inline-block;
    position: relative;
}

.title-accent::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #ee242f;
    border-radius: 2px;
}

.coming-soon-subtitle {
    font-size: 1.3rem;
    color: #333333;
    margin-bottom: 3rem;
    line-height: 1.8;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

/* Countdown Styles */
.countdown-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 3rem 0;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.countdown-circle {
    width: 90px;
    height: 90px;
    border: 3px solid rgba(238, 36, 47, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.countdown-circle::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ee242f, transparent, #ee242f);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.countdown-item:hover .countdown-circle::before {
    opacity: 1;
}

.countdown-item:hover .countdown-circle {
    transform: translateY(-5px) scale(1.05);
    border-color: #ee242f;
}

.countdown-number {
    font-size: 2rem;
    font-weight: 700;
    color: #000000;
    display: block;
}

.countdown-label {
    font-size: 0.9rem;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Notify Section */
.notify-section {
    margin: 3rem 0;
    position: relative;
    z-index: 2;
}

.notify-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.5rem;
}

.notify-subtitle {
    font-size: 1rem;
    color: #666666;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.notify-form {
    max-width: 450px;
    margin: 0 auto;
}

.input-group {
    display: flex;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(238, 238, 238, 0.8);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.input-group:hover {
    border-color: rgba(238, 36, 47, 0.4);
    box-shadow: 0 5px 20px rgba(238, 36, 47, 0.1), 0 3px 10px rgba(0, 0, 0, 0.05);
}

.input-group:focus-within {
    border-color: #ee242f;
    box-shadow: 0 0 0 3px rgba(238, 36, 47, 0.15), 0 5px 20px rgba(0, 0, 0, 0.1);
}

.notify-input {
    flex: 1;
    padding: 16px 20px;
    border: none;
    background: transparent;
    color: #000000;
    font-size: 1rem;
    outline: none;
}

.notify-input::placeholder {
    color: #999999;
    opacity: 0.8;
}

.notify-btn {
    padding: 16px 28px;
    background: linear-gradient(135deg, #ee242f 0%, #d41f2a 100%);
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.notify-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.notify-btn:hover::before {
    left: 100%;
}

.notify-btn:hover {
    background: linear-gradient(135deg, #d41f2a 0%, #b71c1c 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(238, 36, 47, 0.4);
}

.notify-btn:active {
    transform: translateY(0);
}

/* Contact Section */
.contact-section {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #666666;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(238, 238, 238, 0.8);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.contact-item:hover {
    color: #000000;
    background: rgba(238, 36, 47, 0.1);
    border-color: rgba(238, 36, 47, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(238, 36, 47, 0.15), 0 3px 10px rgba(0, 0, 0, 0.1);
}

.contact-item i {
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
    color: #ee242f;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    color: #666666;
    border: 1px solid rgba(238, 238, 238, 0.8);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #ee242f, #ffffff);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.social-link:hover::before {
    opacity: 1;
}

.social-link:hover {
    color: #ffffff;
    transform: translateY(-5px) scale(1.1);
    border-color: #ee242f;
    box-shadow: 0 10px 30px rgba(238, 36, 47, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .coming-soon-card {
        padding: 2.5rem 1.5rem;
        margin: 1rem;
        border-radius: 20px;
    }
    
    .coming-soon-title {
        font-size: 2.5rem;
    }
    
    .coming-soon-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .countdown-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin: 2rem 0;
    }
    
    .countdown-circle {
        width: 70px;
        height: 70px;
    }
    
    .countdown-number {
        font-size: 1.5rem;
    }
    
    .countdown-label {
        font-size: 0.8rem;
    }
    
    .notify-title {
        font-size: 1.5rem;
    }
    
    .input-group {
        flex-direction: column;
    }
    
    .notify-btn {
        justify-content: center;
        border-radius: 0 0 16px 16px;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .social-links {
        gap: 0.8rem;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .coming-soon-title {
        font-size: 2rem;
    }
    
    .title-main,
    .title-accent {
        display: block;
        margin-right: 0;
    }
    
    .countdown-container {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.5rem;
    }
    
    .countdown-circle {
        width: 60px;
        height: 60px;
    }
    
    .countdown-number {
        font-size: 1.2rem;
    }
    
    .countdown-label {
        font-size: 0.7rem;
    }
}

/* Animation for page load */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.coming-soon-card {
    animation: fadeInUp 0.8s ease-out forwards;
}

.coming-soon-title {
    animation: fadeInUp 1s ease-out 0.2s both;
}

.coming-soon-subtitle {
    animation: fadeInUp 1s ease-out 0.4s both;
}

.countdown-container {
    animation: fadeInUp 1s ease-out 0.6s both;
}

.notify-section {
    animation: fadeInUp 1s ease-out 0.8s both;
}

.contact-section {
    animation: fadeInUp 1s ease-out 1s both;
}