/* Arabic-specific styles */
body {
    font-family: 'Cairo', 'Poppins', sans-serif;
}

h1, h2, h3, h4 {
    font-family: 'Cairo', 'Playfair Display', serif;
}

.names {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: 0;
}

/* Small Header RTL Adjustments */
.small-header .names {
    letter-spacing: 0;
}

.small-header .wedding-date {
    letter-spacing: 0;
}

/* RTL specific adjustments */
.navbar-nav {
    margin-right: 0;
    margin-left: auto;
}

.navbar-nav .nav-link:after {
    left: auto;
    right: 50%;
    transform: translateX(50%);
}

.form-row {
    flex-direction: row-reverse;
}

.message {
    border-left: none;
    border-right: 4px solid var(--accent);
    border-radius: 5px 0 0 5px;
}

/* Language switch button */
.lang-switch {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.lang-switch:hover {
    background: var(--accent);
    color: white;
}

/* RTL adjustments for mobile menu */
@media (max-width: 991.98px) {
    .navbar-collapse {
        text-align: right;
    }
    
    .navbar-nav {
        margin-right: 0;
        margin-left: 0;
    }
    
    .navbar-nav .nav-link {
        text-align: right;
    }

    .lang-switch {
        margin: 0.5rem 0;
        text-align: center;
    }
}

/* RTL adjustments for editable name */
.invitation-popup .invitation-script.large {
    direction: rtl;
}

.invitation-popup .invitation-script.large:empty:before {
    direction: rtl;
}

/* Arabic Popup Styles */
.invitation-popup {
    font-family: 'Cairo', sans-serif;
}

.invitation-popup .invitation-script.large {
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
}

.invitation-popup .invitation-script {
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
}

.invitation-popup .invitation-details {
    font-family: 'Cairo', sans-serif;
    font-weight: 400;
}

.invitation-popup .close-btn {
    font-family: 'Cairo', sans-serif;
    font-weight: 500;
}

/* Verse Message Arabic */
.verse-message {
    font-family: 'Cairo', sans-serif;
    font-size: 1rem;
    color: #8d5c6b;
    margin-bottom: 1rem;
    line-height: 1.6;
    font-style: normal;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    direction: rtl;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    padding: 8rem 0 4rem;
}

@media (max-width: 768px) {
    .verse-message {
        font-size: 0.9rem;
        padding: 0.6rem 1rem;
        margin-bottom: 0.8rem;
    }
    
    .header-content {
        padding: 6rem 0 3rem;
    }
} 