/* main.css */
:root {
    --primary: #1a365d;
    --secondary: #b8860b;
    --accent: #2d3748;
    --light: #f8f9fa;
    --dark: #2d3748;
    --text: #333333;
    --text-light: #6c757d;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.container-fluid {
    width: 100%;
    padding: 0;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    background-color: var(--secondary);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

    .btn:hover {
        background-color: #a0780a;
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--secondary);
    color: var(--secondary);
}

    .btn-outline:hover {
        background-color: var(--secondary);
        color: var(--white);
    }

.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

    .section-title:after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background-color: var(--secondary);
    }

/* Responsive Styles */
@media (max-width: 992px) {
    .slide-content {
        width: 70%;
    }

    .about-content {
        flex-direction: column;
    }

    .about-text, .about-image {
        width: 100%;
    }

    .top_1ri {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 60vh;
    }

    .slide-content {
        width: 90%;
        margin-left: 5%;
        padding: 20px;
    }

        .slide-content h2 {
            font-size: 1.8rem;
        }

    .quick-links-container {
        flex-direction: column;
    }

    .event-item {
        flex-direction: column;
    }

    .event-date {
        flex-direction: row;
        justify-content: center;
        gap: 10px;
        min-width: auto;
    }

    .top_1 {
        flex-direction: column;
        text-align: center;
    }

    .top_1l, .top_1r {
        width: 100%;
    }

    .top_1ri {
        flex-direction: column;
        align-items: center;
    }

    .top_1ril {
        margin: 10px 0;
    }
}

@media (max-width: 576px) {
    .section {
        padding: 50px 0;
    }

    .carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

        .carousel-arrow.prev {
            left: 10px;
        }

        .carousel-arrow.next {
            right: 10px;
        }
}
/* topbar.css */
/* ==============================
   TOP CONTACT BAR (FINAL POLISHED)
   ============================== */
/* topbar base */
#top {
    background: var(--top-bg);
    color: var(--white);
    font-family: "Segoe UI", Roboto, Arial, sans-serif;
}

/* main inner row - single horizontal line always */
.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between; /* time left, contacts right on large screens */
    gap: 24px;
    padding: 10px 28px;
    white-space: nowrap; /* prevent wrapping */
    overflow-x: auto; /* allow horizontal scroll on small screens */
    -webkit-overflow-scrolling: touch;
    min-width: 100%; /* keep it full width */
    box-sizing: border-box;
}

/* left time block */
.time-block {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
}

.icon-col_oran {
    color: var(--accent);
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.live-text {
    font-weight: 700;
    font-size: 16px;
    color: var(--white);
}

/* contacts group (right side on large screens) */
.contacts {
    display: inline-flex;
    align-items: center;
    gap: 48px; /* spacing between blocks on big screen */
    flex: 0 0 auto;
}

/* each contact column */
.contact-col {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
}

/* contact text */
.contact-text .small {
    font-size: 14px;
    opacity: 0.92;
    line-height: 1;
}

.contact-text .value {
    display: block;
    color: var(--white);
    font-weight: 700;
    text-decoration: none;
    font-size: 15px;
}

    .contact-text .value:hover {
        color: var(--accent);
        text-decoration: underline;
    }

/* ensure long values don't push layout too much: truncate with ellipsis when needed */
.contact-text .value {
    max-width: 240px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: inline-block;
    vertical-align: middle;
}

/* small-screen behavior: keep single-line but compress spacing and fonts */
@media (max-width: 768px) {
    .topbar-inner {
        padding: 8px 12px;
        gap: 12px;
    }

    .contacts {
        gap: 18px;
    }

    .live-text {
        font-size: 14px;
    }

    .icon-col_oran {
        font-size: 16px;
    }

    .contact-text .small {
        font-size: 12px;
    }

    .contact-text .value {
        font-size: 13px;
        max-width: 130px;
    }
}

/* extra small devices: tighter compression but still one-line scrollable */
@media (max-width: 420px) {
    .topbar-inner {
        gap: 8px;
        padding: 6px 10px;
    }

    .contacts {
        gap: 12px;
    }

    .live-text {
        font-size: 12px;
    }

    .contact-text .value {
        max-width: 100px;
        font-size: 12px;
    }
}

/* very large screens: slightly increase spacing to match screenshot */
@media (min-width: 1400px) {
    .contacts {
        gap: 60px;
    }

    .contact-text .value {
        max-width: 320px;
        font-size: 16px;
    }

    .live-text {
        font-size: 18px;
    }
}

/* remove scrollbar visual clutter on desktop (optional) */
.topbar-inner::-webkit-scrollbar {
    height: 6px;
}

.topbar-inner::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.08);
    border-radius: 6px;
}
/* header.css */
/* ==============================
   HEADER STYLES (UPDATED)
   ============================== */

/* footer.css */
/* ==============================
   FOOTER STYLES
   ============================== */
footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 70px 0 20px;
}

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

.footer-col h3 {
    color: var(--white);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

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

.footer-col p {
    margin-bottom: 20px;
    color: #b0b7c3;
}

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

.footer-links a {
    color: #b0b7c3;
    transition: var(--transition);
}

    .footer-links a:hover {
        color: var(--secondary);
        padding-left: 5px;
    }

.footer-contact li {
    display: flex;
    margin-bottom: 15px;
    color: #b0b7c3;
}

.footer-contact i {
    margin-right: 15px;
    color: var(--secondary);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

    .social-links a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        transition: var(--transition);
    }

        .social-links a:hover {
            background-color: var(--secondary);
            transform: translateY(-3px);
        }

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #b0b7c3;
    font-size: 0.9rem;
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}