/* Main elements */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: white; /* #e7e3d2; */
    text-align: center;
}
header {
    background-image: url('img/header-min.png');
    background-size: cover;
    background-position: center;
    color: #060606;
    text-align: center;
    padding: 1em 0;
}
iframe {
    width: 100%;
    border: none; /* Removes any border */
    box-shadow: none; /* Removes any shadow */
}
nav {
    background-color: #060606;
    padding: 1em;
    text-align: center;
}
nav a {
    color: white;
    margin: 0 1.5em;
    text-decoration: none;
    padding: 0.5em 1em;
    font-size: 1.1em;
    border-radius: 4px;
}
nav a:hover {
    background-color: #666;
}
.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}
header h1 {
    font-size: 4em; /* Keep your desired font size */
    color: black;
    text-shadow: 
        -3px -3px 0 #fff, /* Increase the offset for a thicker shadow */
        3px -3px 0 #fff, 
        -2px 2px 0 #fff, 
        2px 2px 0 #fff;
}
h2 {
    text-align: center;
}
footer {
    background-color: #060606;
    color: white;
    text-align: center;
    padding: 6em 0 1em; 
    position: relative;
    bottom: 0;
    width: 100%;
    background-image: url('img/logo-circle.png');
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 90px; 
    background-position-y: 0.5em; 
}
/* Ensure footer links appear like the nav links */
footer a {
    color: white; /* Same link color as in nav */
    margin: 0 1.5em;
    text-decoration: none;
    padding: 0.5em 1em;
    font-size: 1.1em;
    border-radius: 4px;
}

footer a:hover {
    background-color: #666; /* Same hover effect as in nav */
    color: white;
}

@media (max-width: 768px) {
    .box {
        flex: 1 1 100%;
        margin: 2.5% 0;
    }
    .testimonial {
        flex: 1 1 100%;
    }
    .container {
        width: 100%;
    }
    .flex-container {
        flex-direction: column;
    }
}
@media (min-width: 768px) {
    .box {
      flex: 1 1 45%;  /* Set width to 45% for side-by-side arrangement */
      margin: 2.5%;
    }
  }

/* Gold and Black Content Boxes */
.box {
    flex: 1 1 45%;
    margin: 2.5%;
    padding: 2em;
    background-color: #c1b89a;
    text-align: center;
    max-width: 600px; /* Limits the maximum width of the entire box */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}
.box img {
    width: 100%;      /* Makes the image responsive */
    height: auto;     /* Maintains aspect ratio */
    max-width: 600px; /* Limits the maximum width of the image */
    display: block;   /* Removes unwanted whitespace below the image */
    margin: 0 auto;   /* Centers the image within its container */
}
.box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.box a {
    display: block;
    color: white; /* Match the nav links color */
    background-color: #060606; /* Match nav link background */
    margin: 0;
    padding: 1em;
    text-decoration: none;
    font-size: 1.1em; /* Adjust if needed */
    border-radius: 4px;
    height: 100%; /* Ensure the anchor covers the entire box */
    box-sizing: border-box; /* Include padding in the height/width calculations */
}
.box a:hover {
    background-color: #666; /* Same hover effect as in nav */
    color: white;
}

/* flex-container class */
.flex-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

/* testimonial class */
.testimonial {
    flex: 1 1 45%;
    margin: 2.5%;
    padding: 2em;
    background-color: #c1b89a;
    border-left: 5px solid black;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}
.testimonial p {
    font-style: italic;
}
.testimonial span {
    display: block;
    text-align: right;
    color: #060606;
    font-weight: bold;
}

/* mission class */
.mission {
    flex: 1 1 45%;
    margin: 2.5%;
    padding: 2em;
    background-color: #c1b89a;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    font-size: 1.5em; /* Increase the font size */
    font-weight: bold; /* Make the text bold */
    color: #060606; /* Ensure the text is easy to read */
    line-height: 1.6em; /* Improve readability */
}
.mission p {
    font-style: italic;
    font-size: large;
}
.mission span {
    display: block;
    text-align: right;
    color: #060606;
    font-weight: bold;
}

/* Side Menu */
/* Container for the entire menu and toggle button */
#menu-container {
    position: relative;
}
/* Side menu styles */
#side-menu {
    position: fixed;
    top: 0;
    left: -200px; /* Collapsed off the screen */
    width: 200px; /* Full expanded width */
    height: 100%;
    background-color: #000000;
    transition: left 0.3s ease; /* Smooth transition for expanding */
    overflow-x: hidden;
    padding-top: 20px;
}
#side-menu.expanded {
    left: 0; /* Expanded position */
}
/* Styling for menu items */
#side-menu .menu-item {
    padding: 15px 20px;
    text-decoration: none;
    font-size: 18px;
    color: white;
    display: block;
    transition: padding-left 0.3s ease;
}
#side-menu.expanded .menu-item {
    padding-left: 40px; /* Indent items when expanded */
}
#side-menu .menu-item:hover {
    background-color: #000000;
}
/* Toggle button styles */
#menu-toggle {
    position: fixed;
    top: 5px;
    left: 0px; /* Adjusted to remain visible while collapsed */
    font-size: 20px;
    cursor: pointer;
    color: white;
    padding: 10px;
    background-color: #000000;
    border-radius: 0 5px 5px 0;
    transition: left 0.3s ease;
    z-index: 1000; /* Add a high z-index value to keep it on top */
}
/* Content area styles */
#content {
    margin-left: 0; /* No offset for collapsed menu */
    padding: 20px;
    transition: margin-left 0.3s ease;
    z-index: 1000; /* Add a high z-index value to keep it on top */
}
#side-menu.expanded ~ #content {
    margin-left: 200px; /* Adjust content space for expanded menu */
}

/* Black button */
.black-button {
    display: inline-block;
    background-color: #000000; /* Black background */
    color: white; /* White text */
    padding: 10px 20px; /* Padding to make it look like a button */
    text-align: center; /* Center the text */
    text-decoration: none; /* Remove underline */
    border-radius: 4px; /* Rounded corners */
    font-size: 1.1em; /* Adjust font size if needed */
    transition: background-color 0.3s ease; /* Smooth hover transition */
}

.black-button:hover {
    background-color: #444444; /* Lighter black on hover */
}

/* Small image styling */
.gallery .image-container {
    margin: 10px;
    display: inline-block;
    cursor: pointer;
    border: 2px solid lightgrey; /* Light grey border */
    border-radius: 10px; /* Rounded edges */
    padding: 5px; /* Optional padding inside the border */
    transition: transform 0.3s ease;
  }
  
  .small-image {
    width: 150px;
    height: auto;
    border-radius: 8px; /* Slight rounding on the image itself to match the container */
  }
  
  .small-image:hover {
    transform: scale(1.1);
  }
  
  /* Fullscreen Modal */
  .modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
  }
  
  .modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80%;
  }
  
  .close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 40px;
    cursor: pointer;
  }
  
  .download-button {
    position: absolute;
    bottom: 20px;
    right: 35px;
    background-color: #000;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
  }
  
  .download-button:hover {
    background-color: #666;
  }
 
  /* Remove flexbox and individually position the buttons */

/* Modal header container */
.modal-header {
    position: relative; /* Relative to contain the absolutely positioned elements */
    z-index: 1001;
  }
  
  /* Style for close button */
  .close {
    position: absolute;
    top: 20px;
    right: 20px; /* Position it at the top-right of the screen */
    font-size: 40px;
    color: white;
    cursor: pointer;
    text-decoration: none;
    background: rgba(0, 0, 0, 0.5); /* Background for visibility */
    padding: 5px;
    border-radius: 5px;
  }
  
  /* Style for download link */
  .download-link {
    position: absolute;
    top: 20px;
    right: 100px; /* Offset the download button to the left of the close button */
    background-color: rgba(0, 0, 0, 0.5); /* Background color for visibility */
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .download-link:hover {
    background-color: #666;
  }
  
  
  