:root {
    /* Primary Colors */
    --gold-light: #f39c12;
    --dark-blue: #2c3e50;
    --dark-blue-light: #34495e;
    --beige: #d4c5a0;
    --beige-dark: #c4b590;
    --white: #ffffff;
    --text-dark: #2c3e50;
    --text-light: #ecf0f1;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-dark: rgba(0, 0, 0, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--beige);
    color: var(--text-dark);
    min-height: 100vh;
    direction: rtl;
    text-align: center;
}

.home-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.home-content {
    max-width: 400px;
    width: 100%;
    animation: fadeInUp 1s ease-out;
}

/* Success Message */
.success-message {
    background: #2c3e50;
    color: var(--white);
    padding: 15px 20px;
    border-radius: 25px;
    margin-bottom: 30px;
    font-weight: 600;
    box-shadow: 0 4px 15px var(--shadow);
    animation: slideDown 0.5s ease-out;
}

/* Logo Section */
.logo-section {
    margin-bottom: 40px;
    animation: fadeIn 1.2s ease-out;
}

    .logo-section img {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        border: none;
        background: var(--dark-blue);
        padding: 20px;
        box-shadow: 0 8px 25px var(--shadow-dark);
        margin-bottom: 30px;
        transition: transform 0.3s ease;
    }

        .logo-section img:hover {
            transform: scale(1.05);
        }

.brand-title {
    font-size: 2rem;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.brand-subtitle {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 30px;
    font-weight: 400;
    opacity: 0.8;
}

/* Social Icons (Small) */
.social-icons-small {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.social-icon-small {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--white);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--shadow);
}

    .social-icon-small:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px var(--shadow-dark);
        color: var(--white);
        text-decoration: none;
    }

/* Link Buttons */
.link-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.link-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 25px;
    background: rgba(255, 255, 255, 0.3);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--shadow);
    border: 1px solid rgba(44, 62, 80, 0.2);
    text-align: right;
}

    .link-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px var(--shadow-dark);
        background: var(--beige-dark);
        color: var(--text-dark);
        text-decoration: none;
    }

    .link-btn i {
        font-size: 1.3rem;
        width: 25px;
        text-align: center;
    }

    .link-btn .btn-text {
        flex: 1;
        text-align: center;
    }

    .link-btn .btn-dots {
        font-size: 1.2rem;
        opacity: 0.6;
    }

/* Menu Section - Priority Button */
.menu-section {
    margin-bottom: 25px;
}

.menu-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 25px;
    background: var(--dark-blue);
    color: var(--white);
    text-decoration: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--shadow-dark);
    text-align: right;
}

    .menu-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px var(--shadow-dark);
        background: var(--dark-blue-light);
        color: var(--white);
        text-decoration: none;
    }

    .menu-btn i {
        font-size: 1.3rem;
        width: 25px;
        text-align: center;
    }

    .menu-btn .btn-text {
        flex: 1;
        text-align: center;
    }

    .menu-btn .btn-dots {
        font-size: 1.2rem;
        opacity: 0.8;
    }

/* Social Media Section */
.social-links {
    margin-bottom: 25px;
}

    .social-links h3 {
        display: none;
    }

/* Footer */
.footer-text {
    margin-top: 40px;
    padding-top: 20px;
}

    .footer-text p {
        color: var(--text-dark);
        font-size: 0.9rem;
        opacity: 0.7;
        background: rgba(255, 255, 255, 0.4);
        padding: 12px 20px;
        border-radius: 20px;
        box-shadow: 0 2px 10px var(--shadow);
    }

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .home-content {
        padding: 0 15px;
        max-width: 90%;
    }

    .brand-title {
        font-size: 1.8rem;
    }

    .brand-subtitle {
        font-size: 0.9rem;
    }

    .link-btn, .menu-btn {
        padding: 16px 20px;
        font-size: 1rem;
    }

    .logo-section img {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .brand-title {
        font-size: 1.6rem;
    }

    .link-btn, .menu-btn {
        padding: 14px 18px;
        font-size: 0.95rem;
    }

    .social-icon-small {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}
