html, body {
    font-family: 'Roboto', Arial, sans-serif;
    line-height: 1.6;
    padding: 0;
	margin: 0;
    margin-bottom: 0x;
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    background: url(../images/background.png) no-repeat center center fixed;
    background-size: cover;
    min-height: 100vh; /* Ensure it takes at least the full height of the viewport */
    /* overflow-x: hidden; */
}

main {
    flex: 1;
    padding: 20px;
    margin-bottom: 50px;
}

#background {
	background-color: #050404;
	display: block;
	height: 1440px;
	width: 50%;
	position: absolute;
	left: 0;
	top: 0;
}

header {
    background-color: transparent;
    color: white;
    padding: 20px 0;
    text-align: center;
}

nav ul {
    list-style-type: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

h1, h2 {
    text-align: center;
}

/*.hero {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    
    padding: 20px;
    margin: 10px;
    width: 30%;
    color: black;
    text-align: center;
    padding: 50px 20px;
}

.cta-button {
    background-color: hsl(0, 4%, 11%);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: hsl(0, 0%, 31%);
}*/

.content {
    display: flex;
    justify-content: center; /* Center content horizontally */
    align-items: center; /* Center content vertically, if needed */
    flex-direction: column; /* Align items in a column */
    min-height: 100vh; /* Adjust height as needed */
}

.container {
    margin: 0 auto;
    padding: 40px 0;
}

.menu-container {
    display: flex;
    justify-content: flex-start; /* Aligns items to the left */
    align-items: flex-start; /* Aligns items to the top */
    position: absolute; /* Use absolute positioning */
    top: 0; /* Aligns to the top */
    right: 0; /* Aligns to the left */
    margin: 10px; /* Optional: adds some spacing from the edges */
    z-index: 1000; /* Optional: ensures it's above other elements */
}

.home-card-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    height: 100px ;
    margin-bottom: 10%;
    top: 100px;
}


.image-button:hover .about-card {
    transform: scale(1.05); /* Slight zoom effect on hover */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Adds shadow effect on hover */
    cursor: pointer; /* Shows pointer cursor on hover */
}

/*
.about-card {
    background: url(../images/killa.png) no-repeat;
    display: block;
    width: 100%;
    height: 200px; /* Set the height of the cards 
    background-color: #f8f9fa; /* Background color for visibility 
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: center;
    padding-top: 50px; /* For vertical centering 
    font-size: 1.5rem; /* Increase the font size 
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth animation 
}
*/
/* Custom styles for cards with background images */
.about-card, .gallery-card, .contact-card {
    display: flex; /* Ensure text is centered */
    justify-content: center; /* Center text horizontally */
    align-items: center; /* Center text vertically */
    width: 500px; /* Custom width */
    height: 200px; /* Custom height */
    background-size: auto;
    background-position: center;
    border-radius: 10px;
    margin-bottom: 20px;
    color: white; /* Text color for contrast */
    font-size: 1.25rem; /* Adjusted font size */
    text-decoration: none; /* Remove underline from links */
    font-weight: bold; /* Make text bold */
}

.about-card {
    background-image: url('../images/killa.png'); /* Check if path is correct */
    background-color: #6c757d; /* Fallback color */
}

.gallery-card {
    background-image: url('../images/gallery.png'); /* Check if path is correct */
    background-color: #5a6268; /* Fallback color */
}

.contact-card {
    background-image: url('../images/tagilla.png'); /* Check if path is correct */
    background-color: #495057; /* Fallback color */
}

.about-card:hover, .gallery-card:hover, .contact-card:hover {
    filter: brightness(0.85); /* Slight darkening effect on hover */
}

        /* Optional: Customize button size without making them too large */
.btn-custom {
     width: auto;
     padding: 10px 20px;
     font-size: 1rem; /* Smaller font size for buttons */
}

/*
.gallery-card {
    background: url(../images/gallery.png) no-repeat;
    display: block;
    width: 100%;
    height: 200px; /* Set the height of the cards 
    background-color: #f8f9fa; /* Background color for visibility 
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: center;
    padding-top: 50px; /* For vertical centering 
    font-size: 1.5rem; /* Increase the font size 
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth animation 
}


.contact-card {
    background: url(../images/tagilla.psd) no-repeat;
    display: block;
    width: 100%;
    height: 200px; /* Set the height of the cards 
    background-color: #f8f9fa; /* Background color for visibility 
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: center;
    padding-top: 50px; /* For vertical centering 
    font-size: 1.5rem; /* Increase the font size 
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth animation 
}
*/

.card h3 {
    margin-top: 0;
}

/* Button Styles */
button {
    background: linear-gradient(135deg, hsl(0, 4%, 11%), hsl(0, 0%, 31%)); /* Gradient background */
    border: none;
    border-radius: 50px; /* Rounded edges */
    color: white;
    font-size: 18px;
    padding: 15px 30px;
    cursor: pointer;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    transition: all 0.3s ease; /* Smooth transition for hover effects */
    outline: none;
    letter-spacing: 1px; /* Slightly spaced text for a cleaner look */
}

button:hover {
    background: linear-gradient(135deg, hsl(0, 0%, 31%), hsl(0, 4%, 11%)); /* Reverse gradient on hover */
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2); /* Deeper shadow on hover */
    transform: translateY(-5px); /* Lift the button slightly on hover */
}

button:active {
    transform: translateY(2px); /* Slightly depress the button on click */
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); /* Less intense shadow on click */
}

nav ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    background-color: hsl(0, 4%, 11%); /* Custom button color */
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 30px; /* Rounded edges */
    transition: background-color 0.3s, transform 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Subtle shadow */
}

nav ul li a:hover {
    background-color: hsl(0, 0%, 31%); /* Darker shade on hover */
    transform: translateY(-3px); /* Lift effect on hover */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3); /* Deeper shadow on hover */
}

nav {
    text-align: center;
    margin-bottom: 20px;
}

nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #007bff;
}

nav a:hover {
    text-decoration: underline;
}

/*.logo {
    top: 10px;
    left: -50px;
    display: flex;
    position: absolute; /* Allows you to place it precisely 
    transform: translate(20%, -10%);
    width: 350px; /* Adjust size as needed 
    height: auto; /* Keep the aspect ratio intact 
    z-index: 1000; /* Ensures it's above other elements
}*/

/* Ensure logo and menu are positioned properly */
.logo-container {
    position: relative;
    display: inline-block;
    top: 30px;
    left: 20px;
    width: 250px;
}

#logo {
    top: 10px;
    left: -50px;
    cursor: pointer;
    width: 350px;
}

/* Hide dropdown menu by default */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%; /* Positions it just below the logo */
    left: 0;
    width: 200px; /* Adjust width as needed */
    background-color: rgba(0, 0, 0, 0.7); /* Slightly transparent background */
    border: none; /* Remove borders */
    padding: 10px 0;
    z-index: 1000; /* Make sure the menu appears above other elements */
}

.dropdown-menu ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.dropdown-menu ul li a {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    display: block;
}

.dropdown-menu ul li a:hover {
    background-color: rgba(255, 255, 255, 0.2); /* Transparent hover effect */
}

/* Show menu when hovering over the logo container */
.logo-container:hover .dropdown-menu {
    display: block;
}




.about-section .container {
    background-color: rgba(214, 205, 205, 0.8); /* Slightly transparent background for the container */
    padding: 40px;
    margin-top: 50px;
    border-radius: 15px;
    border: 2px solid rgba(0, 0, 0, 0.1); /* Subtle, transparent border */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
    text-align: center; /* Center content inside the container */
    max-width: 600px; /* Set a max width for the content */
    width: 100%; /* Make sure it adjusts for smaller screens */
}

.about-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #333; /* Darker color for the title */
}

.about-section p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #555; /* Slightly lighter color for the paragraph */
}

.about-section button {
    background: linear-gradient(135deg, hsl(0, 4%, 11%), hsl(0, 0%, 31%));
    border: none;
    border-radius: 50px;
    color: white;
    font-size: 18px;
    padding: 15px 30px;
    cursor: pointer;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin: 10px; /* Spacing between the buttons */
    outline: none;
}

.about-section button:hover {
    background: linear-gradient(135deg, hsl(0, 0%, 31%), hsl(0, 4%, 11%));
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}

.about-section button:active {
    transform: translateY(2px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

/* Gallery Styles */
.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 20px 0;
}

/* Modal Styles */
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent background */
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease; /* Smooth fade in/out */
}

.modal-content {
    background-color: rgba(214, 205, 205);
    padding: 40px;
    border-radius: 10px;
    width: 80%;
    max-width: 900px;
    height: 70%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow-y: auto;
    transform: scale(0.9); /* Initially smaller */
    transition: transform 0.4s ease; /* Smooth scaling */
}


.col-md-4 {
    max-width: 300px; /* Set a max width for each column */
}

.modal-content img {
    width: 250px; /* Increase the size of smaller icons */
    height: auto; /* Maintain aspect ratio */
}

/* Gallery styles */
.gallery img, .gallery video {
    width: 250px; /* Increase the size of smaller icons */
    margin: 10px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 10px;
}

/* When modal is active, fully show it */
.modal.show {
    display: flex; /* Flexbox to center content */
    opacity: 1;
}

.modal-content.show {
    transform: scale(1); /* Full size when active */
}

.modal img, .modal video {
    max-width: 90%;
    max-height: 90%;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
    color: #333;
}

.close-modal:hover {
    color: #ff5e5e; /* Change color on hover */
}

/* Form Styles */
form {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

input[type="text"], input[type="password"], input[type="file"] {
    padding: 10px;
    margin: 5px;
}

/* Button Styles */
button {
    background: linear-gradient(135deg, hsl(0, 4%, 11%), hsl(0, 0%, 31%)); /* Gradient background */
    border: none;
    border-radius: 50px;
    color: white;
    font-size: 18px;
    padding: 15px 30px;
    cursor: pointer;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    outline: none;
}

button:hover {
    background: linear-gradient(135deg, hsl(0, 0%, 31%), hsl(0, 4%, 11%));
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}

.upload-box {
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
    border: 2px solid #ddd;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.upload-box h1 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 20px;
}
.upload-box form {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.upload-box input[type="file"] {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 10px;
    width: 100%;
}
.upload-box button {
    padding: 10px 20px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.upload-box button:hover {
    background-color: #218838;
}
.upload-box img {
    display: none;
    max-width: 100%;
    margin-top: 10px;
    border-radius: 10px;
    border: 1px solid #ddd;
}

.delete-button {
    padding: 8px 15px;
    background-color: #dc3545; /* Bootstrap's red color */
    color: white;
    text-decoration: none; /* Remove underline */
    border-radius: 5px;
    border: none;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    transition: background-color 0.3s ease;
}

.delete-button:hover {
    background-color: #c82333; /* Darker red on hover */
}

/* General styling for the new container boxes */
.points-container {
    background: rgba(255, 255, 255, 0.50); /* Semi-transparent white */
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); /* Prominent shadow */
    width: 90%;
    max-width: 700px;
    margin: 20px auto;
    text-align: center;
}

/* Header and Titles */
.points-header, .points-subheader {
    color: #444;
}

.points-header {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 15px;
}

.points-subheader {
    font-size: 20px;
    font-weight: normal;
    margin-bottom: 10px;
}

/* Input and Select fields */
.points-input, .points-select {
    width: 100%;
    padding: 12px;
    margin: 12px 0;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    background: #fdfdfd;
    transition: border-color 0.3s ease;
}

.points-input:focus, .points-select:focus {
    border-color: #007bff; /* Blue highlight */
    outline: none;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

/* Button Styling */
.points-button {
    background: linear-gradient(135deg, hsl(0, 4%, 11%), hsl(0, 0%, 31%)); /* Gradient background */
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    padding: 12px 25px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
}

.points-button:hover {
    background: linear-gradient(135deg, hsl(0, 0%, 31%), hsl(0, 4%, 11%)); /* Reverse gradient on hover */
    transform: translateY(-2px);
}

.points-button:active {
    transform: translateY(0);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

/* Gallery */
.points-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.points-item-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    width: 220px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.points-item-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
}

.points-item-card img {
    width: 150px; /* Set a fixed width */
    height: 150px; /* Set a fixed height */
    object-fit: cover; /* Ensures the image scales nicely */
    border-radius: 10px;
    margin-bottom: 10px;
}

.points-item-card h3 {
    margin: 10px 0;
    font-size: 18px;
    color: #333;
    font-weight: bold;
}

/* Form-specific container */
.points-form-section {
    margin: 15px 0;
}

/* Success/error messages */
.points-alert {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
}

.points-alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.points-alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Styling for the table headers */
.history-table th {
    padding: 10px 15px;  /* Increase the space around the header text */
    text-align: left;    /* Align text to the left for better readability */
    background-color: #f4f4f4;  /* Optional: Add a background color for the header */
    border-bottom: 2px solid #ddd; /* Optional: Add a border to separate header from rows */
}

/* Optional: Add space between columns */
.history-table td {
    padding: 8px 12px;  /* Add padding to the data cells for spacing */
}
