/* ========================================
   ISLAMIC WEBSITE - CONSOLIDATED STYLES
   ======================================== */

:root {
    --theme-green: #486b38;
    --theme-green-deep: #2d4a2f;
    --theme-green-soft: #e7efdf;
    --theme-green-rgb: 72, 107, 56;
    --theme-green-soft-rgb: 231, 239, 223;
    --theme-rose: #b85c79;
    --theme-rose-deep: #8e4059;
    --theme-rose-rgb: 184, 92, 121;
    --theme-gold: #b88c2d;
    --theme-gold-deep: #8f6a1d;
    --theme-gold-rgb: 184, 140, 45;
    --theme-gold-soft: #fbf1dd;
    --theme-gold-warm: #edd8a4;
    --theme-gold-soft-rgb: 251, 241, 221;
    --card-gold-border-width: 4px;
    --card-gold-ring-width: 8px;
    --card-gold-ring-width-hover: 12px;
    --card-gold-accent-width: 8px;
    --theme-cream: #f5f0e4;
    --theme-ink-strong: #2f3b37;
    --theme-ink: #3c4a45;
    --theme-ink-muted: #66756c;
    --theme-olive-muted: #526356;
}

/* ========================================
   RESET & BASE STYLES
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Baskerville', serif;
    line-height: 1.8;
    color: var(--theme-ink-strong);
    background: linear-gradient(135deg, var(--theme-cream) 0%, var(--theme-gold-soft) 45%, var(--theme-green-soft) 100%);
    position: relative;
    overflow-x: hidden;
}

/* Background Pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(var(--theme-green-rgb), 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(var(--theme-rose-rgb), 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(255, 255, 255, 0.4) 0%, transparent 30%);
    pointer-events: none;
    z-index: 0;
}

.development-banner {
    background: linear-gradient(135deg, var(--theme-gold-soft) 0%, var(--theme-gold-warm) 100%);
    border-bottom: 3px solid var(--theme-gold);
    padding: 1rem 2rem;
    text-align: center;
    position: relative;
    z-index: 200;
}

.development-banner p {
    margin: 0;
    color: var(--theme-gold-deep);
    font-size: 1rem;
    font-weight: 600;
}

.text-center {
    text-align: center;
}

.section-title-accent {
    color: var(--theme-rose);
    margin-bottom: 1rem;
}

.inline-link-emphasis {
    color: var(--theme-green);
    text-decoration: underline;
}

.footer-note {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--theme-rose);
    font-style: italic;
}

.footer-note-muted {
    margin-top: 0.5rem;
    font-size: 0.85rem;
}

.closing-dua {
    text-align: center;
    margin-top: 2rem;
    color: var(--theme-rose);
    font-style: italic;
}

.footer-note-small {
    margin-top: 10px;
    font-size: 0.9em;
}

.accent-link-strong {
    color: var(--theme-rose);
    font-weight: 700;
}

.accent-link-medium {
    color: var(--theme-rose);
    font-weight: 600;
}

.indented-list {
    margin-left: 2rem;
}

.mt-md {
    margin-top: 1rem;
}

.mt-lg {
    margin-top: 1.5rem;
}

.lead-text-muted {
    font-size: 1.15rem;
    color: var(--theme-ink-muted);
    margin-top: 1rem;
    font-style: italic;
}

.awliya-dua {
    margin-top: 2rem;
    color: var(--theme-green-deep);
}

.contact-method-accent {
    border-left-color: var(--theme-rose);
    background: rgba(var(--theme-rose-rgb), 0.03);
}

.professional-note {
    margin-top: 1rem;
}

.intro-text-success {
    border-left-color: var(--theme-green);
    background: rgba(var(--theme-green-rgb), 0.05);
}

.intro-title-success {
    color: var(--theme-green);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.intro-text-centered {
    text-align: center;
    border-left: none;
    border-top: 4px solid var(--theme-rose);
}

.contact-closing-text {
    font-size: 1.1rem;
    color: var(--theme-green);
    font-style: italic;
}

.contact-subtext {
    margin-top: 0.5rem;
    color: var(--theme-ink-muted);
}


/* ========================================
   NOOR (LIGHT) EFFECTS
   ======================================== */
.noor-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.light-ray {
    position: absolute;
    width: 2px;
    height: 100px;
    background: linear-gradient(to bottom, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(255, 255, 255, 0.6) 50%, 
        rgba(255, 255, 255, 0) 100%);
    animation: fallLight 8s linear infinite;
    opacity: 0;
}

@keyframes fallLight {
    0% {
        transform: translateY(-100px);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(100vh);
        opacity: 0;
    }
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: float 15s infinite ease-in-out;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    50% {
        transform: translateY(-100vh) translateX(50px);
        opacity: 0.8;
    }
    90% {
        opacity: 0;
    }
}

@keyframes glow {
    0%, 100% {
        opacity: 0.5;
        transform: translateX(-50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) scale(1.2);
    }
}


/* ========================================
   HEADER & NAVIGATION
   ======================================== */
header {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(var(--theme-green-soft-rgb), 0.95) 100%);
    border-bottom: 2px solid rgba(var(--theme-green-rgb), 0.1);
    padding: 1.5rem 0;
    position: relative;
    z-index: 100;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(var(--theme-green-rgb), 0.08);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo-section,
.logo-sect {
    display: flex;
    flex-direction: column;
}

.site-title {
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--theme-green) 0%, var(--theme-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    margin-bottom: 0.3rem;
    text-decoration: none;
}

.site-subtitle {
    font-size: 0.9rem;
    color: var(--theme-rose);
    font-style: italic;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

nav a {
    text-decoration: none;
    color: var(--theme-green);
    font-size: clamp(1rem, 0.96rem + 0.18vw, 1.08rem);
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
    padding: 0.3rem 0;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--theme-green), var(--theme-gold), var(--theme-rose));
    transition: width 0.3s;
}

nav a:hover::after {
    width: 100%;
}

nav a:hover {
    color: var(--theme-green-deep);
}

/* Language Switcher */
.lang-switch {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.lang-btn {
    padding: 0.5rem 1rem;
    background: transparent;
    border: 2px solid var(--theme-green);
    color: var(--theme-green);
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    font-family: 'Georgia', 'Baskerville', serif;
}

.lang-btn.active {
    background: linear-gradient(135deg, var(--theme-green) 0%, var(--theme-green-deep) 100%);
    color: white;
}

.lang-btn:hover {
    background: var(--theme-green);
    color: white;
}

/* Hide content based on language */
[lang="ar"] .en-content {
    display: none !important;
}

[lang="en"] .ar-content {
    display: none !important;
}

/* RTL Support for Arabic/Urdu */
[lang="ar"] {
    direction: rtl;
}

[lang="ar"] .container,
[lang="ar"] .welcome,
[lang="ar"] .content-section {
    text-align: right;
}


/* ========================================
   LAYOUT CONTAINERS
   ======================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
    position: relative;
    z-index: 10;
}


/* ========================================
   PAGE HEADERS
   ======================================== */
.hero,
.page-header {
    text-align: center;
    padding: 2rem 0 3rem;
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.82) 0%, rgba(var(--theme-gold-soft-rgb), 0.72) 45%, rgba(var(--theme-green-soft-rgb), 0.62) 100%);
    border-radius: 20px;
    margin-bottom: 3rem;
    box-shadow: 0 10px 40px rgba(var(--theme-green-rgb), 0.1);
    backdrop-filter: blur(10px);
}
.page-header {
    text-align: center;
}
.hero {
    padding: 3rem 0 4rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, transparent 70%);
    border-radius: 50%;
    animation: glow 3s ease-in-out infinite;
}

.hero h1,
.page-header h1 {
    font-size: 2.3rem;
    background: linear-gradient(135deg, var(--theme-green) 0%, var(--theme-gold) 52%, var(--theme-rose) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.page-header p {
    font-size: 1.1rem;
    color: var(--theme-ink-muted);
    max-width: 700px;
    margin: 0 auto;
}

.arabic {
    font-size: 1.5rem;
    color: var(--theme-green);
    margin: 1.5rem 0;
    font-family: 'Traditional Arabic', 'Scheherazade', serif;
    text-shadow: 0 2px 10px rgba(var(--theme-green-rgb), 0.2);
}


/* ========================================
   CONTENT SECTIONS & BOXES
   ======================================== */
.welcome,
.intro-text,
.intro-box,
.intro-section,
.content-section,
.content-box,
.section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
    padding: 2.5rem;
    border-left: 5px solid var(--theme-rose);
    border-radius: 10px;
    margin: 2rem 0;
    box-shadow: 0 5px 25px rgba(var(--theme-green-rgb), 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.content-box {
    padding: 3rem;
    margin-bottom: 3rem;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(var(--theme-green-rgb), 0.12);
}

.section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    border-radius: 15px;
    margin: 2.5rem 0;
    box-shadow: 0 8px 25px rgba(var(--theme-green-rgb), 0.12);
    border-left: none;
}

.welcome::before,
.content-section::before,
.section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(var(--theme-rose-rgb), 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.section::before {
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
}

/* Section Headings */
.welcome h2,
.content-section h2,
.section h2,
h2 {
    font-size: 1.8rem;
    color: var(--theme-green);
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

h2 {
    font-size: 1.9rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--theme-green), var(--theme-gold), var(--theme-rose));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.content-section h3,
.section h3,
h3 {
    font-size: 1.3rem;
    color: var(--theme-rose);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

h3 {
    font-size: 1.25rem;
    color: var(--theme-green);
    font-weight: 600;
}

/* Paragraphs */
.welcome p,
.content-section p,
.section p,
p {
    margin-bottom: 1.2rem;
    text-align: justify;
    position: relative;
    z-index: 2;
    color: var(--theme-ink-strong);
}

p {
    color: var(--theme-ink);
}

/* Lists */
.content-section ul,
.content-section li,
.section ul,
.section ol {
    position: relative;
    z-index: 2;
}

.content-section ul,
.section ul,
.section ol {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0 1.5rem;
}

.section ul,
.section ol {
    margin-left: 1.5rem;
}

ul {
    margin-left: 1.2rem;
}

.content-section li,
.section li,
li {
    padding: 0.5rem 0;
    position: relative;
    color: var(--theme-olive-muted);
    margin-bottom: 0.8rem;
}

.content-section li {
    padding-left: 2rem;
}

.content-section li::before {
    content: '◆';
    position: absolute;
    left: 0.5rem;
    color: var(--theme-rose);
}


/* ========================================
   CARDS & GRIDS
   ======================================== */
/* Principles Grid */
.principles {
    margin: 3rem 0;
}

.principles h2 {
    font-size: 1.8rem;
    background: linear-gradient(135deg, var(--theme-green) 0%, var(--theme-gold) 50%, var(--theme-rose) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2.5rem;
    text-align: center;
    font-weight: 600;
}

.principles-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.principle-card {
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    margin: 0.35rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(var(--theme-green-soft-rgb), 0.8) 100%);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    border: var(--card-gold-border-width) solid rgba(var(--theme-gold-rgb), 0.8);
    border-top-width: var(--card-gold-accent-width);
    box-shadow: 0 0 0 var(--card-gold-ring-width) rgba(var(--theme-gold-rgb), 0.16), 0 8px 25px rgba(var(--theme-green-rgb), 0.12);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.principle-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(var(--theme-rose-rgb), 0.05) 0%, transparent 70%);
    transition: all 0.4s;
}

.principle-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 0 var(--card-gold-ring-width-hover) rgba(var(--theme-gold-rgb), 0.22), 0 15px 40px rgba(var(--theme-green-rgb), 0.2);
}

.principle-card:hover::before {
    top: -20%;
    right: -20%;
}

.principle-card:nth-child(even) {
    border-top-color: var(--theme-rose);
}

.principle-card h3 {
    color: var(--theme-green);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.principle-card:nth-child(even) h3 {
    color: var(--theme-rose);
}

.principle-card p {
    font-size: 0.95rem;
    color: var(--theme-olive-muted);
    position: relative;
    z-index: 2;
}

/* Section Links */
.sections {
    margin: 4rem 0;
}

.sections h2 {
    font-size: 1.8rem;
    background: linear-gradient(135deg, var(--theme-green) 0%, var(--theme-gold) 50%, var(--theme-rose) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2.5rem;
    text-align: center;
    font-weight: 600;
}

.section-links {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.section-link {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    margin: 0.35rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-decoration: none;
    color: inherit;
    transition: all 0.4s ease;
    border: var(--card-gold-border-width) solid rgba(var(--theme-gold-rgb), 0.8);
    box-shadow: 0 0 0 var(--card-gold-ring-width) rgba(var(--theme-gold-rgb), 0.16), 0 5px 20px rgba(var(--theme-green-rgb), 0.1);
    position: relative;
    overflow: hidden;
}

.section-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(var(--theme-green-rgb), 0.05) 0%, rgba(var(--theme-rose-rgb), 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s;
}

.section-link:hover::before {
    opacity: 1;
}

.section-link:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 0 0 var(--card-gold-ring-width-hover) rgba(var(--theme-gold-rgb), 0.22), 0 15px 40px rgba(var(--theme-green-rgb), 0.2);
    border-color: rgba(var(--theme-gold-rgb), 0.9);
}

.section-link h3 {
    color: var(--theme-green);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.section-link:nth-child(even) h3 {
    color: var(--theme-rose);
}

.section-link p {
    font-size: 0.95rem;
    color: var(--theme-ink-muted);
    position: relative;
    z-index: 2;
}


/* ========================================
   CATEGORY SECTIONS (Q&A Page)
   ======================================== */
.category-section {
    margin: 3rem 0;
}

.category-title,
.section-title {
    font-size: 1.8rem;
    color: var(--theme-green);
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--theme-rose);
    font-weight: 600;
}

.qa-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    padding: 2rem;
    border-radius: 12px;
    margin: 0.35rem 0 2rem;
    border: var(--card-gold-border-width) solid rgba(var(--theme-gold-rgb), 0.8);
    box-shadow: 0 0 0 var(--card-gold-ring-width) rgba(var(--theme-gold-rgb), 0.16), 0 5px 20px rgba(var(--theme-green-rgb), 0.1);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.qa-item::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(var(--theme-rose-rgb), 0.05) 0%, transparent 70%);
}

.qa-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 0 var(--card-gold-ring-width-hover) rgba(var(--theme-gold-rgb), 0.22), 0 8px 30px rgba(var(--theme-green-rgb), 0.15);
}

.question {
    font-size: 1.3rem;
    color: var(--theme-rose);
    margin-bottom: 1rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.question::before {
    content: 'Q: ';
    color: var(--theme-green);
    font-weight: 700;
}

.answer {
    color: var(--theme-ink-strong);
    line-height: 1.9;
    position: relative;
    z-index: 2;
}

.answer p {
    margin-bottom: 1rem;
}

.answer strong {
    color: var(--theme-green);
}

.answer em {
    color: var(--theme-ink-muted);
}


/* ========================================
   SPECIAL BOXES & ALERTS
   ======================================== */
.highlight-box,
.note-box {
    background: rgba(var(--theme-green-rgb), 0.05);
    padding: 1.5rem;
    border-left: 4px solid var(--theme-green);
    border-radius: 5px;
    margin: 1.5rem 0;
    position: relative;
    z-index: 2;
}

.note-box {
    margin: 2rem 0;
}

.highlight-box p,
.note-box p {
    margin-bottom: 0.5rem;
}

.highlight-box strong,
.note-box strong {
    color: var(--theme-green);
}

.example-box,
.warning-box {
    background: rgba(var(--theme-rose-rgb), 0.05);
    padding: 1.5rem;
    border-left: 4px solid var(--theme-rose);
    border-radius: 5px;
    margin: 1.5rem 0;
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
}

.warning-box {
    margin: 2rem 0;
}

.example-box h4 {
    color: var(--theme-rose);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.warning-box strong,
.note-box strong {
    color: var(--theme-rose);
}

.incident-box {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(var(--theme-gold-soft-rgb), 0.9));
    padding: 2rem;
    margin: 2.5rem 0;
    border-radius: 15px;
    border-top: 4px solid var(--theme-rose);
    box-shadow: 0 8px 25px rgba(var(--theme-green-rgb), 0.15);
}

.disclaimer {
    background: linear-gradient(135deg, rgba(var(--theme-rose-rgb), 0.05) 0%, rgba(var(--theme-rose-rgb), 0.02) 100%);
    padding: 2rem;
    border-left: 4px solid var(--theme-rose);
    border-radius: 10px;
    margin: 3rem 0;
    font-style: italic;
    position: relative;
    z-index: 2;
}

.list-section {
    background: rgba(255, 255, 255, 0.8);
    padding: 1.5rem 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    box-shadow: 0 4px 15px rgba(var(--theme-green-rgb), 0.08);
}

.quote {
    font-style: italic;
    color: var(--theme-green);
    padding: 2rem;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 12px;
    margin: 2.5rem 0;
    text-align: center;
    box-shadow: 0 4px 20px rgba(var(--theme-green-rgb), 0.1);
}


/* ========================================
   TIMELINE
   ======================================== */
.timeline {
    position: relative;
    padding-left: 2rem;
    margin: 2rem 0;
    z-index: 2;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--theme-green), var(--theme-rose));
}

.timeline-item {
    margin-bottom: 2rem;
    position: relative;
}

.timeline-item::before {
    content: '◆';
    position: absolute;
    left: -2.3rem;
    color: var(--theme-rose);
    font-size: 1.2rem;
}

.timeline-item strong {
    color: var(--theme-green);
    display: block;
    margin-bottom: 0.3rem;
}


/* ========================================
   RESOURCES PAGE
   ======================================== */
.resource-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px rgba(var(--theme-green-rgb), 0.1);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.resource-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(var(--theme-rose-rgb), 0.05) 0%, transparent 70%);
}

.resource-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(var(--theme-green-rgb), 0.15);
}

.resource-title {
    font-size: 1.4rem;
    color: var(--theme-rose);
    margin-bottom: 0.5rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.resource-author {
    font-size: 1rem;
    color: var(--theme-ink-muted);
    margin-bottom: 1rem;
    font-style: italic;
    position: relative;
    z-index: 2;
}

.resource-description {
    margin: 1rem 0;
    color: var(--theme-ink-strong);
    position: relative;
    z-index: 2;
}

.resource-level {
    display: inline-block;
    padding: 0.3rem 1rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 1rem;
    position: relative;
    z-index: 2;
}

.level-beginner {
    background: linear-gradient(135deg, var(--theme-green) 0%, var(--theme-green) 100%);
    color: white;
}

.level-intermediate {
    background: linear-gradient(135deg, var(--theme-gold) 0%, var(--theme-gold) 100%);
    color: white;
}

.level-advanced {
    background: linear-gradient(135deg, var(--theme-rose) 0%, var(--theme-rose-deep) 100%);
    color: white;
}

.guidance-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(var(--theme-green-soft-rgb), 0.8) 100%);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(var(--theme-green-rgb), 0.12);
    margin: 3rem 0;
}

.guidance-section h3 {
    color: var(--theme-green);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.guidance-section p {
    margin-bottom: 1rem;
}

.guidance-section ul {
    margin: 1rem 0 1rem 2rem;
}

.guidance-section li {
    margin-bottom: 0.8rem;
    color: var(--theme-olive-muted);
}


/* ========================================
   CONTACT PAGE
   ======================================== */
.contact-options {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    padding: 2.5rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    box-shadow: 0 8px 25px rgba(var(--theme-green-rgb), 0.12);
}

.contact-options h2 {
    color: var(--theme-green);
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.contact-method {
    margin: 2rem 0.35rem;
    padding: 1.5rem;
    background: rgba(var(--theme-green-rgb), 0.03);
    border: var(--card-gold-border-width) solid rgba(var(--theme-gold-rgb), 0.8);
    border-left-width: var(--card-gold-accent-width);
    border-radius: 8px;
    box-shadow: 0 0 0 var(--card-gold-ring-width) rgba(var(--theme-gold-rgb), 0.16);
}

.contact-method h3 {
    color: var(--theme-rose);
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.contact-method p {
    margin-bottom: 0.5rem;
    color: var(--theme-olive-muted);
}

.email-link {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, var(--theme-green) 0%, var(--theme-gold) 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    margin-top: 1rem;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(var(--theme-green-rgb), 0.3);
}

.email-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(var(--theme-green-rgb), 0.4);
}

.guidelines {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(var(--theme-green-soft-rgb), 0.85) 100%);
    padding: 2.5rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    box-shadow: 0 8px 25px rgba(var(--theme-green-rgb), 0.12);
}

.guidelines h2 {
    color: var(--theme-green);
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.guidelines ul {
    margin: 1rem 0 1rem 2rem;
}

.guidelines li {
    margin-bottom: 1rem;
    color: var(--theme-olive-muted);
}

.response-time {
    background: rgba(var(--theme-green-rgb), 0.05);
    padding: 1.5rem;
    border-left: 4px solid var(--theme-green);
    border-radius: 8px;
    margin: 2rem 0;
}

.response-time strong {
    color: var(--theme-green);
}


/* ========================================
   ARTICLES PAGE
   ======================================== */
.edit-instructions {
    background: linear-gradient(135deg, var(--theme-gold-soft) 0%, var(--theme-gold-warm) 100%);
    border: 2px dashed var(--theme-gold);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 3rem;
    position: relative;
    z-index: 10;
}

.edit-instructions h3 {
    color: var(--theme-gold-deep);
    margin-bottom: 1rem;
}

.edit-instructions p {
    margin-bottom: 0.5rem;
    color: var(--theme-olive-muted);
}

.edit-instructions code {
    background: rgba(0, 0, 0, 0.1);
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
    font-family: monospace;
}

.article-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    padding: 2rem;
    border-radius: 12px;
    margin: 0.35rem 0 2rem;
    border: var(--card-gold-border-width) solid rgba(var(--theme-gold-rgb), 0.8);
    box-shadow: 0 0 0 var(--card-gold-ring-width) rgba(var(--theme-gold-rgb), 0.16), 0 5px 20px rgba(var(--theme-green-rgb), 0.1);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: block;
}

.article-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(var(--theme-rose-rgb), 0.05) 0%, transparent 70%);
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 0 var(--card-gold-ring-width-hover) rgba(var(--theme-gold-rgb), 0.22), 0 10px 35px rgba(var(--theme-green-rgb), 0.18);
}

.article-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--theme-ink-muted);
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.article-title {
    font-size: 1.6rem;
    color: var(--theme-rose);
    margin-bottom: 1rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.article-excerpt {
    color: var(--theme-ink-strong);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

.article-tags {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.tag {
    padding: 0.3rem 1rem;
    background: rgba(var(--theme-green-rgb), 0.1);
    color: var(--theme-green);
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

.read-more {
    color: var(--theme-rose);
    font-weight: 600;
    margin-top: 1rem;
    display: inline-block;
    position: relative;
    z-index: 2;
}

.read-more::after {
    content: ' →';
}


/* ========================================
   LINKS/RESOURCES PAGE
   ======================================== */
.link-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    padding: 2rem;
    border-radius: 12px;
    margin: 0.35rem 0 2rem;
    border: var(--card-gold-border-width) solid rgba(var(--theme-gold-rgb), 0.8);
    box-shadow: 0 0 0 var(--card-gold-ring-width) rgba(var(--theme-gold-rgb), 0.16), 0 5px 20px rgba(var(--theme-green-rgb), 0.1);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.link-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(var(--theme-rose-rgb), 0.05) 0%, transparent 70%);
}

.link-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 0 var(--card-gold-ring-width-hover) rgba(var(--theme-gold-rgb), 0.22), 0 8px 30px rgba(var(--theme-green-rgb), 0.15);
}

.link-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.link-header h3 {
    color: var(--theme-green);
    font-size: 1.4rem;
    margin: 0;
    font-weight: 600;
}

.link-category {
    padding: 0.3rem 1rem;
    background: rgba(var(--theme-rose-rgb), 0.1);
    color: var(--theme-rose);
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

.link-description {
    color: var(--theme-ink-strong);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

.external-link {
    display: inline-block;
    color: var(--theme-rose);
    font-weight: 600;
    text-decoration: none;
    position: relative;
    z-index: 2;
    transition: all 0.3s;
}

.external-link:hover {
    color: var(--theme-rose-deep);
    transform: translateX(5px);
}

.external-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--theme-rose);
    transition: width 0.3s;
}

.external-link:hover::after {
    width: 100%;
}

/* Video Grid */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.video-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    border-radius: 12px;
    margin: 0.35rem;
    overflow: hidden;
    border: var(--card-gold-border-width) solid rgba(var(--theme-gold-rgb), 0.8);
    box-shadow: 0 0 0 var(--card-gold-ring-width) rgba(var(--theme-gold-rgb), 0.16), 0 5px 20px rgba(var(--theme-green-rgb), 0.1);
    transition: all 0.3s;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 0 var(--card-gold-ring-width-hover) rgba(var(--theme-gold-rgb), 0.22), 0 10px 35px rgba(var(--theme-green-rgb), 0.18);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--theme-green) 0%, var(--theme-gold) 100%);
}

.text-thumbnail {
    display: flex;
    align-items: flex-end;
    padding: 1.25rem;
    color: white;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.25;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.video-card:hover .video-overlay {
    opacity: 1;
}

.video-overlay span {
    font-size: 3rem;
    color: white;
}

.video-info {
    padding: 1.5rem;
}

.video-info h3 {
    color: var(--theme-green);
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.channel-desc {
    color: var(--theme-ink-strong);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.channel-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--theme-ink-muted);
}

/* App Grid */
.app-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.app-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(var(--theme-green-soft-rgb), 0.8) 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin: 0.35rem;
    border: var(--card-gold-border-width) solid rgba(var(--theme-gold-rgb), 0.8);
    border-top-width: var(--card-gold-accent-width);
    box-shadow: 0 0 0 var(--card-gold-ring-width) rgba(var(--theme-gold-rgb), 0.16), 0 5px 20px rgba(var(--theme-green-rgb), 0.1);
    transition: all 0.3s;
}

.app-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 0 var(--card-gold-ring-width-hover) rgba(var(--theme-gold-rgb), 0.22), 0 10px 30px rgba(var(--theme-green-rgb), 0.15);
}

.app-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.app-card h3 {
    color: var(--theme-green);
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.app-card p {
    color: var(--theme-olive-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.app-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.app-links a {
    padding: 0.5rem 1rem;
    background: rgba(var(--theme-green-rgb), 0.1);
    color: var(--theme-green);
    text-decoration: none;
    border-radius: 5px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s;
}

.app-links a:hover {
    background: var(--theme-green);
    color: white;
}

.app-links .coming-soon {
    padding: 0.5rem 1rem;
    background: rgba(90, 108, 87, 0.12);
    color: var(--theme-ink-muted);
    border-radius: 5px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: default;
}

/* Social Grid */
.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.social-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    margin: 0.35rem;
    border: var(--card-gold-border-width) solid rgba(var(--theme-gold-rgb), 0.8);
    box-shadow: 0 0 0 var(--card-gold-ring-width) rgba(var(--theme-gold-rgb), 0.16), 0 5px 20px rgba(var(--theme-green-rgb), 0.1);
    transition: all 0.3s;
}

.social-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 0 var(--card-gold-ring-width-hover) rgba(var(--theme-gold-rgb), 0.22), 0 8px 30px rgba(var(--theme-green-rgb), 0.15);
}

.social-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.social-icon.twitter {
    background: linear-gradient(135deg, #1DA1F2 0%, #0d8bd9 100%);
    color: white;
}

.social-icon.instagram {
    background: linear-gradient(135deg, #E1306C 0%, #C13584 50%, #833AB4 100%);
    color: white;
}

.social-icon.telegram {
    background: linear-gradient(135deg, #0088cc 0%, #006699 100%);
    color: white;
}

.social-card h3 {
    color: var(--theme-green);
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.social-card p {
    color: var(--theme-ink-muted);
    margin-bottom: 1.5rem;
}

.social-accounts {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.social-accounts a {
    color: var(--theme-rose);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.social-accounts a:hover {
    color: var(--theme-rose-deep);
    transform: translateX(5px);
}


/* ========================================
   BOOKS PAGE
   ======================================== */
.books-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.book-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(var(--theme-green-soft-rgb), 0.8) 100%);
    border-radius: 15px;
    padding: 2.5rem;
    margin: 0.35rem 0;
    border: var(--card-gold-border-width) solid rgba(var(--theme-gold-rgb), 0.8);
    border-top-width: var(--card-gold-accent-width);
    box-shadow: 0 0 0 var(--card-gold-ring-width) rgba(var(--theme-gold-rgb), 0.16), 0 8px 25px rgba(var(--theme-green-rgb), 0.12);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.book-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(var(--theme-rose-rgb), 0.05) 0%, transparent 70%);
    transition: all 0.4s;
}

.book-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 0 var(--card-gold-ring-width-hover) rgba(var(--theme-gold-rgb), 0.22), 0 15px 40px rgba(var(--theme-green-rgb), 0.2);
}

.book-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.book-title {
    flex: 1;
    min-width: 250px;
}

.book-title h2 {
    font-size: 1.8rem;
    color: var(--theme-green);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.book-subtitle {
    font-size: 1.1rem;
    color: var(--theme-ink-muted);
    font-style: italic;
}

.book-status {
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
}

.status-published {
    background: linear-gradient(135deg, var(--theme-green) 0%, var(--theme-green-deep) 100%);
    color: white;
}

.status-upcoming {
    background: linear-gradient(135deg, var(--theme-rose) 0%, var(--theme-rose-deep) 100%);
    color: white;
}

.status-progress {
    background: linear-gradient(135deg, var(--theme-gold) 0%, var(--theme-gold-deep) 100%);
    color: white;
}

.book-description {
    margin: 1.5rem 0;
    color: var(--theme-ink-strong);
    position: relative;
    z-index: 2;
}

.book-description p {
    margin-bottom: 1rem;
}

.book-details {
    margin: 2rem 0;
    position: relative;
    z-index: 2;
}

.book-details h3 {
    color: var(--theme-green);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.book-details ul {
    list-style: none;
    padding-left: 0;
}

.book-details li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--theme-olive-muted);
}

.book-details li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: var(--theme-rose);
}

.book-audience {
    background: rgba(var(--theme-green-rgb), 0.05);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    border-left: 3px solid var(--theme-green);
    position: relative;
    z-index: 2;
}

.book-audience strong {
    color: var(--theme-green);
}

.book-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.btn {
    padding: 0.8rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--theme-green) 0%, var(--theme-gold) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(var(--theme-green-rgb), 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(var(--theme-green-rgb), 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(var(--theme-green-soft-rgb), 0.9) 100%);
    color: var(--theme-green);
    border: 2px solid var(--theme-green);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--theme-green) 0%, var(--theme-gold) 100%);
    color: white;
}

.btn-disabled {
    background: #ccc;
    color: #666;
    cursor: not-allowed;
}


/* ========================================
   FOOTER
   ======================================== */
footer,
.footer {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(var(--theme-green-soft-rgb), 0.95) 100%);
    border-top: 2px solid rgba(var(--theme-green-rgb), 0.1);
    padding: 2.5rem 2rem;
    text-align: center;
    margin-top: 4rem;
    position: relative;
    z-index: 100;
    backdrop-filter: blur(10px);
}

footer p,
.footer p {
    color: var(--theme-green);
    font-size: 0.9rem;
}

footer p:last-child {
    color: var(--theme-rose);
    font-style: italic;
}


/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        align-items: flex-start;
    }

    nav ul {
        margin-top: 1rem;
        gap: 1rem;
    }

    .hero h1,
    .page-header h1 {
        font-size: 1.8rem;
    }

    .welcome,
    .intro-text,
    .intro-box,
    .content-section,
    .section {
        padding: 1.5rem;
    }

    .container {
        padding: 2rem 1.5rem;
    }

    .principles-grid,
    .section-links {
        flex-direction: column;
    }

    .principle-card,
    .section-link {
        max-width: 100%;
    }

    .qa-item,
    .resource-card {
        padding: 1.5rem;
    }

    .question {
        font-size: 1.1rem;
    }

    .contact-options,
    .guidelines,
    .guidance-section {
        padding: 1.5rem;
    }

    .book-card {
        padding: 1.5rem;
    }

    .book-title h2 {
        font-size: 1.5rem;
    }

    .book-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    h2 {
        font-size: 1.6rem;
    }

    .content-box {
        padding: 2rem;
    }

    .article-card {
        padding: 1.5rem;
    }

    .article-title {
        font-size: 1.3rem;
    }

    .video-grid,
    .app-grid,
    .social-grid {
        grid-template-columns: 1fr;
    }

    .link-header {
        flex-direction: column;
        align-items: flex-start;
    }
}
