body {
    font-family: "Times New Roman", Times, serif;
    background-color: #0a0a0a;
    color: gold;
    text-align: center;
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Ensures full height */
    margin: 0;
    padding-top: 50px;
}

header {
    position: fixed; /* Keeps the header fixed */
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background-color: #0a0a0a; /* Solid black */
    z-index: 1000; /* Ensures it's always on top */
    padding: 1px 0;
}

.content {
    flex: 1; /* Pushes the footer down */
    margin-top: 100px; /* Adds space below the fixed header */
}

.logo {
    position: fixed;
    top: 20px; /* Moves it slightly above the header */
    left: 20px; /* Aligns to the left */
    z-index: 1002; /* Ensures it's above the header */
}

.logo img {
    height: 80px;
}

nav {
    display: flex;
    justify-content: right;
    align-items: center;
    padding-right: 20px;
    background: rgba(0, 0, 0, 0);
}

.menu {
    list-style-type: none;
    display: flex;
    gap: 25px;
}

.menu li a {
    color: #ffd700;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
}

.menu li a:hover {
    color: #cfb000;
    text-shadow: 0px 0px 5px #ffcc00;
    transform: scale(1.2);
}

.menu a {
    color: gold;
    text-decoration: none;
    font-weight: bold;
    font-size: 36px;
    line-height: 10px;
}

/* Add spacing between Learn More and Gallery */
section {
    margin-top: 20px; /* Adjusted margin to ensure content starts below header */
    padding: 20px;
}

.gallery-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px; /* Adds spacing between image and buttons */
    width: 80%;
    margin: auto;
}

/* Limit Image Size */
.gallery-image {
    width: 500px;
    height: 300px;
    object-fit: cover;
    border: 3px solid gold;
    transition: opacity 0.5s ease-in-out;
}

/* Center Navigation Buttons */
.gallery-controls button {
    position: absolute;
    font-size: 24px;
    padding: 10px 20px;
    background: gold;
    color: black;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
    top: 50%;
    transform: translateY(-50%);
}

/* Move Buttons Closer to Image */
#prevBtn {
    left: 10px;
}

#nextBtn {
    right: 10px;
}

.watermark {
    position: fixed;
    left: 10px; /* Keep it on the right */
    bottom: 165px;
    opacity: 0.5; /* Reduce visibility */
    width: 500px; /* Adjust size */
    height: auto;
    z-index: -1; /* Push it behind the gallery */
    pointer-events: none; /* Prevent interaction */
}


/* Button Styling */
button {
    padding: 5px 8px;
    font-size: 18px;
    background: gold;
    color: black;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

button:hover {
    background: #ffcc00;
    transform: scale(1.05);
}

/* Footer */
footer {
    background: rgb(0, 0, 0);
    color: gold;
    padding: 10px;
    position: relative;
    bottom: 0;
    width: 100%;
    text-align: left;
    padding-left: 30px;
}

html, body {
    overflow-x: hidden; /* Prevent horizontal scroll */
    overflow-y: auto; /* Enable vertical scrolling */
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px; /* Adjust width */
    border-radius: 10px; /* Make the edges more rounded */
}

/* Scrollbar Track */
::-webkit-scrollbar-track {
    background: black; /* Matches the site theme */
    border-radius: 10px;
}

/* Scrollbar Thumb */
::-webkit-scrollbar-thumb {
    background: gold; /* Gold color */
    border-radius: 10px;
    transition: 0.3s ease-in-out;
}

::-webkit-scrollbar-thumb:hover {
    background: #ffd700; /* Brighter gold on hover */
}

@media (max-width: 768px) {
    .gallery-container {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        overflow: hidden; /* Prevents unintended scrolling */
    }

    .gallery-image {
    width: 330px; /* Ensure consistent size */
    height: 300px;
    object-fit: cover;
    border: 5px solid gold; /* Adjust thickness */
    border-radius: 15px; /* Make edges slightly rounded */
    transition: 0.3s ease-in-out; /* Smooth effect */
}

    /* Hide navigation buttons on mobile */
    #prevBtn, #nextBtn {
        display: none;
    }
}

.intro-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80%; /* Adjust width */
    margin: auto;
    padding: 40px; /* Adjustable padding */
    min-height: 300px; /* Set an adjustable height */
}

/* Adjust spacing from top */
.intro-section {
    margin-top: 70px; /* Modify to control distance from the top */
}

/* Allow more control over paragraph spacing */
.intro-section p {
    margin-bottom: 7px; /* Adjustable spacing between paragraphs */
    font-size: 18px; /* Maintain readability */
}

.social-links {
    display: flex;
    justify-content: left;
    gap: 15px; /* Space between icons */
    margin-top: 10px;
}

.social-links a img {
    width: 40px; /* Adjust size */
    height: auto;
    transition: 0.3s ease-in-out;
}

.social-links a:hover img {
    transform: scale(1.1); /* Slight enlargement on hover */
}

.hidden {
    display: none;
    
}
ul ul h2 {
    color: gold; /* Heading remains gold */
    text-align: center;
    padding-right:40px;
    
}

.left-align {
    text-align: center; /* Aligns text to the left */
    margin-bottom: 15px; /* Adds spacing between paragraphs */
    line-height: 1.6; /* Improves readability */
}

.about-combafit {
    width: 60%; /* Adjusts section width */
    margin: 30px auto; /* Centers the section */
    padding: 20px; /* Adds internal spacing */
}

.watermark-right {
    position: fixed;
    right: 30px; /* Align to the right */
    bottom: 165px; /* Same height as the first watermark */
    opacity: 0.2; /* Reduce visibility */
    width: 100px; /* Adjust size */
    height: auto;
    z-index: -1; /* Push it behind the gallery */
    pointer-events: none; /* Prevent interaction */
}

h1 {
    color: gold; /* Keep the heading color unchanged */
    text-align: left;
}

h2 {
    color: gold; /* Heading remains gold */
    text-align: left;
}

p {
    color: #cfb000; /* Off-gold for subtext */
    line-height: 1.0; /* Improves readability */
    text-align: left;
}
.content {
    width: 60%; /* Ensures uniform width */
    margin: auto; /* Centers the section */
    margin-right: 30%;
    padding: 20px; /* Adds spacing */
}

@media (max-width: 768px) {
    .content {
        width: 95%;
        margin: auto;
        padding: 15px;
    }

    h1, h2 {
        font-size: 22px; /* Adjust heading size */
    }

    p {
        font-size: 16px; /* Improve readability */
        line-height: 1.6;
    }

    .menu {
        text-align: center;
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .watermark {
        display: none;
    }
}
