/* Reset default browser margins */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
}

/* Full screen background settings */
.background-blur {
    /* Set your background image link here */
    background-image: url("../img/IMG_6588.jpeg"); 
    
    /* Make it fill the full screen and stay fixed */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    /* Ensure the image covers the area responsively without stretching */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
    /* Apply the blur filter */
    filter: blur(10px);
    -webkit-filter: blur(10px); /* For older Safari support */
    
    /* Slightly scale up the element to hide bright/white blurred edges */
    transform: scale(1.1); 
    
    /* Push the background behind the text content */
    z-index: -1; 
}

/* Style your website content so it sits nicely on top */
.content {
    position: relative;
    z-index: 1;
    font-family: Arial, sans-serif;
    color: white;
    text-align: center;
    padding-top: 20vh;
}
  /* The Bounding Box */
  .image-container {
    width: 100%;           /* Fully responsive on small screens */
    max-width: 1024px;     /* Matches image width to prevent blurriness */
    /*max-height: 80vh;      /* Prevents the tall image from overflowing the screen height */
    margin: 0 auto;        /* Centers the container horizontally */
    overflow: hidden;      /* Clean edges */
  }

  /* The Image Configuration */
  .image-container img {
    width: 100%;           /* Fits container width */
    height: 100%;          /* Fits container height */
    object-fit: contain;   /* Scales down without cropping or distorting */
    display: block;
  }
    /* Link container styling */
  .link-bar {
    display: flex;
    justify-content: space-around; /* Distributes links evenly */
    padding: 12px 0;
    background-color: #f4f4f4;    /* Light background to distinguish the bars */
  }

  .link-bar a {
    color: #333;
    text-decoration: none;
    font-weight: bold;
  }

  .link-bar a:hover {
    text-decoration: underline;
  }
