* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.marquee-container {
    background: rgb(198, 176, 105);
    padding: 15px 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: inline-block;
    animation: marquee 25s linear infinite;
}

.marquee-content span {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 14px;
    color: #0a0a0a;
    padding: 0 50px;
}

/* Keyframes for the scroll animation */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    min-height: 100vh;
}

.hero {
    background-image: url(back.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    height: 751px;
    background-color: rgba(0, 0, 0, 0.7);
    background-blend-mode: overlay;
}

header {
    width: 100%;
    position: relative;
    padding-top: 0;
    margin-top: 0;
}

.prehea {
    display: flex;
    justify-content: space-between;
    padding: 10px 130px;
    align-items: center;
}

.prehea .sm a {
    background-color: rgb(198, 176, 105);
    border: 0.5px solid transparent;
    padding: 5px 10px;
    border-radius: 5px;
    color: white;
    font-size: 12px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.5s ease;
    margin-left: 5px;
}

.prehea .sm a:hover,
.prehea .sm a.active1 {
    border: 0.5px solid white;
    background-color: transparent;
    transform: scale(1.05);
    text-align: center;
}

.active1 {
    border: 0.5px solid white;
    background-color: transparent;
}

.active1:hover {
    transform: scale(1.05);
}

.elements a {
    padding-top: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 12px;
    color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-decoration: none;
}

.hr {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 5px;
    height: 0.1px;
}

.hr hr {
    color: rgba(255, 255, 255, 0.354);
}

.l {
    width: 85%;
}

.header {
    padding: 5px 120px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo img {
    width: 70px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 5px;
}

a.shum {
    height: 43px;
    width: 200px;
    background-color: rgb(198, 176, 105);
    color: white;
    border: 1px solid white;
}

a.shum:hover {
    background-color: white;
    border: 1px solid black;
    color: black;
}

.shum1 {
    margin: 40px;
    width: 90%;
    display: grid;
    justify-self: center;
    width: 200px;
    text-align: center;
}

a.shum1 {
    text-decoration: none;
    color: rgb(198, 176, 105);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
    background-color: white;
    display: inline-block;
}

a.shum1:hover {
    background-color: transparent;
    border: 1px solid white;
    color: white;
}

.shum {
    display: inline-block;
    text-decoration: none;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    background-color: rgb(198, 176, 105);
    transition: all 0.3s ease;
    text-align: center;
}

.shum:hover {
    background-color: transparent;
    color: black;
    border: 1px solid black;
}

.nav-menu a {
    text-decoration: none;
    color: white;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: rgb(198, 176, 105);
}

.menu-toggle {
    display: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
    z-index: 1001;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    background-color: transparent;
    color: white;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s;
}

.dropbtn:hover {
    color: rgb(198, 176, 105);
}

.dropbtn i {
    font-size: 12px;
    transition: transform 0.3s;
}

.dropdown.open .dropbtn i {
    transform: rotate(180deg);
}

.dropdown-content {
    width: 200px;
    background-color: rgb(198, 176, 105);
    position: absolute;
    top: 100%;
    left: 0;
    visibility: hidden;
    opacity: 0;
    transition: 0.2s all ease;
    border-radius: 5px;
    z-index: 100;
    display: flex;
    flex-direction: column;
}

.dropdown-content a {
    display: block;
    padding: 10px 15px;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background-color: rgb(165, 145, 70);
    border-radius: 5px;
    color: white;
}

.dropdown:hover .dropdown-content {
    visibility: visible;
    opacity: 1;
}

.teksti {
    width: 100%;
    min-height: 551px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.teksti h1 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 50px;
    padding-bottom: 20px;
}

.teksti p {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 15px;
    width: 50%;
}

.teksti button {
    margin-top: 30px;
    width: 200px;
    height: 45px;
    border: none;
    background-color: rgb(198, 176, 105);
    color: white;
    font-size: 13px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    cursor: pointer;
    border-radius: 10px;
    transition: 0.3s;
    text-align: center;
}

.teksti button:hover {
    background-color: transparent;
    border: 1px solid white;
}

/* Rest of your existing styles... */
.space3 {
    width: 100%;
    height: 20px;
}

.sherb {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 60px 0;
}

.offering {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 60px 0;
}

.tekstiii {
    width: 85%;
    text-align: center;
}

.tekstiii h1 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 50px;
    padding-bottom: 20px;
}

.tekstiii p {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 15px;
    color: #777777;
}

.cards {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 30px;
    padding-top: 30px;
}

.card1,
.card2,
.card3 {
    width: 25%;
    height: auto;
    background-color: white;
    border: 0.5px solid #dcdcdc;
    border-radius: 5px;
    text-align: center;
    padding: 20px;
    transition: 0.3s;
}

.card1 h2,
.card2 h2,
.card3 h2 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 20px;
    padding: 15px;
}

.card1:hover,
.card2:hover,
.card3:hover {
    background-color: #04091e;
    border-color: #04091e;
    color: rgb(198, 176, 105);
    cursor: pointer;
}

.recents {
    padding-top: 50px;
    text-align: center;
    padding-bottom: 50px;

    h1 {
        font-size: 50px;
    }
}

.recents a {
    text-decoration: none;
    color: black;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 30px;
    padding-bottom: 20px;
}

.recents p {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 15px;
    color: #777777;
}

.gall {
    display: flex;
    justify-content: center;
    width: 100%;
    padding-bottom: 30px;
}

.gallery {
    width: 80%;
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 220px;
}

.gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.item1 {
    grid-column: span 2;
    grid-row: span 2;
}

.item2 {
    grid-column: span 1;
    grid-row: span 2;
}

.item3 {
    grid-column: span 1;
    grid-row: span 2;
}

.item4 {
    grid-column: span 2;
    grid-row: span 2;
}

.features {
    background-color: rgb(198, 176, 105);
    padding: 0px 0 30px;
}

.cards1 {
    width: 30%;
    height: auto;
    background-color: white;
    border: 0.5px solid #dcdcdc;
    border-radius: 15px;
    text-align: left;
    padding: 20px;
}

.cards1 h2 {
    font-size: 20px;
    padding-bottom: 10px;
}

.cards1 p {
    padding-left: 10px;
    font-size: 16.5px;
    padding: 0 15px;
    color: #777777;
}

.tekstii {
    width: 100%;
    height: 221px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.tekstii h1 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 50px;
    padding-bottom: 20px;
}

.tekstii p {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 15px;
    width: 50%;
}

.tekstii a {
    text-decoration: none;
    color: white;
}

.cards2 {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 30px;
    padding-top: 30px;
}

.space {
    width: 100%;
    height: 50px;
}

.religions {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 10px 0;

    h1 {
        font-size: 50px;
        margin-bottom: 20px;
    }
}


.religions p {
    width: 90%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 15px;
    color: #777777;
}


.cardss1 {
    width: 90%;
    height: auto;
    background-color: white;
    border: 0.5px solid #dcdcdc;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    transition: 0.3s;
}

.cardss1:hover {
    background-color: rgb(198, 176, 105);
    border-color: rgb(198, 176, 105);
    cursor: pointer;
}

.cardss1:hover p {
    color: white;
}

.artss {
    width: 100%;
    height: auto;
    background-color: rgb(198, 176, 105);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.textsssss {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding-bottom: 30px;
    width: 85%;
}

.textsssss h1 {
    color: white;
    font-size: 50px;
    padding-bottom: 20px;
    padding-top: 20px;
}

.textsssss a {
    text-decoration: none;
    color: rgb(255, 255, 255);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 30px;
    padding-bottom: 20px;
}

.textsssss p {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 15px;
    color: #ffffff;
}

.sports {
    width: 100%;
    height: auto;
    padding: 60px 0px;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.text2010 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding-bottom: 30px;
    width: 85%;

    h1 {
        font-size: 50px;
    }
}

.text2010 a {
    text-decoration: none;
    color: black;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 30px;
    padding-bottom: 20px;
    background-color: rgb(198, 176, 105);
    color: white;
    border: 1px solid white;
    font-size: 17px;
}

.text2010 a:hover {
    background-color: transparent;
    color: black;
    border: 1px solid black;
}

.text2010 p {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 15px;
    color: #777777;
}

.sports-table {
    margin-top: 30px;
    overflow-x: auto;
    width: 100%;
}

.sports-table h2 {
    color: black;
    margin-bottom: 15px;
}

.sports-table table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.sports-table th,
.sports-table td {
    padding: 12px 15px;
    border: 1px solid #ddd;
    text-align: left;
}

.sports-table th {
    background-color: rgb(198, 176, 105);
    color: #fff;
}

.sports-table tr:nth-child(even) {
    background-color: #f2f2f2;
}

.sports-table tr:hover {
    background-color: rgba(198, 176, 105, 0.573);
}

.prob {
    background-color: rgb(198, 176, 105);
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.problems {
    width: 90%;
    height: auto;
    padding: 30px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.problems a {
    text-decoration: none;
    color: #fff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 30px;
    padding-bottom: 40px;
}

.problems p {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 15px;
    color: #fff;
    padding-top: 10px;
    padding-bottom: 20px;
}

.qishtyde {
    border: none;
    border-radius: 5px;
    background-color: rgb(198, 176, 105);
    padding: 10px 20px;
    transition: 0.3s;
    cursor: pointer;
}

.qishtyde a {
    text-decoration: none;
    color: white;
    font-size: 14px;
}

.qishtyde:hover {
    background-color: transparent;
    border: rgb(198, 176, 105) solid 1px;
}

.qishtyde:hover a {
    color: rgb(198, 176, 105);
}

.footer {
    background-color: #04091e;
    color: white;
    padding-top: 40px;
}

.footer-container {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-col {
    flex: 1;
    min-width: 220px;
}

.footer-col h3 {
    color: rgb(198, 176, 105);
    margin-bottom: 15px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-col p,
.footer-col a {
    font-size: 14px;
    color: #cccccc;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-col a:hover {
    color: rgb(198, 176, 105);
}

.footer-socials a {
    display: inline-block;
    margin-right: 10px;
    font-size: 18px;
    color: white;
}

.footer-socials a:hover {
    color: rgb(198, 176, 105);
}

.footer-bottom {
    margin-top: 30px;
    padding: 15px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
    color: #aaaaaa;
}

.lexo {
    margin: 40px;
    width: 90%;
    display: grid;
    justify-self: center;
    width: 200px;
}

.lexo a {
    text-decoration: none;
    color: rgb(198, 176, 105);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
    background-color: white;
    display: inline-block;
}

.lexo a:hover {
    background-color: transparent;
    border: 1px solid white;
    color: white;
}

.religions-title {
    padding-bottom: 20px;
}

/* Ensure the nav menu doesn't cut off the glow particles */
.nav-menu {
    position: relative;
    overflow: visible !important;
}

/* === GLOWY LINK STYLES === */
.nav-link--glowy {
    position: relative;
    display: inline-flex;
    align-items: center;

    /* Text Color - Bright Cyan */
    color: #00fff2;
    text-decoration: none;

    padding: 10px 20px;
    font-weight: 600;
    border-radius: 8px;
    z-index: 1;

    /* Glow variables */
    --glow-color: rgba(0, 229, 204, 0.6);
    --accent: #00e5cc;
    --accent-bright: #00fff2;
}

/* 1. Outer Pulsing Glow */
.nav-link--glowy::before {
    content: '';
    position: absolute;
    inset: -4px -8px;
    background: radial-gradient(ellipse at center, var(--glow-color) 0%, transparent 70%);
    border-radius: 12px;
    opacity: 0.5;
    z-index: -2;
    animation: pulseGlow 2s ease-in-out infinite;
}

/* 2. Inner Background & Border Pulse */
.nav-link--glowy::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 229, 204, 0.1);
    border-radius: 8px;
    border: 1px solid var(--accent);
    z-index: -1;
    animation: borderPulse 2s ease-in-out infinite;
}

/* 3. Shimmer Effect */
.glowy-shimmer {
    position: absolute;
    inset: 0;
    border-radius: 8px;
    overflow: hidden;
    z-index: -1;
}

.glowy-shimmer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
    animation: shimmer 3s ease-in-out infinite;
}

/* 4. Floating Particles */
.glowy-particles {
    position: absolute;
    inset: -10px;
    pointer-events: none;
    z-index: -3;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-bright);
    border-radius: 50%;
    opacity: 0;
    animation: floatParticle 3s ease-in-out infinite;
    box-shadow: 0 0 6px var(--accent);
}

.particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    left: 30%;
    animation-delay: 0.5s;
}

.particle:nth-child(3) {
    left: 50%;
    animation-delay: 1s;
}

.particle:nth-child(4) {
    left: 70%;
    animation-delay: 1.5s;
}

.particle:nth-child(5) {
    left: 90%;
    animation-delay: 2s;
}

/* 5. Energy Ring on Hover */
.energy-ring {
    position: absolute;
    inset: -2px;
    border-radius: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-link--glowy:hover .energy-ring {
    opacity: 1;
    animation: energySpin 1.5s linear infinite;
    background: conic-gradient(from 0deg, transparent 0deg, var(--accent) 60deg, var(--accent-bright) 120deg, transparent 180deg);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    padding: 2px;
}

.nav-link--glowy:hover {
    color: #ffffff;
    text-shadow: 0 0 10px var(--accent-bright);
}

/* === KEYFRAMES === */
@keyframes pulseGlow {

    0%,
    100% {
        opacity: 0.4;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.05);
    }
}

@keyframes borderPulse {

    0%,
    100% {
        opacity: 0.6;
        border-color: var(--accent);
    }

    50% {
        opacity: 1;
        border-color: var(--accent-bright);
    }
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 200%;
    }
}

@keyframes floatParticle {

    0%,
    100% {
        opacity: 0;
        transform: translateY(0) scale(0.5);
    }

    50% {
        opacity: 1;
        transform: translateY(-15px) scale(1);
    }
}

@keyframes energySpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* ========================= */
/* RESPONSIVE DESIGN */
/* ========================= */

@media (max-width: 1024px) {

    .prehea {
        padding: 10px 40px;
    }

    .header {
        padding: 10px 40px;
    }

    .teksti p {
        width: 70%;
    }

    .cards,
    .cards2 {
        flex-wrap: wrap;
    }

    .card1,
    .card2,
    .card3,
    .cards1 {
        width: 45%;
    }

    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ========================= */
/* TABLET + MOBILE NAV */
/* ========================= */

@media (max-width: 900px) {

    .hero {
        height: auto;
        min-height: 100vh;
        padding-bottom: 40px;
    }

    .menu-toggle {
        display: block;
        font-size: 28px;
        color: white;
        z-index: 2000;
    }

    .header {
        position: relative;
        padding: 15px 20px;
        align-items: center;
    }

    .logo img {
        width: 60px;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 20px 20px;
        overflow-y: auto;
        transition: 0.3s ease;
        z-index: 1500;
        gap: 0;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu a,
    .dropbtn {
        width: 100%;
        color: #222;
        padding: 15px;
        text-align: left;
        border-bottom: 1px solid #eee;
    }

    .dropbtn {
        justify-content: space-between;
    }

    .dropdown {
        width: 100%;
    }

    .dropdown-content {
        position: static;
        width: 100%;
        visibility: visible;
        opacity: 1;
        display: none;
        background: #f5f5f5;
        box-shadow: none;
        border-radius: 0;
    }

    .dropdown.open .dropdown-content {
        display: flex;
        flex-direction: column;
    }

    .dropdown-content a {
        color: #555;
        padding-left: 30px;
    }

    .teksti {
        height: auto;
        min-height: auto;
        padding: 60px 20px 20px;
        justify-content: flex-start;
    }

    .teksti h1 {
        font-size: 40px;
    }

    .teksti p {
        width: 100%;
        font-size: 15px;
        line-height: 1.6;
    }
}

/* ========================= */
/* MOBILE */
/* ========================= */

@media (max-width: 768px) {
    .prehea {
        flex-direction: column;
        gap: 8px;
        padding: 8px 15px;
        text-align: center;
    }

    .elements {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hr {
        display: flex;
        justify-content: center;
        align-items: center;
        padding-top: 5px;
    }

    .l {
        width: 90%;
    }

    .header {
        padding: 12px 15px;
    }

    .logo img {
        width: 55px;
    }

    .teksti {
        padding-top: 40px;
        text-align: center;
        margin-top: 100px;
    }

    .teksti h1 {
        font-size: 32px;
    }

    .teksti p {
        font-size: 14px;
    }

    .teksti button {
        width: 180px;
        height: 42px;
    }

    .cards,
    .cards2 {
        flex-direction: column;
        align-items: center;
    }

    .card1,
    .card2,
    .card3,
    .cards1 {
        width: 90%;
    }

    .gallery {
        width: 90%;
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }

    .item1,
    .item2,
    .item3,
    .item4 {
        grid-column: span 1;
        grid-row: span 1;
    }

    .tekstii,
    .tekstiii,
    .textsssss,
    .text2010,
    .problems {
        width: 90%;
    }

    .tekstii h1,
    .tekstiii h1,
    .textsssss h1,
    .text2010 h1,
    .religions h1,
    .recents h1 {
        font-size: 32px;
    }

    .tekstii p,
    .tekstiii p,
    .textsssss p,
    .text2010 p,
    .religions p,
    .recents p,
    .problems p {
        width: 100%;
        font-size: 14px;
    }

    .sports-table {
        overflow-x: auto;
    }

    .sports-table table {
        min-width: 600px;
    }

    .footer-container {
        flex-direction: column;
        gap: 20px;
    }

    .footer-col {
        width: 100%;
    }
}

@media (max-width: 480px) {

    .logo img {
        width: 50px;
    }

    .menu-toggle {
        font-size: 24px;
    }

    .teksti h1 {
        font-size: 26px;
    }

    .tekstii h1,
    .tekstiii h1,
    .textsssss h1,
    .text2010 h1,
    .religions h1,
    .recents h1 {
        font-size: 26px;
    }

    .sports-table th,
    .sports-table td {
        padding: 8px;
        font-size: 13px;
    }

    .prehea .sm {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 5px;
    }

    .prehea .sm a {
        margin-left: 0;
    }
}

.footer {
    position: relative;
    background: black;
    color: white;
    padding: 10px 55px;
    overflow: hidden;
    border-top: 3px solid rgb(198, 176, 105);
}

/* Decorative glow */
.footer::before {
    content: "";
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 500px;
    background: black;
    pointer-events: none;
}

.footer-top {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 2;
}

.footer-top h2 {
    font-size: 58px;
    font-weight: 700;
    letter-spacing: 6px;
    margin-bottom: 15px;
    margin-top: 10px;
    color: white;
}

.footer-top p {
    color: #cfcfcf;
    font-size: 16px;
    letter-spacing: 2px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px;
    position: relative;
    z-index: 2;
}

.jes {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    gap: 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid rgb(198, 176, 105);
}

.jes img {
    width: 60px;
}

.footer-column h4 {
    color: rgb(198, 176, 105);
    font-size: 18px;
    letter-spacing: 2px;
    position: relative;
}


.footer-column h3 {
    color: rgb(198, 176, 105);
    margin-bottom: 25px;
    font-size: 18px;
    letter-spacing: 2px;
    position: relative;
}

.footer-column h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 40px;
    height: 2px;
    background: rgb(198, 176, 105);
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column a {
    text-decoration: none;
    color: #d4d4d4;
    margin-bottom: 15px;
    transition: .3s ease;
    width: fit-content;
}

.footer-column a:hover {
    color: rgb(198, 176, 105);
    transform: translateX(8px);
}

.footer-column a i {
    width: 32px;
    text-align: center;
    margin-right: 10px;
}

/* Contact section styling */
.footer-column.contact a {
    display: flex;
    align-items: center;
}

.footer-column.contact a i {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(198, 176, 105, .15);
    color: rgb(198, 176, 105);
    transition: .3s;
}

.footer-column.contact a:hover i {
    transform: rotate(8deg) scale(1.08);
}

/* Badge */
.footer-badge {
    margin: 70px auto 40px;
    width: fit-content;
    padding: 12px 24px;
    border: 1px solid rgba(198, 176, 105, .4);
    color: rgb(198, 176, 105);
    border-radius: 50px;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    margin-top: 20px;
    padding-top: 30px;
    text-align: center;
}

.footer-bottom span {
    color: #8a8a8a;
    font-size: 14px;
    letter-spacing: 1px;
}

/* Mobile */
@media(max-width:900px) {

    .footer {
        padding: 80px 25px 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .footer-column {
        align-items: center;
    }

    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-column a:hover {
        transform: none;
    }

    .footer-top h2 {
        font-size: 38px;
        letter-spacing: 3px;
    }

    .footer-top p {
        font-size: 14px;
    }
}