/* ========== Global Styles ========== */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: url(../images/logo.png) center center fixed;
    background-size: cover;
    color: #d19a66;
}

/* === General Header Styling === */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(20, 20, 20, 0.9); /* Semi-transparent */
    backdrop-filter: blur(5px); /* Blur effect */
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-bottom: 2px solid #ff9800;
}

/* === LOGO Styling (Align Left) === */
.logo img {
    height: 50px;
}

/* === NAVIGATION CONTAINER === */
.nav-container {
    width: 95%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* === NAVIGATION MENU (Align Right) === */
.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin-left: auto;
}

.nav-links li {
    position: relative;
}

/* === Navigation Links === */
.nav-links a {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 15px;
    display: inline-block;
    transition: 0.3s ease-in-out;
}

.nav-links a:hover {
    color: #ff9800;
    text-shadow: 0 0 5px #ff9800;
}

/* === DROPDOWN MENU === */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: rgba(20, 20, 20, 0.95);
    border: 1px solid #ff9800;
    min-width: 180px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

.dropdown-content a {
    color: white;
    padding: 10px 15px;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {
    background: #ff9800;
    color: black;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* === Patreon Button === */
.patreon-btn {
    background: #ff5500;
    padding: 8px 12px;
    border-radius: 5px;
    color: white !important;
    font-weight: bold;
}

.patreon-btn:hover {
    background: #ff7700;
}

/* === Mobile Menu Toggle === */
.menu-toggle {
    display: none;
    font-size: 28px;
    color: #fff;
    cursor: pointer;
}

/* === Responsive Design for Mobile === */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        background: rgba(20, 20, 20, 0.9);
        top: 60px;
        right: 0;
        width: 200px;
        padding: 15px;
        border-radius: 5px;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }
}



/* ========== Footer Styles ========== */
footer {
    text-align: center;
    padding: 20px;
    background: #222;
    color: #fff;
    position: relative;
    bottom: 0;
    width: 100%;
}

footer p {
    margin: 0;
}

/* ========== Carousel Fix for Bootstrap ========== */
.carousel-item {
    display: block !important;
}

.carousel-item img {
    width: 100%;
    border-radius: 5px;
}

/* ========== Sections & Content ========== */
.section {
    width: 100%; /* Ensures sections take up the full width of the viewport */
    max-width: 100%; /* Overrides max-width limits */
    margin: 0; /* Removes spacing between sections */
    padding: 60px 0; /* Keeps consistent vertical spacing */
    text-align: center;
    background-color: rgba(0, 0, 0, 0.85); /* Dark background */
    color: white;
    border-radius: 0; /* Removes rounded edges so they connect */
    box-shadow: none; /* Removes shadow to prevent separation */
}

/* Section Titles */
.section h2 {
    font-size: 28px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 15px;
    border-bottom: 2px solid #ff9800; /* Orange underline */
    display: inline-block;
    margin-bottom: 20px;
}

/* Ensure smooth transition between sections */
.section + .section {
    border-top: 5px solid rgba(255, 255, 255, 0.1); /* Subtle separator */
}

/* Container inside sections to center content */
.section-content {
    max-width: 1100px; /* Keep content at a readable width */
    margin: 0 auto; /* Centers the content */
    padding: 20px;
}

/* ========== HERO SECTION STYLING ========== */
.hero {
    width: 100%; /* Full width */
    height: 90vh; /* Taller for more impact */
    background: url('assets/images/main-banner.png') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
    color: white;
}

/* Dark overlay to enhance text readability */
.hero-overlay {
    background: rgba(0, 0, 0, 0.7); /* Dark transparent overlay */
    padding: 50px;
    border-radius: 10px;
}

/* Hero Section Title */
.hero h1 {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Subtitle */
.hero p {
    font-size: 20px;
    margin-bottom: 20px;
}

/* Buttons Container */
.hero-buttons {
    margin-top: 20px;
}

/* General Button Styling */
.hero-btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 18px;
    font-weight: bold;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: 0.3s ease-in-out;
    margin: 10px;
}

/* Facebook Button */
.fb-btn {
    background: #1877f2; /* Facebook Blue */
}

.fb-btn:hover {
    background: #145db2;
}

/* Patreon Button */
.patreon-btn {
    background: #ff424d; /* Patreon Red */
}

.patreon-btn:hover {
    background: #d6313c;
}


/* ========== Buttons ========== */
.btn {
    display: inline-block;
    padding: 10px 20px;
    background: #ff6600;
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    border: none;
    cursor: pointer;
}

/* Alternating Background Colors */
.future-projects {
    background-color: rgba(34, 34, 34, 0.9); /* Dark Gray */
}

.current-projects {
    background-color: rgba(20, 20, 20, 0.9); /* Slightly Darker */
}

.btn:hover {
    background: #cc5200;
}

/* ========== Facebook Section ========== */
.facebook-section {
    padding: 50px;
    background: #f5f5f5;
    text-align: center;
}

.facebook-posts-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.facebook-post {
    background: white;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    width: 250px;
    text-align: center;
}

.fb-message {
    font-size: 14px;
    margin-bottom: 10px;
}

.fb-image-container {
    max-width: 100%;
    overflow: hidden;
    border-radius: 5px;
}

.fb-post-image {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.fb-footer {
    margin-top: 10px;
    font-weight: bold;
}

.no-content {
    font-style: italic;
    color: gray;
}

.fb-post-link {
    text-decoration: none;
    font-weight: bold;
    color: #007bff;
}

.shared-post-notice {
    font-size: 14px;
    font-weight: bold;
    color: #ff9800;
    margin-bottom: 5px;
}

.fb-shared-images {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: center;
}

.fb-shared-images img {
    width: 100px;
    height: auto;
    border-radius: 5px;
}

/* ========== Utility Classes ========== */
.text-center {
    text-align: center;
}

.hidden {
    display: none;
}

/* Gallery Container */
.gallery-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding: 15px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1); /* Subtle overlay */
}

/* Main Image Styling */
.main-image img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 5px;
    transition: opacity 0.3s ease-in-out;
}

/* Navigation Arrows */
.gallery-prev, .gallery-next {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 20px;
    border-radius: 5px;
    transition: background 0.3s;
}

/* Ensure gallery images fit well */
.gallery-img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.gallery-prev:hover, .gallery-next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Thumbnail Container */
.thumbnail-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
    padding-top: 10px;
}

/* Thumbnails */
.thumbnail {
    width: 100px;
    height: 70px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.2s ease-in-out, border 0.2s ease-in-out;
}

.thumbnail:hover {
    transform: scale(1.1);
}

/* Active Thumbnail Highlight */
.active-thumbnail {
    border: 3px solid #ff9800;
    transform: scale(1.15);
}

