:root {
    --bg-color: #FDFBF4;
    --primary-red: #AD1F24;
    --secondary-gold: #EAB321;
    --text-charcoal: #333333;
}

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

body {
    background-color: var(--bg-color);
    font-family: 'Montserrat', sans-serif;
    color: var(--text-charcoal);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 12px solid var(--primary-red);
}

.top-border, .bottom-border {
    width: 100%;
    height: 50px;
    background-size: contain;
    background-repeat: repeat-x;
    background-position: center;
    opacity: 0.8;
    mix-blend-mode: multiply;
}

.page-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3rem 2rem;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

.main-header {
    text-align: center;
    margin-bottom: 2rem;
}

.brand-logo {
    max-width: 250px;
    height: auto;
    filter: drop-shadow(0 10px 15px rgba(173, 31, 36, 0.15));
    animation: fadeInDown 1s ease-out;
    mix-blend-mode: multiply;
}

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

.hero-content {
    text-align: center;
    width: 100%;
    margin-bottom: 4rem;
}

.tagline-wrapper {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--secondary-gold);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.tagline-ar {
    font-family: 'Cairo', sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.tagline-en {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-charcoal);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.decorative-accent img {
    max-width: 160px;
    height: auto;
    animation: pulse 4s infinite ease-in-out;
    mix-blend-mode: multiply;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.info-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
}

.info-cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    width: 100%;
    flex-wrap: wrap;
}

.info-card {
    background: #ffffff;
    border: 2px solid var(--secondary-gold);
    border-radius: 16px;
    padding: 1.5rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    min-width: 250px;
    flex: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(173, 31, 36, 0.08);
}

.info-card i {
    font-size: 1.8rem;
    color: var(--primary-red);
    background: rgba(234, 179, 33, 0.15);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.info-text {
    text-align: left;
}

.info-text span {
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--primary-red);
    display: block;
    margin-bottom: 0.3rem;
    font-family: 'Cairo', sans-serif; 
}

.info-text p {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-charcoal);
}

.qrcode-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    background: #ffffff;
    padding: 2.5rem 4rem;
    border-radius: 20px;
    border: 1px dashed var(--secondary-gold);
}

.qr-code {
    max-width: 200px;
    height: auto;
    mix-blend-mode: multiply;
}

.instagram-link {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-red);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s;
    background: var(--bg-color);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    border: 2px solid var(--primary-red);
}

.instagram-link:hover {
    background: var(--primary-red);
    color: #ffffff;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    body { border-width: 8px; }
    .tagline-ar { font-size: 1.8rem; }
    .tagline-en { font-size: 1rem; }
    .info-cards { flex-direction: column; align-items: stretch; }
    .info-card { width: 100%; }
    .qrcode-section { padding: 2rem; width: 100%; }
}
