

body {
  max-width: 1400px;
  margin: 20px;
 }

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 60px;
    background-color:white;
	flex-shrink: 0;
}

.logo{
    width: 150px; 
    height: auto;
	display: block;
	flex-shrink: 0;
}

.nav-links a{
    color:black;
    text-decoration:none;
    margin-left:25px;
    font-size:20px;
	font-family: Poppins;
	font-style: bold;
}

.nav-links a:hover{
    color: blue;
}

.hero{
    position: relative;
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.hero-img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; 
    z-index: -1;     
}

.hero-text{
    position: relative; 
	font-family:'Lora';
	font-size: 35px;
	text-shadow: 2px 2px 6px rgba(0,0,0,0.8);
}

.hero-text p{
    font-size:25px;
    margin-bottom:25px;
	text-shadow: 2px 2px 6px rgba(0,0,0,0.8);
}


.explore-btn{
    background-color:#0b3d2e;
    color:white;
    padding:12px 25px;
    text-decoration:none;
    border-radius:5px;
    font-size:18px;
	font-family:'Lora';
}

.explore-btn:hover{
    background-color:#145c45;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.welcome-note {
	margin:40px 30px 30px 30px;
	font-size:22px;
	font-family:Andada;
	text-align:justify;
	line-height:1.5;
}

.highlights {
	margin-bottom : 20px;
	margin-top : 30px;
	font-family : 'Lora';
	font-size : 18px;
}

.cards-container{
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap; 
}

.card{
    width: 30%;                  
    height: 400px;               
    background-color: #f5f5f5;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover{
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}


.card-img{
    width: 100%;
    height: 50%;         
    object-fit: cover;   
}


.card h3{
    font-family: 'Lora', serif;
    font-size: 20px;
    margin: 10px;
}

.card p{
    font-family: 'Poppins';
    font-size: 16px;
    margin: 0 10px 10px;
    flex-grow: 1;
}

.card-link{
    text-decoration: none;
    color: #0b3d2e;
    font-weight: 600;
    margin: 0 10px 10px;
}

.card-link:hover{
    color: blue;
}

@media (max-width:768px){

.card{
    width: 100%;   
    height: auto;  
    }

.card-img{
    height: 200px;
    }
}

.mission {
	margin-bottom : 20px;
	margin-top : 30px;
	font-family : 'Lora';
	font-size : 18px;
}

.mission-stmt {
	font-size:22px;
	font-family:Andada;
}

.author-container {
  display: flex;                
  flex-direction: row;          
  align-items: flex-start;
  gap: 20px;                     
  border: 1px solid #ddd;        
  padding: 20px;
  max-width: 1200px;             
  width: 90%;
  background-color: #EEEEEE;     
  margin: 40px auto;            
}

.dp img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
}

.about {
  flex: 1; 
  font-size: 18px;
}

.about h4 {
  margin-bottom: 15px;
  font-family:'Lora';
 }

.about p {
  line-height: 1.4;
  font-size: 19px;
  margin-bottom: 10px;
}

 
 .site-footer {
  background-color: #000; 
  color: #fff;            
  padding: 10px 10px;
  font-family: 'Lora';
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-nav, .footer-contact {
  flex: 1 1 200px; 
  margin-left:20px;
}

.footer-nav h4, .footer-contact h4 {
  margin-bottom: 15px;
  font-size: 18px;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  font-size:18px;
}

.footer-nav li {
  margin-bottom: 10px;
}

.footer-contact p {
	font-size:18px;
}

.footer-nav a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-nav a:hover {
  color: #f0a500; 
}

.footer-bottom {
  text-align: center;
  margin-top: 15px;
  font-size: 14px;
  border-top: 1px solid #444;
  padding-top: 15px;
}

/* 2nd & 3rd Pages */
/* Same layout for both pages have been used. */

.title2 {
	font-size: 50px;
	text-align:center;
	margin-bottom: 20px;
}



.section-title {
  text-align: center;
  font-size: 32px;
  margin: 30px 0;
  color:green;
}

.places-container {
  width: 90%;
  margin: 0 auto;
}

@media (max-width:768px){
  .place-card {
    width: 100%;
  }
}

.places-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap; 
  margin-bottom: 20px;
  gap: 15px;
}


.place-card {
  text-align: center;
  width: 22%; 
}

.place-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 5px;
}

.place-name {
  margin-top: 8px;
  font-weight: bold;
  font-size: 18px;
}

.places-description {
  text-align: center;
  margin-top: 20px;
  font-size: 16px;
}

.intro {
	font-size:20px;
	line-height:1.5;
}

.intro2 {
	margin:40px 30px 30px 30px;
	font-size:22px;
	font-family:Andada;
	text-align:justify;
	line-height:1.5;
}