:root {
    --primary-color: #1b5e20; /* Deep Emerald Green */
    --secondary-color: #2e7d32; /* Lighter Green */
    --accent-color: #d4af37; /* Metallic Gold */
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #f5f7fa;
    --white: #ffffff;
    --border-color: #eaeaea;
    
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-body);
    font-size: 14px; /* Reduced for elegance */
    color: #666;
    line-height: 1.8; /* Increased line-height for a softer look */
    font-weight: 400;
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

p {
    text-align: justify;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-weight: 500; /* Softer heading weight */
    line-height: 1.4;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

/* --- Top Bar --- */
.top-bar {
    background-color: var(--primary-color);
    background-image: url('../images/auth-bg.png');
    background-size: cover;
    background-position: top;
    color: var(--white);
    padding: 10px 0;
    font-size: 0.75rem;
    font-weight: 400;
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left, .top-bar-right {
    display: flex;
    gap: 20px;
}

.top-bar i {
    margin-right: 5px;
    color: var(--accent-color);
}

/* --- Navbar --- */
.header {
    background-color: var(--white);
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.logo img {
    max-height: 75px;
    width: auto;
    max-width: 400px;
    object-fit: contain;
}
.logo-text {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--primary-color);
    letter-spacing: 0.5px;
    line-height: 1.2;
}
.logo-text span {
    display: block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-light);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-top: -2px;
}

.main-menu {
    display: flex;
    gap: 30px;
}

.main-menu a {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.8rem;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.main-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.main-menu a:hover::after, .main-menu a.active::after {
    width: 100%;
}

.main-menu a:hover, .main-menu a.active {
    color: var(--secondary-color);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.search-icon {
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.3rem;
    cursor: pointer;
}

/* --- Nav Enhancements (Translate, Dark Mode) --- */
.lang-selector {
    position: relative;
}

.lang-select {
    padding: 6px 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background-color: var(--bg-light);
    color: var(--text-dark);
    font-family: var(--font-body);
    font-size: 0.8rem;
    cursor: pointer;
    outline: none;
}

.dark-mode-toggle {
    cursor: pointer;
    font-size: 1rem;
    color: var(--text-dark);
    transition: color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--bg-light);
}

.dark-mode-toggle:hover {
    color: var(--accent-color);
}

/* Dark Mode Variables Override */
body.dark-mode {
    --white: #121212;
    --bg-light: #1a1a1a;
    --text-dark: #f0f0f0;
    --text-light: #a0a0a0;
    --border-color: #2a2a2a;
}

body.dark-mode .header {
    background-color: #151515;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

body.dark-mode .feature-card,
body.dark-mode .about-image {
    background-color: #1a1a1a;
    border-color: #2a2a2a;
}

/* Hide Google Widget UI to keep it clean */
.goog-te-banner-frame.skiptranslate,
.goog-te-banner-frame,
iframe.skiptranslate,
.VIpgJd-ZVi9od-ORHb-OEVmcd,
#goog-gt-tt {
    display: none !important;
    visibility: hidden !important;
} 
body {
    top: 0px !important; 
}

/* --- Hero Section --- */
.hero {
    background-color: var(--primary-color);
    background-image: url('../images/auth-bg.png');
    background-size: cover;
    background-position: center;
    padding: 160px 0 120px;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(27,94,32,0.8), rgba(27,94,32,0.95)); /* Elegant dark green gradient */
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 25px;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 45px;
    color: rgba(255,255,255,0.85);
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.6;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    font-family: var(--font-body);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    font-size: 0.8rem;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--accent-color);
    color: #fff;
    border: 1px solid var(--accent-color);
}

.btn-primary:hover {
    background-color: #c49f2f;
    color: #fff;
}

/* --- Countdown --- */
.countdown-section {
    padding: 50px 0;
    background: var(--bg-light);
    color: var(--text-dark);
}

.countdown-wrapper {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.countdown-box {
    text-align: center;
    padding: 20px 30px;
    min-width: 130px;
    border-right: 1px solid var(--border-color);
}

.countdown-box:last-child {
    border-right: none;
}

.countdown-num {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 500;
    display: block;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 10px;
}

.countdown-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-light);
    font-weight: 500;
}

/* --- Sections --- */
.section {
    padding: 100px 0;
}

.section-title {
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
    color: #1e3a5f;
    font-weight: 500;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

/* About Grid */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-content h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.about-content p {
    margin-bottom: 15px;
}

.about-image {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

/* Feature Cards (Venue) */
.feature-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    padding: 40px 30px;
    text-align: center;
    border-radius: 8px;
    transition: transform 0.3s;
    box-shadow: 0 3px 10px rgba(0,0,0,0.02);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.feature-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* --- Footer --- */
.footer {
    background-color: #1a1a1a;
    color: #aaaaaa;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

@media (max-width: 992px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
}

.footer-widget h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-widget ul {
    list-style: none;
}

.footer-widget ul li {
    margin-bottom: 12px;
}

.footer-widget ul li a {
    color: #aaaaaa;
}

.footer-widget ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.footer-contact i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-top: 3px;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 20px;
    font-size: 0.9rem;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
    background-color: var(--bg-light);
}

.form-control:focus {
    outline: none;
    border-color: var(--secondary-color);
    background-color: var(--white);
}

/* Responsive */
@media (max-width: 992px) {
    .about-grid { grid-template-columns: 1fr; }
    .top-bar { display: none; }
}

@media (max-width: 768px) {
    .main-menu { display: none; }
    .nav-right {
        position: absolute;
        top: 60px;
        right: 15px;
        background: var(--white);
        padding: 10px;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        display: none; /* Will be toggled by JS if needed, or we just let it show? */
    }
    .nav-right.show-mobile {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .mobile-menu-toggle { display: block; }
    .hero-title { font-size: 2.2rem; }
    .countdown-wrapper { flex-wrap: wrap; gap: 15px; }
}

/* Menu Dropdown Styles */
.menu-dropdown { position: relative; display: inline-block; }
.menu-dropdown-content { display: none; position: absolute; top: 100%; left: 0; background-color: var(--white); min-width: 200px; box-shadow: 0 8px 16px rgba(0,0,0,0.1); z-index: 1000; border-radius: 8px; border: 1px solid var(--border-color); overflow: hidden; }
.menu-dropdown-content a { color: var(--text-dark) !important; padding: 12px 16px !important; text-decoration: none; display: block; border-bottom: 1px solid var(--border-color); font-weight: normal; }
.menu-dropdown-content a:last-child { border-bottom: none; }
.menu-dropdown-content a:hover { background-color: rgba(212, 175, 55, 0.1); color: var(--primary-color) !important; }
.menu-dropdown:hover > .menu-dropdown-content { display: block; }
.menu-dropdown .menu-dropdown { position: relative; display: block; }
.menu-dropdown .menu-dropdown-content { top: 0; left: 100%; }

/* Elegant Green Header */
.article-page-header {
    position: relative;
    background-color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color) 0%, #114216 100%);
    padding: 90px 20px 80px 20px;
    text-align: center;
    overflow: hidden;
    border-bottom: 2px solid var(--accent-color);
    box-shadow: 0 0 30px rgba(27, 94, 32, 0.4);
}
.article-page-header::before {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 350px;
    height: 350px;
    background-image: var(--silhouette-url, url('../images/logo.png'));
    background-repeat: no-repeat;
    background-position: top right;
    background-size: contain;
    opacity: 0.1;
    pointer-events: none;
    z-index: 1;
}
.article-header-inner {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    animation: fadeUp 1s ease-out forwards;
}
.article-title-main {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.3;
    color: #ffffff;
    margin-bottom: 25px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
/* Content Area */
.article-content-wrapper {
    max-width: 860px;
    margin: -40px auto 100px auto;
    padding: 40px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    position: relative;
    z-index: 5;
}

.article-category-pill {
    display: inline-block;
    background-color: var(--accent-color);
    color: #fff;
    padding: 6px 24px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.article-meta-bar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
}

.article-meta-bar span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.article-meta-bar i {
    color: var(--accent-color);
}

.article-hero-image {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 40px;
    position: relative;
}

.article-hero-image img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.article-body-text {
    font-family: var(--font-body);
    font-size: 1.05rem; 
    line-height: 1.9; 
    color: #3b4252;
    padding: 0 10px;
    text-align: justify;
}

.article-body-text > p:first-of-type::first-letter {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-size: 3.8rem;
    line-height: 0.8;
    float: left;
    padding-top: 8px;
    padding-right: 12px;
    font-weight: 700;
}

.article-body-text p {
    margin-bottom: 30px;
}

.article-body-text h2, .article-body-text h3 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-weight: 700;
    margin-top: 50px;
    margin-bottom: 25px;
    line-height: 1.4;
}

.article-tags-box {
    margin-top: 60px;
    padding: 35px 20px;
    background: #f8fafc;
    border-radius: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    border: 1px solid var(--border-color);
}

.article-tag {
    background: var(--white);
    border: 1px solid #cbd5e1;
    color: #475569;
    padding: 8px 22px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.article-tag:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    box-shadow: 0 4px 12px rgba(27, 94, 32, 0.2);
}

@keyframes fadeUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .article-page-header { padding: 60px 20px; }
    .article-title-main { font-size: 2.3rem; }
    .article-meta-bar { flex-direction: column; gap: 15px; }
    .article-content-wrapper { margin-top: -20px; padding: 20px; }
    .article-body-text { font-size: 1.1rem; }
    .article-body-text > p:first-of-type::first-letter { font-size: 4rem; }
}
