* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #0f0f10;
    color: #ffffff;
    line-height: 1.6;
}

img {
    width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* Header */
.site-header {
    background-color: #111111;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

.logo-box h1 {
    font-size: 24px;
}

.small-label {
    color: #d4af37;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 22px;
}

.nav-links a {
    color: white;
    font-size: 15px;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #d4af37;
}

.menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background-color: #181818;
    padding: 10px 5%;
}

.mobile-menu a {
    color: white;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Hero */
.hero {
    padding: 80px 0;
    background:
            radial-gradient(circle at top, rgba(212,175,55,0.15), transparent 30%),
            radial-gradient(circle at bottom right, rgba(180,30,30,0.15), transparent 25%),
            #0f0f10;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

.tag,
.section-label {
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    margin-bottom: 12px;
}

.hero-text h2,
.section h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 18px;
}

.hero-text p,
.section-text,
.section p {
    color: rgba(255,255,255,0.8);
}

.hero-buttons {
    margin-top: 24px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 20px;
    border-radius: 10px;
    display: inline-block;
    font-weight: bold;
    transition: 0.3s;
}

.btn-gold {
    background-color: #d4af37;
    color: #111111;
}

.btn-gold:hover {
    background-color: #e5c75a;
}

.btn-dark {
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
}

.btn-dark:hover,
.btn-outline:hover {
    border-color: #d4af37;
    color: #d4af37;
}

.btn-outline {
    background: transparent;
    color: #d4af37;
    border: 1px solid rgba(212,175,55,0.5);
}

.hero-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.info-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 24px;
    border-radius: 18px;
}

.info-card h3 {
    margin-bottom: 10px;
}

.wide-card {
    grid-column: 1 / -1;
    background: linear-gradient(to right, rgba(180,30,30,0.15), rgba(212,175,55,0.15));
}

/* Sections */
.section {
    padding: 70px 0;
}

.alt-bg {
    background-color: rgba(255,255,255,0.03);
}

.alt-gradient {
    background: linear-gradient(to right, rgba(212,175,55,0.1), rgba(180,30,30,0.08));
}

.two-column {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: start;
}

.side-box,
.contact-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 24px;
    border-radius: 18px;
}

.side-box h3 {
    margin-bottom: 15px;
}

.side-box ul li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Cards */
.card-grid {
    margin-top: 28px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.event-card {
    background-color: #171717;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 24px;
}

.event-card h3 {
    margin: 10px 0 14px;
}

.event-date {
    color: #d4af37;
    font-size: 14px;
    font-weight: bold;
}

.extra-details {
    display: none;
    margin-top: 15px;
    color: rgba(255,255,255,0.8);
}

/* Galleries */
.gallery-grid {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.three-col {
    grid-template-columns: repeat(3, 1fr);
}

/*.gallery-card {*/
/*    background: rgba(255,255,255,0.05);*/
/*    border: 1px solid rgba(255,255,255,0.08);*/
/*    border-radius: 18px;*/
/*    overflow: hidden;*/
/*    transition: transform 0.3s;*/
/*}*/

.video-wrapper {
    width: 100%;
    aspect-ratio: 9 / 16;
    overflow: hidden;
    border-radius: 12px;
    background: #000;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    background: #000;
}

.gallery-card:hover {
    transform: translateY(-4px);
}



.gallery-info {
    padding: 16px;
}

.photo-grid {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.photo-grid img {
    border-radius: 16px;
    height: 220px;
    object-fit: cover;
    border: 1px solid rgba(255,255,255,0.08);
}

/* Features */
.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.feature-box {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 18px;
    border-radius: 14px;
}

/* Contact */
.contact-box {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 35px;
}

.full-btn {
    display: block;
    text-align: center;
    margin-top: 18px;
}

/* Footer */
.site-footer {
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    padding: 24px 0;
    color: rgb(255 255 255);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-grid,
    .two-column,
    .contact-box,
    .card-grid,
    .gallery-grid,
    .three-col,
    .photo-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-text h2,
    .section h2 {
        font-size: 34px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .menu-btn {
        display: block;
    }

    .hero-grid,
    .two-column,
    .contact-box,
    .card-grid,
    .gallery-grid,
    .three-col,
    .photo-grid,
    .feature-grid,
    .hero-cards {
        grid-template-columns: 1fr;
    }

    .hero-text h2,
    .section h2 {
        font-size: 28px;
    }

    .header-flex {
        gap: 15px;
    }
}

.category-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 28px 0;
}

.category-btn {
    padding: 10px 16px;
    border: 1px solid rgba(212,175,55,0.35);
    background: transparent;
    color: #d4af37;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.25s;
}

.category-btn:hover,
.category-btn.active {
    background: #d4af37;
    color: #111111;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #181818;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 8px 0;
    list-style: none;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 14px;
    white-space: nowrap;
}

.dropdown-menu li a:hover {
    background: rgba(255,255,255,0.05);
    color: #d4af37;
}

.lightbox {
    display: none;
    position: fixed;
    z-index: 3000;
    inset: 0;
    background: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
    padding: 30px;
}

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 28px;
    font-size: 42px;
    color: white;
    cursor: pointer;
}

.folder-name {
    margin-top: 8px;
    color: #d4af37;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.empty-message {
    padding: 25px;
    border: 1px dashed rgba(255,255,255,0.2);
    border-radius: 12px;
    color: rgba(255,255,255,0.7);
}

.logo-box h1 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
}

.logo-box h1 img {
    width: 38px;
    height: 38px;
    object-fit: contain;
}




.image-download-btn {
    position: absolute;
    right: 12px;
    bottom: 12px;
    background: rgba(15, 15, 16, 0.9);
}



.gallery-card img {
    width: 100%;
    display: block;
}

.image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background: #111;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px;
    aspect-ratio: 3 / 4;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.download-btn {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(15, 15, 16, 0.85);
    color: #d4af37;
    border: 1px solid rgba(212,175,55,0.4);
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 13px;
    text-decoration: none;
    transition: 0.2s;
}

.download-btn:hover {
    background: #d4af37;
    color: #111;
}

.rotate-image {
    transform: rotate(90deg);
    transform-origin: center;
    max-width: 90%;
    max-height: 90%;
}


.footer-banner {
    background: url("images/flag.jpg") center/cover no-repeat;
    height: 220px; /* 👈 control size here */
    position: relative;
}

/* dark overlay for readability */
.footer-banner {
    position: relative;
    height: 220px; /* control section height */

    background: url("images/flag.jpg") center no-repeat;
    background-size: contain; /* 👈 key fix */
    background-color: #0b0b0c; /* fills empty space */
}

.footer-banner-overlay p {
    color: white;
    font-size: 18px;
    letter-spacing: 2px;
}

.contact-card i {
    margin-right: 8px;
    color: #d4af37;
}

.contact-card p {
    margin-bottom: 12px;
}

.contact-card a {
    color: #d4af37;
}

.contact-card a:hover {
    color: #1936dc; /* gold */
}

.petitions-section {
    background: #111;
    color: white;
    padding: 60px 20px;
}

.petitions-section h2 {
    margin-bottom: 10px;
}

.petition-dropdown {
    margin: 20px 0 30px;
    padding: 10px 14px;
    font-size: 16px;
    border: 1px solid #444;
    background: #000;
    color: white;
    border-radius: 6px;
}

.petition-results {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.petition-card {
    background: #1a1a1a;
    border: 1px solid #333;
    padding: 20px;
    border-radius: 8px;
}

.petition-card h3 {
    margin-bottom: 10px;
    color: #fff;
}

.petition-card p {
    margin-bottom: 12px;
    color: #ddd;
}

.petition-card a {
    color: #fff;
    text-decoration: underline;
}

.petition-card a:hover {
    color: #c9a227;
}

.petition-card {
    background: #111;
    border: 1px solid #2d2d2d;
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 24px;
}

.petition-image {
    width: 100%;
    max-width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
    margin-bottom: 18px;
}

.petition-card h3 {
    margin-bottom: 12px;
}

.petition-card p {
    margin-bottom: 16px;
    line-height: 1.6;
}

.fa-envelope {
    color: #c9a227; /* gold */
    margin-right: 10px;
}

.video-wrapper video {
    width: 100%;
    max-height: 500px;
    border-radius: 10px;
    background: black;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr; /* text bigger, image smaller */
    align-items: center;
    gap: 40px;
}

.hero-image img {
    width: 100%;
    max-width: 500px; /* prevents stretching */
    height: auto;
    border-radius: 12px;
}

@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-image {
        order: -1; /* image on top on mobile */
    }
}

.hero-image {
    position: relative;
}

.hero-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to left, rgba(0,0,0,0.7), transparent);
    border-radius: 12px;
}