/* Global Style */
* {
    box-sizing: border-box;
  }
  
  body {
    font-family: Helvetica;
    padding: 40px;
    background: #f9f9f9;
  }
  
  p {
    text-align: justify;
  }
  
  /* Header/Blog Title */
  .header {
    padding: 30px;
    text-align: center;
    background: white; /* Light orange for warmth */
    color: #333;
  }
  
 
  
  /* Style the top navigation bar */
  .topnav {
    overflow: hidden;
    background-color: #333;
  }
  
  /* Style the topnav links */
  .topnav a {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
  }
  
  /* Change color on hover */
  .topnav a:hover {
    background-color: #ffb6b9; /* Soft red for hover effect */
    color: black;
  }
  

/* Hero Section */
.hero-banner {
  position: relative;
  background: url('/public/images/hero.png') center/cover no-repeat;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.6));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #172365; 
    background-color: #F0E4D8;
}


.hero h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #172365; /* Soft yellow to contrast with dark background */
}

.hero p {
    font-size: 2rem;
    margin-bottom: 20px;
}

.details h1{
    font-size: 2rem;
    text-align: center;
    margin-bottom: 10px;
    color: #172365; 
    background-color: #F0E4D8;

}
.read-more-btn {
    background-color: #ff5733; /* Bright red-orange for the button */
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.read-more-btn:hover {
    background-color: #e63946; /* Slightly darker shade on hover */
}


  /* Create two unequal columns that float next to each other */
  /* Left column */
  .leftcolumn {   
    float: left;
    width: 75%;
    background-color: #fff5e6; /* Light beige for softness */
    padding: 0;
  }
  
  /* Right column */
  .rightcolumn {
    float: left;
    width: 25%;
    background-color: #e6f7ff; /* Light blue for contrast */
    padding-left: 5px;
  }
  
  /* Fake image (For article placeholders) */
  .fakeimg {
    background-color: #aaa;
    width: 100%;
    padding: 10px;
    color: #fff;
    text-align: center;
  }
  
  /* Add a card effect for articles */
  .card {
    background-color: #ffffff;
    padding: 5px;
    margin-top: 5px;
   /* border-left: 5px solid #6a0dad; /* Purple highlight for articles */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  /* Clear floats after the columns */
  .row::after {
    content: "";
    display: table;
    clear: both;
  }
  
  /* Footer */
  .footer {
    padding: 20px;
    text-align: center;
    background: #dff9fb; /* Very light cyan for footer */
    color: #333;
    margin-top: 20px;
  }
  
* Contact */
.contact form {
  display: grid;
  gap: 10px;
}

.contact input, .contact textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.contact button {
  background-color: #28a745;
  text-align: center;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.contact button:hover {
  background-color: #218838;
}

.contact-section h1{
  font-size: 2rem;
    margin-bottom: 10px;
    color: #172365; 
    text-align: center;
    background-color: #F0E4D8;
}
.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    color: white;
    background-color: #25D366;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
  }
  
  .whatsapp-link i {
    font-size: 20px;
  }
  
  .whatsapp-link:hover {
    background-color: #128C7E;
  }
.gallery h1 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #172365; 
    text-align: center;
    background-color: #F0E4D8;
    
}
.gallery img {
      width: 20%;
      max-width: 400px;
      height: auto;
      margin: 0.5rem;
      cursor: pointer;
    }

    .lightbox {
      position: fixed;
      display: none;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(0,0,0,0.8);
      justify-content: center;
      align-items: center;
      z-index: 1000;
    }

    .lightbox img {
      max-width: 90%;
      max-height: 90%;
    }

  /* Responsive layout - when the screen is less than 800px wide, make the two columns stack on top of each other instead of next to each other */
  @media screen and (max-width: 800px) {
    .leftcolumn, .rightcolumn {   
      width: 100%;
      padding: 0;
    }
  }
  
  /* Responsive layout - when the screen is less than 400px wide, make the navigation links stack on top of each other instead of next to each other */
  @media screen and (max-width: 400px) {
    .topnav a {
      float: none;
      width: 100%;
    }
  }
  