/* Main Content Area */

html, body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Ensure body takes full viewport height */
}


header {
    background-color: #1F2E3D;
    color: white;
    margin: 0; /* Remove default margin */
    box-sizing: border-box; /* Ensure padding doesn't affect width */
    
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Distributes space evenly between logo/site name and nav */    
    height: 100%; /* Ensures the container fills the header height */
    width: 100%;
}


.logo img {
    height: 100px;
    width: auto;
    margin-left: 30px;

}

nav .menu-toggle {
    display: none; /* Hidden on large screens */
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    margin-right: 20px;
    gap: 20px; /* Space between each navigation item */
    justify-content: flex-end; /* Pushes the nav items to the right */
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    margin-right: 0px;
}


/* Banner container */
.banner {
  width: 100%;
  max-height: 400px; /* Full height of the container */
  position: relative; /* Allow absolute positioning for text */
  overflow: hidden; /* Prevent text overflow issues */
  box-sizing: border-box; /* Ensures padding is included in the width */

}

/* Image styling */
.banner-img {
  width: 100%; /* Full width of the container */
  max-height: 400px; /* Full height of the container */
}

/* Content container */
.banner-content {
  position: absolute; /* Overlay the content on top of the image */
  top: 50%; /* Center vertically */
  left: 50%; /* Center horizontally */
  transform: translate(-50%, -50%); /* Correct centering alignment */
  text-align: center;
  color: #FFFFFF;
}

/* Title styling */
.banner-title {
  font-family: 'League Spartan', sans-serif;
  font-size: 25px;
  color: #FF6E4E;
  margin: 0;
  line-height: 1.2; /* Adjust spacing between the two lines */
  max-width:60%;
  word-wrap: break-word; /* Ensure words break appropriately */
  margin-left: auto;
  margin-right: auto; 

}

/* Underline */
.banner-underline {
  width: 30%;
  height: 3px;
  background-color: #000;
  margin: 10px auto;
}

/* Subtitle styling */
.banner-subtitle {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  color: #000;
  margin: 20px 0 0;
  line-height: 1.6; /* Line height for better readability */
  max-width: 80%; /* Limit width to control text wrapping */
  word-wrap: break-word; /* Ensure words break appropriately */
  margin-left: auto;
  margin-right: auto;
}


.main-content.container {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    flex-wrap: wrap; /* Prevent wrapping */
    flex: 1;

}

.privacy-policy {
    background-color: white;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    max-width: 800px;
        margin: 0px auto; /* Center the content */

}

.privacy-policy h1 {
    font-size: 24px;
    margin-bottom: 20px;
}

.privacy-policy h2,
.privacy-policy h3,
.privacy-policy h4 {
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: bold;
}

.privacy-policy p,
.privacy-policy ul {
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.privacy-policy ul {
    list-style: disc;
    padding-left: 40px;
}

.privacy-policy ul li {
    margin-bottom: 10px;
}


/* Footer Styles */

.footer {
    color: #fff;
    text-align: center;
    margin: 0;
    padding: 0;
    position: relative;
    height: 250px; /* Ensures footer has enough height to fit the content */
    overflow: hidden; /* Prevent content from spilling outside */
        box-sizing: border-box; /* Ensures padding is included in the width */

}

.footer_main {
   width: 100%;
  height: 250px; /* Full height of the container */
  position: relative; /* Allow absolute positioning for text */
  overflow: hidden; /* Prevent text overflow issues */
}

.footer_bg-img {
    width: 100%;
    max-height: 250px; /* Ensures the image fully covers the footer */

}


.footer-container {
   position: absolute; /* Overlay the content on top of the image */
  top: 50%; /* Center vertically */
  left: 50%; /* Center horizontally */
  transform: translate(-50%, -50%); /* Correct centering alignment */

}

/* Footer Links and Policies */
.footer-links,
.footer-policies {
    list-style: none;
    padding: 0;
    margin: 15px 0;
    display: flex; /* Makes items horizontal */
    justify-content: center; /* Centers items horizontally */
    gap: 35px; /* Adds space between links */

}

.footer-links li,
.footer-policies li {
    display: inline-block; /* Ensures links are inline */
}

/* Footer Links Styling */
.footer-links a,
.footer-policies a {
    color: #FF6E4E;
    text-decoration: none;
    font-size: 18px;
}

.footer-links a:hover,
.footer-policies a:hover {
    text-decoration: underline;
}

/* Social Links - Bottom Right */
.footer-social {
    position: absolute;
    top: 55%; /* Start at 50% from the top */
    left: 4%; /* Align slightly from the left */
    transform: translateY(-50%); /* Move upward by half its height to center vertically */
    text-align: center; /* Centers the title and icons horizontally */
}

.footer::after {
    content: "";
    position: absolute;
    top: 50%; /* Start at 50% of the footer */
    transform: translateY(-45%); /* Shift it upward by half of the height (90% / 2) */
    height: 80%; /* Set height to 90% of the footer */
    left: calc(9% + 100px); /* Position it relative to the social links */
    width: 2px; /* Width of the separator */
    background: repeating-linear-gradient(
        to bottom,
        #FF6E4E,
        #FF6E4E 5px,
        transparent 5px,
        transparent 10px
    ); /* Dotted effect */
}



/* Social Title */
.social-title {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    color: #000; /* Black color for the title */
    margin: 0; /* Removes unwanted spacing */
    line-height: 1.6; /* Better readability */
}

/* Underline */
.social-underline {
    width: 50%; /* Adjust width for a balanced look */
    height: 2px; /* Slightly thinner underline */
    background-color: #000; /* Black underline */
    margin: 5px auto; /* Centers underline and adds spacing below */
}

/* Social Icons */
.footer-social-icons {
    display: flex; /* Align icons horizontally */
    justify-content: center; /* Centers the icons */
    gap: 15px; /* Space between icons */
    margin-top: 10px; /* Adds spacing between the underline and icons */
}

.social-icon {
    width: 30px;
    height: 30px;
    background-color: #FF6E4E; /* Placeholder background for visibility */
    border-radius: 50%; /* Makes icons circular */
}



/* Responsive Styles */


@media screen and (max-width: 1024px) {
  /* Styles for tablets in landscape */
  
      header .container {
        display: flex;
        flex-direction: row;
        height: 80px;
        align-items: center;
        justify-content: space-between; /* Distributes space evenly between logo, search bar, and nav */

    }

    .logo {
        margin-bottom: 0px;
    }

    .search-bar {
        flex-grow: 1;
        max-width: 250px;
        margin-left: 0px;
        margin-right: auto;
        
    }

    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 10%; /* Position it below the header */
        width: auto;
        right: 0;
        padding: 20px;  
        background-color: #ffffff;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Optional: add a shadow for the popup effect */
        z-index: 1000; /* Ensure it is on top */
        align-items: start;
        
    }

    nav ul.active {
        display: flex; /* Show the menu when active */
        
    }

    nav ul.active li a {
        color: #ff6e4e; /* Change to your desired color */
    }

    nav .menu-toggle {
        display: inline-block;
        position: relative;
        cursor: pointer;
        margin-right: 20px;
    }

    nav .menu-toggle div {
        width: 25px;
        height: 3px;
        background-color: white;
        margin: 4px 0;
    }
    
     /* Banner Adjustments */
    .banner {
        max-height: 400px;
    }

    .banner-img {
        max-height: 400px;
    }

   .banner-title {
  
  font-size: 20px;
 
}



 /* Footer Adjustments */
    
.footer {
        height: 150px;
        background-color:orange;
    }

    .footer_main {
        height: 150px;
    }
    
    .footer_bg-img {
        height: 150px;
    }
    
     .footer-links,
.footer-policies {
   
    gap: 15px; /* Adds space between links */

}

.footer-links a,
.footer-policies a {
   
    font-size: 14px;
}
  
}


@media screen and (max-width: 768px) {
    header .container {
        display: flex;
        flex-direction: row;
        height: 80px;
        align-items: center;
        justify-content: space-between; /* Distributes space evenly between logo, search bar, and nav */

    }

    .logo {
        margin-bottom: 0px;
    }

    .search-bar {
        flex-grow: 1;
        max-width: 250px;
        margin-left: 0px;
        margin-right: auto;
        
    }

    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 10%; /* Position it below the header */
        width: auto;
        right: 0;
        padding: 20px;  
        background-color: #ffffff;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Optional: add a shadow for the popup effect */
        z-index: 1000; /* Ensure it is on top */
        align-items: start;
        
    }

    nav ul.active {
        display: flex; /* Show the menu when active */
        
    }

    nav ul.active li a {
        color: #ff6e4e; /* Change to your desired color */
    }

    nav .menu-toggle {
        display: inline-block;
        position: relative;
        cursor: pointer;
        margin-right: 20px;
    }

    nav .menu-toggle div {
        width: 25px;
        height: 3px;
        background-color: white;
        margin: 4px 0;
    }
    
        
     /* Banner Adjustments */
    .banner {
        max-height: 400px;
    }

    .banner-img {
        max-height: 400px;
    }

     

    .banner-title {
  
  font-size: 16px;
  max-width: 100%;
 
}

.banner-underline {
  
  height: 2px;
  margin: 5px auto;
}

   /* Footer Adjustments */
    
.footer {
        height: 150px;
        background-color:orange;
    }

    .footer_main {
        height: 150px;
    }
    
    .footer_bg-img {
        height: 150px;
    }
    
  .footer-links,
.footer-policies {
   
    gap: 15px; /* Adds space between links */

}

.footer-links a,
.footer-policies a {
   
    font-size: 12px;
}
}

@media screen and (max-width: 480px) {
   
    .logo img {
        height: 100px;
        width: auto;
        margin-left: 0px;
    
    }
    .search-bar {
        width: auto;   
        margin-right: 20px;            
    }
    .search-bar input {
        padding: 8px;
    }
    
         /* Banner Adjustments */
    .banner {
        max-height: 400px;
    }

    .banner-img {
        max-height: 400px;
    }

  

   .banner-title {
  
  font-size: 12px;
  max-width: 100%;
 
}

.banner-underline {
  
  height: 1px;
  margin: 5px auto;
}

   
       .footer {
        height: 100px;
    }

    .footer_main {
        height: 100px;
    }
    
    .footer_bg-img {
        height: 100px;
    }
    
     .footer-links,
.footer-policies {
   
    gap: 5px; /* Adds space between links */

}

.footer-links a,
.footer-policies a {
   
    font-size: 10px;
}

.footer-social {
    position: absolute;
    top: 55%; /* Start at 50% from the top */
    left: 2%; /* Align slightly from the left */
    transform: translateY(-50%); /* Move upward by half its height to center vertically */
    text-align: center; /* Centers the title and icons horizontally */
}

.footer::after {
    content: "";
    position: absolute;
    top: 50%; /* Start at 50% of the footer */
    transform: translateY(-45%); /* Shift it upward by half of the height (90% / 2) */
    height: 80%; /* Set height to 90% of the footer */
    left: calc(1% + 80px); /* Position it relative to the social links */
    width: 2px; /* Width of the separator */
    background: repeating-linear-gradient(
        to bottom,
        #FF6E4E,
        #FF6E4E 5px,
        transparent 5px,
        transparent 10px
    ); /* Dotted effect */
}



/* Social Title */
.social-title {
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    color: #000; /* Black color for the title */
    margin: 0; /* Removes unwanted spacing */
    line-height: 1.2; /* Better readability */
}

/* Underline */
.social-underline {
    width: 50%; /* Adjust width for a balanced look */
    height: 2px; /* Slightly thinner underline */
    background-color: #000; /* Black underline */
    margin: 2px auto; /* Centers underline and adds spacing below */
}

/* Social Icons */
.footer-social-icons {
    display: flex; /* Align icons horizontally */
    justify-content: center; /* Centers the icons */
    gap: 5px; /* Space between icons */
    margin-top: 5px; /* Adds spacing between the underline and icons */
}

.social-icon {
    width: 20px;
    height: 20px;
    background-color: #FF6E4E; /* Placeholder background for visibility */
    border-radius: 50%; /* Makes icons circular */
}

}
