:root {
    --primary-green: #198754;
    --primary-green-dark: #146c43;
    --primary-green-light: #d1e7dd;
    --accent-gold: #c9a356;
    --text-dark: #1a3a2e;
    --bg-soft: #f8f9fa;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Tajawal', 'Segoe UI', Tahoma, sans-serif;
    background: linear-gradient(135deg, #f0f7f4 0%, #e8f5ed 50%, #d1e7dd 100%);
    min-height: 100vh;
    margin: 0;
    padding: 0;
    color: var(--text-dark);
    overflow-x: hidden;
}

.page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 2rem 0 1rem;
}

.hero-section {
    padding: 2rem 1rem 1.5rem;
}

.hero-icon {
    font-size: 3.5rem;
    color: var(--primary-green);
    text-shadow: 0 2px 8px rgba(25, 135, 84, 0.15);
}

.family-title {
    font-family: 'Amiri', 'Tajawal', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--primary-green-dark);
    margin: 0.5rem 0;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.title-divider {
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    margin: 1.5rem auto 0;
    border-radius: 2px;
}

.gallery-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 1rem;
}

.gallery-card {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(25, 135, 84, 0.15), 0 8px 20px rgba(0, 0, 0, 0.08);
    border: 6px solid white;
    background: white;
    position: relative;
}

.coming-soon-card {
    aspect-ratio: 1.414 / 1;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.coming-soon-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(201, 163, 86, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.coming-soon-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(45deg, transparent 0, transparent 35px, rgba(255, 255, 255, 0.025) 35px, rgba(255, 255, 255, 0.025) 36px);
    pointer-events: none;
}

.coming-soon-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 2rem;
}

.coming-soon-icon {
    font-size: clamp(3.5rem, 8vw, 5.5rem);
    color: var(--accent-gold);
    margin-bottom: 1rem;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    animation: float 3s ease-in-out infinite;
}

.coming-soon-title {
    font-family: 'Amiri', 'Tajawal', serif;
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 700;
    margin: 0.5rem 0;
    color: white;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
    letter-spacing: -1px;
}

.coming-soon-subtitle {
    font-size: clamp(1rem, 2.2vw, 1.35rem);
    margin: 0.5rem 0 0;
    color: rgba(255, 255, 255, 0.92);
    font-weight: 500;
}

.coming-soon-pulse {
    width: 80px;
    height: 4px;
    background: var(--accent-gold);
    margin: 1.5rem auto 0;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.coming-soon-pulse::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    animation: shimmer 2s infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.cta-section {
    padding: 2rem 1rem 1rem;
}

.btn-tree {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    color: white;
    font-size: 1.15rem;
    font-weight: 700;
    padding: 0.9rem 2.5rem;
    border-radius: 50px;
    border: none;
    box-shadow: 0 8px 20px rgba(25, 135, 84, 0.3), 0 2px 6px rgba(25, 135, 84, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-tree:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(25, 135, 84, 0.4), 0 4px 10px rgba(25, 135, 84, 0.25);
    background: linear-gradient(135deg, var(--primary-green-dark) 0%, var(--primary-green) 100%);
}

.btn-tree:active {
    transform: translateY(0);
}

.btn-tree i {
    font-size: 1.3rem;
}

.footer-section {
    padding: 1.5rem 1rem 0.5rem;
}

.footer-text {
    font-size: 0.9rem;
    color: var(--text-dark);
    opacity: 0.6;
}

@media (max-width: 768px) {
    .page-wrapper {
        padding-top: 1rem;
    }

    .hero-icon {
        font-size: 2.5rem;
    }

    .family-title {
        font-size: 1.85rem;
    }

    .gallery-card {
        border-width: 4px;
        border-radius: 12px;
    }

    .btn-tree {
        font-size: 1rem;
        padding: 0.75rem 2rem;
    }
}

@media (min-width: 1400px) {
    .gallery-card {
        max-width: 900px;
    }
}
