/* Coming Soon Page Styles - Middle Eastern Restaurant Theme */

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

body.coming-soon-body {
    font-family: 'Playfair Display', 'Georgia', serif;
    background: linear-gradient(135deg, #8B4513 0%, #D2691E 25%, #CD853F 50%, #DEB887 75%, #F5DEB3 100%);
    background-size: 400% 400%;
    animation: gradientShift 12s ease infinite;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Floating Background Elements */
.bg-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 80px;
    height: 80px;
    background: #B8860B;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    border-radius: 50% 20% 50% 20%;
}

.shape-2 {
    width: 120px;
    height: 120px;
    background: #CD853F;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
    border-radius: 20% 50% 20% 50%;
}

.shape-3 {
    width: 60px;
    height: 60px;
    background: #DAA520;
    top: 30%;
    right: 30%;
    animation-delay: 4s;
    border-radius: 30% 70% 30% 70%;
}

.shape-4 {
    width: 100px;
    height: 100px;
    background: #BC8F8F;
    bottom: 20%;
    left: 20%;
    animation-delay: 1s;
    border-radius: 70% 30% 70% 30%;
}

.shape-5 {
    width: 70px;
    height: 70px;
    background: #DEB887;
    top: 10%;
    right: 50%;
    animation-delay: 3s;
    border-radius: 40% 60% 40% 60%;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Middle Eastern Decorative Elements */
.decorative-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.arabic-pattern {
    position: absolute;
    font-size: 2rem;
    color: rgba(139, 69, 19, 0.15);
    animation: arabicFloat 8s ease-in-out infinite;
}

.pattern-1 {
    top: 15%;
    left: 5%;
    animation-delay: 0s;
}

.pattern-2 {
    top: 25%;
    right: 8%;
    animation-delay: 2s;
}

.pattern-3 {
    bottom: 30%;
    left: 10%;
    animation-delay: 4s;
}

.pattern-4 {
    bottom: 15%;
    right: 5%;
    animation-delay: 6s;
}

@keyframes arabicFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg) scale(1);
        opacity: 0.15;
    }
    50% { 
        transform: translateY(-15px) rotate(180deg) scale(1.2);
        opacity: 0.25;
    }
}

/* Main Container */
.coming-soon-container {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.coming-soon-content {
    text-align: center;
    max-width: 900px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 80px 60px;
    box-shadow: 
        0 20px 60px rgba(139, 69, 19, 0.15),
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: slideUp 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.coming-soon-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8B4513, #D2691E, #CD853F, #DEB887);
    background-size: 200% 100%;
    animation: shimmer 4s ease-in-out infinite;
}

.coming-soon-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(210, 105, 30, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 69, 19, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

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

/* Logo */
.logo-container {
    margin-bottom: 30px;
    animation: bounce 2s ease-in-out infinite;
}

.logo {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Typography */
.main-title {
    font-size: 4.2rem;
    font-weight: 700;
    color: #2C1810;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #8B4513 0%, #D2691E 50%, #CD853F 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShine 6s ease-in-out infinite;
    letter-spacing: 2px;
    line-height: 1.1;
    text-align: center;
    position: relative;
}

.main-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #8B4513, #D2691E);
    border-radius: 2px;
}

@keyframes textShine {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.subtitle {
    font-size: 1.8rem;
    font-weight: 400;
    color: #5D4037;
    margin-bottom: 30px;
    font-style: italic;
    letter-spacing: 1px;
    opacity: 0.9;
    position: relative;
}

.subtitle::before {
    content: '✦';
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    color: #D2691E;
    font-size: 1.2rem;
}

.subtitle::after {
    content: '✦';
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    color: #D2691E;
    font-size: 1.2rem;
}

.description {
    font-size: 1.3rem;
    color: #654321;
    line-height: 1.8;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}


/* Email Signup */
.email-signup {
    margin: 50px 0;
    position: relative;
}

.email-signup::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #D2691E, transparent);
}

.input-group {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    background: white;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(139, 69, 19, 0.15);
    border: 2px solid rgba(210, 105, 30, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.input-group:hover {
    box-shadow: 0 12px 40px rgba(139, 69, 19, 0.25);
    border-color: rgba(210, 105, 30, 0.4);
}

.input-group:focus-within {
    box-shadow: 0 12px 40px rgba(139, 69, 19, 0.3);
    border-color: #D2691E;
    transform: translateY(-2px);
}

#email-input {
    flex: 1;
    padding: 20px 25px;
    border: none;
    outline: none;
    font-size: 1.1rem;
    background: transparent;
    color: #2C1810;
    font-family: 'Crimson Text', serif;
}

#email-input::placeholder {
    color: #8D6E63;
    font-style: italic;
}

.submit-btn {
    background: linear-gradient(135deg, #8B4513 0%, #D2691E 100%);
    color: white;
    border: none;
    padding: 20px 35px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0 50px 50px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Playfair Display', serif;
    min-width: 140px;
}

.submit-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;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #D2691E 0%, #8B4513 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.4);
}

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

.submit-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

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

.submit-btn:hover .btn-shine {
    left: 100%;
}

/* Form Messages */
.form-message {
    margin-top: 20px;
}

/* Loading States */
.submit-btn.loading {
    pointer-events: none;
    opacity: 0.8;
}

.submit-btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Success Animation */
.success-message {
    color: #2E7D32;
    font-weight: 600;
    padding: 20px;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.1), rgba(76, 175, 80, 0.1));
    border-radius: 12px;
    border: 1px solid rgba(46, 125, 50, 0.3);
    animation: slideInUp 0.5s ease-out;
    position: relative;
    overflow: hidden;
}

.success-message::before {
    content: '✓';
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    color: #2E7D32;
}

.success-message {
    padding-left: 45px;
}

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

.error-message {
    color: #E74C3C;
    font-weight: 600;
    padding: 15px;
    background: rgba(231, 76, 60, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(231, 76, 60, 0.3);
}

/* Social Links */
.social-links {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-decoration: none;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: 50%;
    z-index: -1;
}

.social-facebook {
    background: linear-gradient(135deg, #3B5998, #4C70BA);
}

.social-instagram {
    background: linear-gradient(135deg, #E4405F, #F77737, #FCAF45);
}

.social-twitter {
    background: linear-gradient(135deg, #1DA1F2, #0D8BD9);
}

.social-linkedin {
    background: linear-gradient(135deg, #0077B5, #005885);
}

.social-youtube {
    background: linear-gradient(135deg, #FF0000, #CC0000);
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Social Icons */
.icon-facebook::before { content: '📘'; }
.icon-instagram::before { content: '📷'; }
.icon-twitter::before { content: '🐦'; }
.icon-linkedin::before { content: '💼'; }
.icon-youtube::before { content: '📺'; }

/* Responsive Design */

/* Large Tablets and Small Desktops */
@media (max-width: 1024px) {
    .coming-soon-content {
        max-width: 800px;
        padding: 60px 40px;
    }
    
    .main-title {
        font-size: 3.5rem;
    }
    
    .subtitle {
        font-size: 1.6rem;
    }
    
    .description {
        font-size: 1.1rem;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .coming-soon-container {
        padding: 15px;
    }
    
    .coming-soon-content {
        padding: 50px 30px;
        margin: 10px;
        border-radius: 15px;
    }
    
    .main-title {
        font-size: 3rem;
        margin-bottom: 20px;
    }
    
    .subtitle {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }
    
    .description {
        font-size: 1rem;
        margin-bottom: 40px;
        line-height: 1.6;
    }
    
    .logo {
        max-width: 180px;
    }
    
    .email-signup {
        margin: 30px 0;
    }
    
    .input-group {
        flex-direction: column;
        border-radius: 25px;
        max-width: 400px;
    }
    
    #email-input {
        padding: 18px 20px;
        border-radius: 25px 25px 0 0;
        font-size: 1rem;
    }
    
    .submit-btn {
        border-radius: 0 0 25px 25px;
        padding: 18px 25px;
        font-size: 1rem;
    }
    
    .social-links {
        margin-top: 30px;
        gap: 15px;
    }
    
    .social-link {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
    
    /* Adjust floating shapes for tablets */
    .floating-shape {
        opacity: 0.05;
    }
    
    .arabic-pattern {
        font-size: 1.5rem;
    }
}

/* Mobile Devices */
@media (max-width: 480px) {
    .coming-soon-container {
        padding: 10px;
    }
    
    .coming-soon-content {
        padding: 40px 20px;
        margin: 5px;
        border-radius: 12px;
    }
    
    .main-title {
        font-size: 2.2rem;
        margin-bottom: 15px;
        line-height: 1.2;
    }
    
    .subtitle {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
    
    .description {
        font-size: 0.95rem;
        margin-bottom: 35px;
        line-height: 1.5;
    }
    
    .logo {
        max-width: 150px;
    }
    
    .email-signup {
        margin: 25px 0;
    }
    
    .input-group {
        max-width: 100%;
        border-radius: 20px;
    }
    
    #email-input {
        padding: 15px 18px;
        font-size: 0.95rem;
    }
    
    .submit-btn {
        padding: 15px 20px;
        font-size: 0.95rem;
    }
    
    .social-links {
        margin-top: 25px;
        gap: 12px;
    }
    
    .social-link {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }
    
    /* Hide some decorative elements on mobile */
    .floating-shape.shape-3,
    .floating-shape.shape-5 {
        display: none;
    }
    
    .arabic-pattern.pattern-2,
    .arabic-pattern.pattern-4 {
        display: none;
    }
}

/* Small Mobile Devices */
@media (max-width: 360px) {
    .coming-soon-content {
        padding: 30px 15px;
    }
    
    .main-title {
        font-size: 1.8rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .description {
        font-size: 0.9rem;
    }
    
    .logo {
        max-width: 120px;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .coming-soon-content {
        padding: 30px 25px;
    }
    
    .main-title {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .subtitle {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .description {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }
    
    .email-signup {
        margin: 20px 0;
    }
    
    .social-links {
        margin-top: 20px;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Print Styles */
@media print {
    .coming-soon-body {
        background: white !important;
    }
    
    .bg-elements,
    .decorative-elements {
        display: none !important;
    }
    
    .coming-soon-content {
        box-shadow: none !important;
        border: 1px solid #ccc !important;
    }
}

/* Additional Fun Elements */
.coming-soon-content::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    right: -50px;
    bottom: -50px;
    background: linear-gradient(45deg, #FF6B6B, #4ECDC4, #45B7D1, #96CEB4, #FFEAA7);
    background-size: 300% 300%;
    border-radius: 50px;
    z-index: -1;
    opacity: 0.1;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Loading Animation */
@keyframes shimmer {
    0% { background-position: -200px 0; }
    100% { background-position: calc(200px + 100%) 0; }
}

.shimmer {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    background-size: 200px 100%;
    animation: shimmer 2s infinite;
}
