/* Basic styling */
body {
    background-color: #fff; /* White background */
    color: #000;             /* Black text */
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Ensures footer stays at the bottom */
}
.child-div {
  flex: 1; /* Allows each child to grow and take up an equal amount of available space */
  /* Add styling for visibility (optional): */
  background-color: lightblue;
  padding: 10px;
}
 .flex-container { 
  display: flex; /* Makes the children flex items arranged in a row by default */
   justify-content: space-between; /* Optional: Distributes space evenly between and around items */
   gap: 20px; /* Optional: Adds a gap between items */
}

.flex-item {
  flex: 1; /* Optional: Makes each item grow to fill available space equally */
  /* Add other styling like borders, padding, background-color here */
   text-align: left;
}

/* on subscribe page make the body text narrower */
.subscribe-container {
  width: 75%;
  margin: 0 auto;
}

/* Header Styling */
header {
    background-color: #f8f9fa; /* Light background for the header area */
}

/* Logo Styling */
.logo {
    width: 100px;
    height: 100px;
    /* object-fit: cover; /* Ensures the image covers the 100px square area nicely */
    /* border-radius: 10px; /* Optional: makes the logo look slightly nicer */
}

/* Site Title and Description Typography Adjustments */
.site-title {
    font-size: 2.4rem;
    font-weight: bold;
    color: #000;
    padding: 0;
    margin: 0;
}

.site-description {
    font-size: 1.2rem;
    padding: 0;
    margin: 0;    
    color: #A9A9A9;
}

/* Menu Styling */
.top-menu .nav-link {
    color: #000; /* Black text for menu items */
    font-weight: 700;
}

.top-menu .nav-link:hover {
    color: #0056b3; /* A nice hover effect */
}

/* Subscribe Button Styling */
.subscribe-btn {
    background-color: #007bff; /* Blue background (Bootstrap default primary color) */
    color: #fff;               /* White text */
    font-weight: bold;         /* Bold text */
    border: none;
    padding: 10px 20px;
}

.subscribe-belowphoto-btn {
    background-color: #007bff; /* Blue background (Bootstrap default primary color) */
    color: #fff;               /* White text */
    font-weight: bold;         /* Bold text */
    border: none;
    padding: 10px 20px;
    margin: 20px;
}

a:link {
  font-size: 1.2rem;
  color: blue; /* Default color of an unvisited link */
  text-decoration: none; /* Removes the default underline */
  padding-right: 25px;
}

a:visited {
  color: purple; /* Color of a visited link */
}

.home-page-title {
  margin-bottom: 20px;
  text-align: center;
  font-size: 90px;
  line-height: 1.2em;
  font-weight: 700;
  font-family: 'Josefin Sans';
  color: #ffffff;
  text-shadow: 5px 4px 1px #5c9706;
}
.home-page-subtitle {
  margin-top: 25px;
  margin-bottom: 50px;
  text-align: center;
  font-size: 30px;
  font-weight: 300;
  font-family: Lato;
  text-transform: uppercase;
  color: #ffffff;
}

  /* Container for image and text */
  .image-container {
    /* position: relative; /* Needed for absolute positioning of text */
    display: inline-block;
    max-width: 100%;
    width: 50%;
    margin: 0 auto;          /* Centers the div horizontally */
  }

  /* The image */
  .image-container img {
    display: block;
    width: 200%;
    height: auto;
    margin: 0 auto;          /* Centers the div horizontally */    
  }

  /* Overlay text */
  .overlay-text {
    position: absolute;
    top: 50%; /* Center vertically */
    left: 50%; /* Center horizontally */
    transform: translate(-50%, -50%); /* Adjust for perfect centering */
    color: white;
    font-size: 4rem;
    font-weight: bold;
    text-align: center;
    /* background: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    padding: 10px 20px;
    border-radius: 5px;
  }
    /* Overlay text */
  .overlay-subtext {
    position: absolute;
    top: 70%; /* Center vertically */
    left: 50%; /* Center horizontally */
    transform: translate(-50%, -50%); /* Adjust for perfect centering */
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    /* background: rgba(0, 0, 0, 0.3); /* Semi-transparent background */
    padding: 10px 20px;
    border-radius: 5px;
    margin-top: 100px;
    width:600px;
  }
  .photo-caption {
    padding-top: 2px;
    font-size: 0.8rem;
  }
  
  .subscribe-onphoto-btn {
    padding-top: 30px;
  }

/* Mobile devices (max 600px) */
@media only screen and (max-width: 600px) {
  body {
    font-size: 14px;
  }
  .overlay-text {
    font-size: 2rem;
  }
  .home-page-title {
    font-size: 40px;
    margin-top: 200px;
  }
/* Site Title and Description Typography Adjustments */
.site-title {
    font-size: 1.4rem;
    font-weight: bold;
    color: #000;
    padding: 0;
    margin: 0;
}

.site-description {
    font-size: .7rem;
    padding: 0;
    margin: 0;    
    color: #A9A9A9;
  }
  .subscribe-btn {
    display: none;
  }
  .my-overlay-text {
    display: none;
  }
  
}

/* Tablets (min 600px) */
@media only screen and (min-width: 600px) {
  body {
    font-size: 16px;
  }
  .home-page-title {
    font-size: 40px;
  }  
}

