/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Skip Link for Accessibility (Hidden by default) */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #E6A93D;
    color: #6A1E1E;
    padding: 8px;
    text-decoration: none;
    font-weight: bold;
    z-index: 1000;
    border-radius: 4px;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 6px;
}

body {
    font-family: 'Inter', 'Lato', sans-serif;
    line-height: 1.6;
    color: #2C2C2C;
    background-color: #FAF3E0;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: linear-gradient(135deg, #6A1E1E 0%, #5a1919 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(230, 169, 61, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(230, 169, 61, 0.1) 0%, transparent 50%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><g fill="white" opacity="0.03"><path d="M50,20 L55,30 L50,40 L45,30 Z"/><circle cx="50" cy="50" r="3"/><path d="M30,50 Q50,30 70,50 Q50,70 30,50"/></g></svg>');
    opacity: 0.7;
}

.header-content {
    position: relative;
    z-index: 2;
}

.header-content h1 {
    font-family: 'Playfair Display', 'Merriweather', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    color: white;
    letter-spacing: 2px;
}

.header-content .subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    font-weight: 300;
    color: #F5E6D3;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

.header-image {
    margin: 1.5rem 0;
}

.header-image img {
    width: 140px;
    height: 100px;
    border-radius: 15px;
    object-fit: cover;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    border: 3px solid rgba(230, 169, 61, 0.3);
    transition: transform 0.3s ease;
}

.header-image img:hover {
    transform: scale(1.05);
    border-color: rgba(230, 169, 61, 0.6);
}

/* Navigation */
nav {
    background: linear-gradient(135deg, #6A1E1E 0%, #5a1919 100%);
    padding: 1rem 0;
    box-shadow: 0 2px 15px rgba(106, 30, 30, 0.4);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
    align-items: center;
}

.nav-menu li {
    position: relative;
}

.nav-menu li:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path fill="%23E6A93D" opacity="0.6" d="M10,2 L12,8 L10,14 L8,8 Z"/><circle fill="%23E6A93D" opacity="0.8" cx="10" cy="10" r="2"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.7;
}

.nav-menu li a {
    text-decoration: none;
    color: #FAF3E0;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    padding: 1rem 1.8rem;
    transition: all 0.3s ease;
    position: relative;
    font-size: 1rem;
    letter-spacing: 0.5px;
    border-radius: 0;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #E6A93D, #F4B942);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-menu li a:hover {
    color: #E6A93D;
    background: rgba(230, 169, 61, 0.1);
    transform: translateY(-2px);
}

.nav-menu li a:hover::after {
    width: 80%;
}

.nav-menu li a.active {
    color: #E6A93D;
    position: relative;
}

.nav-menu li a.active::after {
    width: 80%;
    background: linear-gradient(90deg, #F4B942, #E6A93D);
    box-shadow: 0 2px 8px rgba(230, 169, 61, 0.4);
}

/* Contact Button Special Styling */
.nav-menu li:last-child a {
    background: #E6A93D;
    color: #6A1E1E;
    font-weight: 700;
    border-radius: 25px;
    margin-left: 1rem;
    padding: 0.8rem 1.8rem;
    box-shadow: 0 4px 15px rgba(230, 169, 61, 0.3);
    transition: all 0.3s ease;
}

.nav-menu li:last-child a::after {
    display: none;
}

.nav-menu li:last-child a:hover {
    background: #F4B942;
    color: #6A1E1E;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(230, 169, 61, 0.5);
    filter: brightness(1.1);
}

.mobile-menu-btn {
    display: none;
    background: #E6A93D;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #6A1E1E;
    padding: 12px 16px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(230, 169, 61, 0.4);
    position: absolute;
    right: 20px;
    transition: all 0.3s ease;
    font-weight: bold;
}

.mobile-menu-btn:hover {
    background: #F4B942;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 169, 61, 0.5);
}

/* Hero Section */
.hero {
    background: 
        linear-gradient(135deg, rgba(106, 30, 30, 0.8), rgba(90, 25, 25, 0.8)), 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23FAF3E0" width="1200" height="600"/><g fill="%236A1E1E" opacity="0.05"><path d="M100,150 Q200,100 300,150 Q400,200 500,150 Q600,100 700,150 Q800,200 900,150 Q1000,100 1100,150 L1100,450 Q1000,500 900,450 Q800,400 700,450 Q600,500 500,450 Q400,400 300,450 Q200,500 100,450 Z"/></g><g fill="%23E6A93D" opacity="0.08"><circle cx="200" cy="200" r="50"/><circle cx="600" cy="350" r="60"/><circle cx="1000" cy="250" r="40"/></g><g fill="%236A1E1E" opacity="0.03"><path d="M0,300 L50,280 L100,300 L150,280 L200,300 L250,280 L300,300 L350,280 L400,300 L450,280 L500,300 L550,280 L600,300 L650,280 L700,300 L750,280 L800,300 L850,280 L900,300 L950,280 L1000,300 L1050,280 L1100,300 L1150,280 L1200,300 L1200,320 L0,320 Z"/></g></svg>');
    background-size: cover;
    background-position: center;
    padding: 5rem 0;
    text-align: center;
    color: white;
    position: relative;
    border-bottom: 4px solid #E6A93D;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><g fill="white" opacity="0.05"><path d="M20,20 L30,10 L40,20 L30,30 Z M60,40 L70,30 L80,40 L70,50 Z M10,70 L20,60 L30,70 L20,80 Z M70,80 L80,70 L90,80 L80,90 Z"/></g></svg>');
    animation: floatPattern 8s ease-in-out infinite;
}

@keyframes floatPattern {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-5px) scale(1.02); }
}

.hero h2 {
    font-family: 'Playfair Display', 'Merriweather', serif;
    font-size: 3rem;
    margin-bottom: 1.2rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
    position: relative;
    z-index: 2;
    color: #F5E6D3;
}

.hero p {
    font-size: 1.2rem;
    opacity: 0.95;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
    position: relative;
    z-index: 2;
    color: #F5E6D3;
}

/* Stories Section */
.stories-section {
    padding: 5rem 0;
    background: #FAF3E0;
    position: relative;
}

.stories-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><g fill="%236A1E1E" opacity="0.02"><path d="M10,20 Q30,10 50,20 Q70,30 90,20 L90,25 Q70,35 50,25 Q30,15 10,25 Z"/><path d="M10,60 Q30,50 50,60 Q70,70 90,60 L90,65 Q70,75 50,65 Q30,55 10,65 Z"/></g></svg>');
}

.section-title {
    font-family: 'Playfair Display', 'Merriweather', serif;
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3.5rem;
    color: #6A1E1E;
    position: relative;
    z-index: 2;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: #E6A93D;
    margin: 1.5rem auto;
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(230, 169, 61, 0.3);
}

.section-title::before {
    content: '🪷';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -40px;
    font-size: 1.5rem;
    opacity: 0.7;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.story-card {
    background: #FFFBF5;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(106, 30, 30, 0.1);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    border: 2px solid #F0E6D2;
    opacity: 1;
    transform: translateY(0);
}

.story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(230, 169, 61, 0.05), rgba(106, 30, 30, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.story-card:hover::before {
    opacity: 1;
}

.story-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(106, 30, 30, 0.2);
    border-color: #E6A93D;
}

.story-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #6A1E1E 0%, #5a1919 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #E6A93D;
    font-size: 2.5rem;
    position: relative;
    overflow: hidden;
}

.story-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><g fill="white" opacity="0.08"><path d="M20,30 Q30,20 40,30 Q50,40 60,30 Q70,20 80,30 L80,35 Q70,25 60,35 Q50,45 40,35 Q30,25 20,35 Z"/><path d="M20,60 Q30,50 40,60 Q50,70 60,60 Q70,50 80,60 L80,65 Q70,55 60,65 Q50,75 40,65 Q30,55 20,65 Z"/></g></svg>');
    animation: traditionalPattern 6s linear infinite;
}

@keyframes traditionalPattern {
    0% { transform: translateX(0); }
    100% { transform: translateX(100px); }
}

.story-content {
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.story-title {
    font-family: 'Noto Sans Devanagari', 'Playfair Display', serif;
    font-size: 1.6rem;
    color: #6A1E1E;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 600;
}

.story-excerpt {
    color: #5A5A5A;
    font-size: 1rem;
    line-height: 1.7;
    text-align: center;
    font-weight: 400;
}

/* Cultural Icons for Stories */
.story-card:nth-child(1) .story-image::after {
    content: '🪷'; /* Lotus for first story */
}

.story-card:nth-child(2) .story-image::after {
    content: '🦚'; /* Peacock for second story */
}

.story-card:nth-child(3) .story-image::after {
    content: '📖'; /* Book for third story */
}

.story-image::after {
    position: absolute;
    font-size: 3rem;
    z-index: 2;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
}

/* Featured Story */
.featured-story {
    background: #FFFBF5;
    padding: 3rem;
    border-radius: 20px;
    margin: 4rem 0;
    text-align: center;
    border: 2px solid #E6A93D;
    box-shadow: 0 15px 35px rgba(106, 30, 30, 0.1);
    position: relative;
    z-index: 2;
}

.featured-story::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid rgba(230, 169, 61, 0.3);
    border-radius: 15px;
    pointer-events: none;
}

.featured-story h3 {
    font-family: 'Playfair Display', 'Merriweather', serif;
    font-size: 2.2rem;
    color: #6A1E1E;
    margin-bottom: 1.5rem;
    position: relative;
}

.featured-story h3::after {
    content: '✨';
    position: absolute;
    right: -40px;
    top: 0;
    font-size: 1.5rem;
    color: #E6A93D;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 1; transform: scale(1) rotate(0deg); }
    50% { opacity: 0.7; transform: scale(1.1) rotate(10deg); }
}

.featured-story p {
    color: #5A5A5A;
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

/* About Section */
.about-section {
    background: linear-gradient(135deg, #6A1E1E 0%, #5a1919 100%);
    padding: 5rem 0;
    color: white;
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><g fill="white" opacity="0.03"><path d="M10,10 L20,5 L30,10 L25,20 L15,25 L5,20 Z M70,30 L80,25 L90,30 L85,40 L75,45 L65,40 Z M30,70 L40,65 L50,70 L45,80 L35,85 L25,80 Z M80,80 L90,75 L100,80 L95,90 L85,95 L75,90 Z"/></g></svg>');
}

.about-section .section-title {
    color: white;
    position: relative;
    z-index: 2;
}

.about-section .section-title::after {
    background: #E6A93D;
}

.about-section .section-title::before {
    content: '🪔';
    color: #E6A93D;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

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

.about-image img {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    border: 5px solid #E6A93D;
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.05);
}

.about-text h3 {
    font-family: 'Playfair Display', 'Merriweather', serif;
    font-size: 2.2rem;
    color: white;
    margin-bottom: 1rem;
}

.about-text h4 {
    color: #E6A93D;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.about-text p {
    color: rgba(255,255,255,0.9);
    line-height: 1.8;
    margin-bottom: 1.2rem;
    font-size: 1rem;
}

/* Contact Section */
.contact-section {
    background: #FAF3E0;
    padding: 5rem 0;
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><g fill="%236A1E1E" opacity="0.02"><circle cx="20" cy="20" r="15"/><circle cx="80" cy="80" r="20"/><path d="M50,10 Q60,20 70,10 Q80,20 90,10 L90,15 Q80,25 70,15 Q60,25 50,15 Z"/></g></svg>');
}

.contact-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.contact-section .section-title::before {
    content: '📜';
    color: #6A1E1E;
}

.contact-image {
    margin-bottom: 2.5rem;
}

.contact-image img {
    width: 180px;
    height: 120px;
    border-radius: 15px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(106, 30, 30, 0.2);
    border: 3px solid #E6A93D;
}

.contact-content p {
    font-size: 1.1rem;
    color: #5A5A5A;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.contact-btn {
    background: #E6A93D;
    color: #2C2C2C;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 10px;
    display: inline-block;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    border: 2px solid #E6A93D;
}

.contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #6A1E1E;
    transition: left 0.3s ease;
    z-index: -1;
}

.contact-btn:hover::before {
    left: 0;
}

.contact-btn:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(230, 169, 61, 0.4);
}

/* Footer */
footer {
    background: linear-gradient(135deg, #6A1E1E 0%, #4a1515 100%);
    color: white;
    text-align: center;
    padding: 3rem 0;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><g fill="white" opacity="0.05"><path d="M0,50 Q25,40 50,50 Q75,60 100,50 L100,60 Q75,70 50,60 Q25,50 0,60 Z"/><circle cx="25" cy="25" r="8"/><circle cx="75" cy="75" r="10"/></g></svg>');
}

footer p {
    margin-bottom: 0.8rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

footer p:first-child {
    font-weight: 600;
    color: #E6A93D;
}

footer p:last-child {
    opacity: 0.7;
    font-size: 0.9rem;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content h1 {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }

    .header-content .subtitle {
        font-size: 1.1rem;
    }

    .nav-container {
        justify-content: space-between;
        align-items: center;
        position: relative;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #6A1E1E 0%, #5a1919 100%);
        box-shadow: 0 4px 20px rgba(106, 30, 30, 0.4);
        padding: 1rem 0;
        gap: 0;
        border-radius: 0 0 15px 15px;
        z-index: 1000;
    }

    .nav-menu.active {
        display: flex !important;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu li:not(:last-child)::after {
        display: none;
    }

    .nav-menu li a {
        padding: 1rem 2rem;
        border-bottom: 1px solid rgba(230, 169, 61, 0.1);
        display: block;
        width: 100%;
        text-align: left;
    }

    .nav-menu li a:hover {
        background: rgba(230, 169, 61, 0.1);
        transform: none;
    }

    .nav-menu li:last-child a {
        margin: 1rem 2rem 0.5rem;
        border-bottom: none;
        border-radius: 25px;
        text-align: center;
        width: auto;
    }

    .mobile-menu-btn {
        display: block;
        z-index: 1001;
    }

    .stories-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero h2 {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .story-title {
        font-size: 1.4rem;
    }

    .container {
        padding: 0 15px;
    }

    .featured-story {
        padding: 2rem;
        margin: 2rem 0;
    }

    .featured-story h3::after {
        right: -25px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .header-content h1 {
        font-size: 2rem;
    }

    .hero h2 {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .stories-section,
    .about-section,
    .contact-section {
        padding: 3rem 0;
    }

    .story-card {
        margin: 0 10px;
    }

    .about-image img {
        width: 180px;
        height: 180px;
    }

    .stories-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .section-title::before {
        top: -30px;
        font-size: 1.2rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.story-card {
    animation: fadeInUp 0.8s ease forwards;
}

.story-card:nth-child(1) { animation-delay: 0.1s; }
.story-card:nth-child(2) { animation-delay: 0.2s; }
.story-card:nth-child(3) { animation-delay: 0.3s; }

/* Section fade-in animation */
section {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease;
}

section.fade-in {
    opacity: 0;
    transform: translateY(30px);
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Scroll animations */
.about-image {
    opacity: 1;
    transform: translateX(0);
}

.about-text {
    opacity: 1;
    transform: translateX(0);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #F0E6D2;
}

::-webkit-scrollbar-thumb {
    background: #E6A93D;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #D4941F;
}

/* Selection color */
::selection {
    background: #E6A93D;
    color: #2C2C2C;
}

::-moz-selection {
    background: #E6A93D;
    color: #2C2C2C;
}