/* Typography & Variables */
:root {
    --brand-navy: #0B1C3F;
    --brand-gold: #C29B57;
    --bg-light: #F8F9FA;
    --text-primary: #1F2937;
    --text-secondary: #6B7280;
}

/* فونت دانا - وزن معمولی */
@font-face {
    font-family: 'Dana';
    src: url('fonts/dana/dana regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* فونت دانا - وزن ضخیم */
@font-face {
    font-family: 'Dana';
    src: url('fonts/dana/dana bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

/* فونت دانا - وزن بسیار ضخیم */
@font-face {
    font-family: 'Dana';
    src: url('fonts/dana/dana black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

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

body {
    font-family: 'Dana', system-ui, -apple-system, sans-serif;
    background-color: var(--bg-light);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Editorial Split Layout */
.editorial-layout {
    display: flex;
    min-height: 100vh;
    width: 100%;
}

/* Left Content Area (Right visually in RTL) */
.content-side {
    flex: 1;
    padding: clamp(2rem, 6vw, 6rem);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: var(--bg-light);
}

.brand-logo {
    max-height: 60px;
    width: auto;
}

.text-content {
    margin: 4rem 0;
}

.accent-line {
    width: 48px;
    height: 3px;
    background-color: var(--brand-gold);
    margin-bottom: 2rem;
}

h1 {
    color: var(--brand-navy);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

p {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    color: var(--text-secondary);
    max-width: 500px;
    line-height: 1.8;
}

/* Countdown */
.countdown-wrapper {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 3vw, 2.5rem);
    margin-bottom: 4rem;
}

.time-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 3.5rem;
}

.number {
    font-size: clamp(1.75rem, 3.5vw, 3rem);
    font-weight: bold;
    color: var(--brand-navy);
    font-variant-numeric: tabular-nums;
}

.label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

.separator {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: var(--brand-gold);
    font-weight: bold;
    margin-top: -1.5rem;
    opacity: 0.5;
}

/* Footer / Socials */
footer {
    display: flex;
    gap: 1.5rem;
}

.icon-link {
    color: var(--brand-navy);
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-flex;
}

.icon-link:hover {
    color: var(--brand-gold);
    transform: translateY(-2px);
}

.icon-link svg {
    width: 24px;
    height: 24px;
}

/* Right Visual Area (Left visually in RTL) */
.visual-side {
    flex: 1;
    background-color: var(--brand-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Decorative background elements */
.visual-side::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 60%;
    aspect-ratio: 1;
    background: radial-gradient(circle, rgba(194, 155, 87, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.geometric-frame {
    width: 60%;
    max-width: 500px;
    aspect-ratio: 1;
    border: 1px solid rgba(194, 155, 87, 0.2);
    border-radius: 50% 50% 0 50%; /* Distinctive shape */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 3rem;
}

.geometric-frame::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(194, 155, 87, 0.1);
    border-radius: 50% 0 50% 50%;
    transform: rotate(45deg) scale(1.1);
}

.monogram {
    width: 100%;
    height: auto;
    object-fit: contain;
    z-index: 2;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .editorial-layout {
        flex-direction: column;
    }
    
    .visual-side {
        min-height: 40vh;
        order: -1; /* Move image to top on mobile */
    }
    
    .content-side {
        align-items: center;
        text-align: center;
        padding: 3rem 1.5rem;
    }
    
    .accent-line {
        margin: 0 auto 1.5rem;
    }
    
    p {
        margin: 0 auto;
    }
    
    footer {
        justify-content: center;
    }
}
