

/* Custom CSS Variables */
:root {
    --primary-color: #e91e63;
    --secondary-color: #f8bbd9;
    --accent-color: #ad1457;
    --text-dark: #2d3748;
    --text-light: #718096;
    --gradient-primary: linear-gradient(135deg, #e91e63, #f06292);
    --gradient-secondary: linear-gradient(135deg, #f8bbd9, #f48fb1);
    --shadow-soft: 0 10px 25px rgba(233, 30, 99, 0.1);
    --shadow-hover: 0 20px 40px rgba(233, 30, 99, 0.15);
}

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

body {
    font-family: 'Inter', sans-serif;
    position: relative;
}

/* Background Pattern */
.bg-pattern {
    background-image: radial-gradient(circle at 1px 1px, rgba(233, 30, 99, 0.15) 1px, transparent 0);
    background-size: 20px 20px;
}

/* Floating Background Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.float-1, .float-2, .float-3, .float-4 {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient-secondary);
    opacity: 0.1;
    animation: float 2s ease-in-out infinite;
}

.float-1 {
    width: 120px;
    height: 120px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.float-2 {
    width: 80px;
    height: 80px;
    top: 20%;
    right: 15%;
    animation-delay: 0.3s;
}

.float-3 {
    width: 100px;
    height: 100px;
    bottom: 30%;
    left: 15%;
    animation-delay: 0.6s;
}

.float-4 {
    width: 60px;
    height: 60px;
    bottom: 20%;
    right: 20%;
    animation-delay: 0.2s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    33% {
        transform: translateY(-20px) rotate(5deg);
    }
    66% {
        transform: translateY(-10px) rotate(-5deg);
    }
}

/* Logo Styles */
.logo-container {
    position: relative;
}

.logo-image {
    max-width: clamp(200px, 50vw, 400px);
    max-height: clamp(80px, 20vw, 150px);
    width: auto;
    height: auto;
    object-fit: contain;
    animation: logoGlow 1.5s ease-in-out infinite alternate;
    position: relative;
    filter: drop-shadow(0 4px 8px rgba(233, 30, 99, 0.2));
    transition: all 0.3s ease;
}

.logo-underline {
    height: 4px;
    width: 60px;
    background: linear-gradient(135deg, #f4b73c, #f4b73c);
    margin: 0 auto;
    border-radius: 2px;
    animation: underlineExpand 1s ease-in-out infinite alternate;
}

@keyframes logoGlow {
    0% {
        filter: brightness(1);
        transform: scale(1);
    }
    100% {
        filter: brightness(1.2);
        transform: scale(1.02);
    }
}

@keyframes underlineExpand {
    0% {
        width: 60px;
        opacity: 0.8;
    }
    100% {
        width: 120px;
        opacity: 1;
    }
}


/* Coming Soon Text */
.coming-soon-text {
    font-family: "Cairo", sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    color: #eee5de;
    margin-bottom: 1rem;
    animation: slideInScale 0.5s ease-out 0.2s both;
}

/* Animated Dots */
.dots-container {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #eee5de;
    animation: dotPulse 0.8s ease-in-out infinite;
}

.dot:nth-child(2) {
    animation-delay: 0.1s;
}

.dot:nth-child(3) {
    animation-delay: 0.15s;
}

@keyframes dotPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.5);
        opacity: 1;
    }
}

/* Description */
.description {
    font-family: "Cairo", sans-serif;
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    color: #dad2cc;
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
    animation: fadeInUp 0.4s ease-out 0.3s both;
}

/* Newsletter Styles */
.newsletter-container {
    direction: rtl;
    position: relative;
    display: flex;
    background: white;
    border-radius: 50px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: all 0.3s ease;
    animation: fadeInUp 0.4s ease-out 0.4s both;
}

.newsletter-container:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.newsletter-input {
    font-family: "Cairo", sans-serif;
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    outline: none;
    font-size: 1rem;
    color: var(--text-dark);
    background: transparent;
}

.newsletter-input::placeholder {
    color: var(--text-light);
}

.newsletter-btn {
    padding: 1rem 1.5rem;
    background: #eee5de;
    border: none;
    color: #682238;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-btn:hover {
    background: var(--gradient-secondary);
    transform: scale(1.05);
}

/* Social Media Section */
.social-section {
    padding: 2rem 1rem;
    animation: fadeInUp 0.4s ease-out 0.5s both;
}

.social-container {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.social-text {
    font-family: "Cairo", sans-serif;
    color: white;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #672237;
    text-decoration: none;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-icon:hover {
    background: #672237;
    color: white;
    transform: translateY(-3px) scale(1.1);
    box-shadow: var(--shadow-hover);
}

/* Footer Styles */
.footer {
    padding: 1.5rem 1rem;
    border-top: 1px solid rgba(233, 30, 99, 0.1);
    animation: fadeInUp 0.4s ease-out 0.6s both;
}

.footer-content {
    font-family: "Cairo", sans-serif;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    color: white;
    font-size: 0.9rem;
}

.footer-links {
    margin-top: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #672237;
}
.notification span {
    font-family: "Cairo", sans-serif;
}
.notification {
    direction: rtl;
}
/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInScale {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .coming-soon-text {
        font-size: 2rem;
    }
    
    .social-icons {
        gap: 0.75rem;
    }
    
    .social-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .newsletter-container {
        flex-direction: column;
        border-radius: 20px;
    }
    
    .newsletter-btn {
        border-radius: 0 0 20px 20px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
    }
    
}

@media (max-width: 480px) {
    .coming-soon-text {
        font-size: 1.5rem;
    }
    
    .description {
        font-size: 0.9rem;
        padding: 0 1rem;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}
