@font-face {
    font-family: 'Museo Slab';
    src: url('fonts/MuseoSlab-100.otf') format('opentype');
    font-weight: 100;
}

@font-face {
    font-family: 'Museo Slab';
    src: url('fonts/MuseoSlab-300.otf') format('opentype');
    font-weight: 300;
}

@font-face {
    font-family: 'Museo Slab';
    src: url('fonts/MuseoSlab-500.otf') format('opentype');
    font-weight: 500;
}

@font-face {
    font-family: 'Museo Slab';
    src: url('fonts/MuseoSlab-700.otf') format('opentype');
    font-weight: 700;
}

@font-face {
    font-family: 'Museo Slab';
    src: url('fonts/MuseoSlab-900.otf') format('opentype');
    font-weight: 900;
}


/* Global Styles */
 body, h1, h2, h3, h4, h5, h6, p, a, li {
    font-family: 'Museo Slab', serif !important;
}


    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: #333;
}

/* Header */
header {
    padding-bottom: 100px; /* Increases space below the logo & menu */
}

nav {
    margin-bottom: 100px; /* Adds space below the navigation */
}

header {
    background-color: white;
    padding: 20px;
    text-align: center;
    color: white;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Move Logo to the Left */
.logo-container {
    position: absolute;
    top: 5px;
    left: 20px;
}

.logo-container img {
    width: 400px; /* Adjust size */
    height: auto;
}

/* Header Title */
header h1 {
    flex: 1;
    text-align: center;
    font-size: 28px;
    color: white;
}

/* Navigation Menu */
nav {
    flex-grow: 1;
    text-align: right;
}
nav ul li a {
    text-decoration: none;
    padding: 10px 15px;
    color: white;
    background-color: green;
    border-radius: 5px;
    transition: all 0.3s ease;
}

nav ul li a:hover {
    background-color: darkgreen;
}

/* Make the active link red */
nav ul li a.active {
    background-color: red !important;
}


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

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

nav ul li a {
    color: white; /* White text */
    background-color: #004d00; /* Green background */
    padding: 8px 12px; /* Add some space around text */
    border-radius: 5px; /* Rounded corners */
    text-decoration: none; /* Remove underline */
}

nav ul li a:hover {
    color: #ff0000;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 50px;
    background-color: #f4f4f4;
}

.hero h2 {
    color: #ff0000;
    font-size: 24px;
}

.hero p {
    color: black;
    font-size: 18px;
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
    }

    .logo-container {
        position: static;
        margin-bottom: 10px;
    }

    header h1 {
        font-size: 24px;
    }

    nav ul {
        text-align: center;
    }

    nav ul li {
        display: block;
        margin: 5px 0;
    }
}
/* Gallery Grid Layout - Fixes Spacing */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px; /* Adds space between images */
    justify-items: center;
    padding: 20px; /* Adds space around the whole gallery */
}

/* Ensures all images are the same size */
.gallery-grid img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

}

/* Resize Gallery Images */
.gallery-grid img {
  /* Force all images to be the same size */
    width: 300px; /* Set a fixed width */
    height: 200px; /* Set a fixed height */
    object-fit: cover; /* Ensures images crop instead of stretching */
    border-radius: 8px; /* Optional: Smooth edges */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

}

/* Fix Image Sizes in Other Sections */
.container img {
    max-width: 250px;
    height: auto;
    display: block;
    margin: 0 auto;
}
nav ul li a:hover {
    background-color: #ff0000; /* Red background on hover */
    color: white; /* Keep text white */
}
#about {
    text-align: center;
    padding: 60px 20px;
    background-color: #f8f8f8; /* Light grey background */
}

#about h2 {
    font-size: 32px; /* Bigger heading */
    font-weight: 700;
    color: #333; /* Dark text */
    margin-bottom: 20px;
}

#about p {
    font-size: 20px; /* Increase text size */
    line-height: 1.8; /* Better spacing */
    color: #555; /* Slightly lighter text */
    max-width: 900px; /* Keep it readable */
    margin: 0 auto;
}

/* Fade-in effect */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Apply fade-in to all sections */
section {
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
}

section {
    padding: 80px 20px; /* Adds more spacing inside all sections */
}
nav ul li a {
    transition: all 0.3s ease;
}

nav ul li a:hover {
    transform: scale(1.1); /* Slightly bigger */
    color: #fff;
    background-color: #0b6623;
    border-radius: 5px;
    padding: 5px 10px;
}
/* Navigation Styles */
nav ul li a {
    text-decoration: none;
    padding: 10px 15px;
    color: white;
    background-color: green;
    border-radius: 5px;
    transition: all 0.3s ease;
}

nav ul li a:hover {
    background-color: darkgreen;
}

/* Active Link Styling - Changes the section in view to red */
nav ul li a.active {
    background-color: red !important;
    color: white !important;
}
/* Home Page Styling */
#home {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 90vh; /* Makes it full screen */
    background: url('your-background-image.jpg') no-repeat center center/cover;
    color: #333;
    padding: 20px;
}

.home-container {
    max-width: 800px;
}

#home h1 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 15px;
}

#home p {
    font-size: 18px;
    margin-bottom: 20px;
}

/* Call-To-Action Button */
.cta-button {
    display: inline-block;
    padding: 12px 25px;
    font-size: 18px;
    color: white;
    background-color: red;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.cta-button:hover {
    background-color: darkred;
}
.home-image {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
}
.home-image {
    max-width: 70%;  /* Adjusts size to 70% of the container */
    height: auto;  /* Maintains aspect ratio */
    margin-top: 30px; /* Adds space between text and image */
    margin-bottom: 30px; /* Adds space between image and next section */
    border-radius: 10px; /* Optional: Rounded corners */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2); /* Optional: Adds a soft shadow */
    display: block;
    margin-left: auto;
    margin-right: auto;
}
#home {
    height: 100vh; /* Full-screen height */
    background: url('images/storage.jpg') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding-top: 100px; /* Pushes content below the header */
}

/* Adjust text size for better visibility */
#home h1 {
    font-size: 40px;
    font-weight: bold;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
}

#home p {
    font-size: 20px;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
}





.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background: rgba(255, 255, 255, 0.7); /* Light background for readability */
    padding: 20px;
    border-radius: 10px;
}

.navbar {
    position: absolute;
    top: 80px; /* Move down */
    left: 20px; /* Move left */
}

/* Style for Hamburger Menu */
.hamburger-menu {
    display: none;
    font-size: 30px;
    cursor: pointer;
    position: absolute;
    top: 20px;
    left: 20px;
}

/* Responsive Navigation */
@media screen and (max-width: 768px) {
    .navbar {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        background: white;
        width: 100%;
        padding: 10px 0;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    }

   }   @media screen and (max-width: 768px) {
    .navbar ul {
        padding: 0;
        text-align: center;
    }
}@media screen and (max-width: 768px) {
    .navbar ul {
        padding: 0;
        text-align: center;
    }

    .navbar ul li {
        display: block !important;
        margin-bottom: 20px !important; /* Ensures spacing between buttons */
    }

    .navbar ul li a {
        display: inline-block !important;
        padding: 12px 20px !important;
        background: green !important;
        color: white !important;
        text-decoration: none !important;
        border-radius: 5px !important;
        width: auto !important;
    }
}

    @media screen and (max-width: 768px) {
    .navbar ul {
        padding: 0;
        text-align: center;
    }

    /* 🔎 TEST: Add border to see button area */
    .navbar ul li {
        display: block !important;
        margin-bottom: 20px !important;
        border: 2px solid red !important; /* Test border */
    }

    .navbar ul li a {
        display: inline-block !important;
        padding: 12px 20px !important;
        background: green !important;
        color: white !important;
        text-decoration: none !important;
        border-radius: 5px !important;
        width: auto !important;
    }
}

    

    .navbar ul li a {
        display: inline-block;
        padding: 12px 20px;
        background: green;
        color: white;
        text-decoration: none;
        border-radius: 5px;
        width: auto;
    }
}
  .navbar.active {
        display: flex;
    }

    .hamburger-menu {
        display: block;
        z-index: 1000;
    }

    /* ✅ Fix: Ensure buttons are spaced out properly */
    .navbar ul {
        padding: 0;
        text-align: center;
    }

    @media screen and (max-width: 768px) {
    .navbar ul {
        padding: 0;
        text-align: center;
    }

    /* 🔎 TEST: Add border to see button area */
    .navbar ul li {
        display: block !important;
        margin-bottom: 20px !important;
        border: 2px solid red !important; /* Test border */
    }

    .navbar ul li a {
        display: inline-block !important;
        padding: 12px 20px !important;
        background: green !important;
        color: white !important;
        text-decoration: none !important;
        border-radius: 5px !important;
        width: auto !important;
    }
}

    .navbar ul li a {
        display: inline-block;
        padding: 12px 20px;
        background: green;
        color: white;
        text-decoration: none;
        border-radius: 5px;
        width: auto;
    }

