/*header page*/
div.header-left {
	display:flex;
	width:100%;
	align-items:;
	justify-content: space-between; /* left vs right */
	gap: 5px; /* space between logo and text */	
}
div.header-left {	
	background-color:#8B0000;/*Crimson color*/
}
nav.left{
	display:inline-block;
	width:%;
}
.navbar{
	display: inline-block;
	align-items:right;
    position: sticky;
    top: 0;
    width:70%;
    z-index: 1000;
}
.menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: right;
}
.menu li {
    position: relative;
    margin: 0.01%;
}
.menu a {
    text-decoration: none;
    color: white;
    font-weight: bold;
	font-size:10pt;
    padding: 10px;
    display: block;
}
.menu a:hover {
    background-color: #800000;
    border-radius: 5px;
}
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #b30000;
    min-width: 200px;
    top: 100%;
    left: 0;
    list-style: none;
    padding: 0;
    margin: 0;
}
  .dropdown-content li a {
    padding: 10px;
    color: #fff;
}
  .dropdown-content li a:hover {
    background-color: #800000;
}
.show {
    display: block;
}
h1.headerText{  
	background-color:; 
	display:inline; 
	padding-left:3px;
	padding-top:px;
	color: white;    
	font-size: 15pt;
	font-family: Verdana, sans-serif;
	text-align:left;
} 
img.header{ 
	display: inline; 
	width:40px;
	height:50px;
	vertical-align:middle;
} 


/* ===== Hamburger Icon ===== */
.menu-toggle {
  display: none;
  font-size: 26px;
  color: #fff;
  padding: 5px 10px;
  cursor: pointer;
}


/* ===== Responsive Side Drawer ===== */
@media (max-width: 768px) {
  .menu-toggle {
    display: block; /* show hamburger icon */
  }

  .menu {
    flex-direction: column;
    position: fixed;
    top: 0;
    left: -250px; /* hidden off-screen */
    width: 250px;
    height: 100%;
    background-color: #b30000;
    padding-top: 60px;
    transition: left 0.3s ease;
    z-index: 1000;
  }

  .menu.show {
    left: 0; /* slide in from left */
  }

  .menu li a {
    border-top: 1px solid #fff;
    color: #fff;
  }

  .dropdown-content {
    position: static;
    box-shadow: none;
    border: none;
    background-color: #800000;
  }

  .dropdown-content li a {
    color: #fff;
  }
.navbar{
	display: inline-block;
	align-items:right;
    position: sticky;
    top: 0;
    width:10%;
    z-index: 1000;
}  
  
}


/*footor style*/
.site-footer {
  background-color: #8B0000; /* deep red */
  color: #fff;
  text-align: center;
  padding: 20px 10px;
  font-size: 0.95em;
}

.site-footer a {
  color: #FFD700; /* gold accent */
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.site-footer p {
  margin: 5px 0;
}

/*index page */
div.hp_bgp{
	position:relative;
	display: block;
	text-align: center;
}
img.hp_bgp{
	width: 100%;
	height: 500px;
	display: block;	
	object-fit: cover;
	object-position: 9.8%; 
}
div.wrapper{  
	position:absolute ;
	top: 480px; /* distance from top */
    left: 0px; /* distance from left */
	padding: 0px;
	width: 100%;
	display:flex;
	justify-content: center;
	align-items:center; 
	margin-top: -5px;
	margin-bottom: px;
	display: flex;
	gap: 5px;
}

.info-sections {
	display: flex;
	flex-wrap: wrap; /* allows multiple rows */
	justify-content: center;
	gap: 10px 25px;
	padding: 20px 2px;
	background-color: #f9f9f8;
}

.info-box {
	flex: 1 1 1 30%; /* two per row */
	max-width: 600px;
	background-color:; /* crimson red */
	font-size: 9.3pt;
	color: #333333;
	padding: 10px;
	border-radius: 5px;
	box-shadow: 0 4px 8px rgba(0,0,0,0.9);
	text-align: center;
}

/*about us page*/
.about-page {
  width: 90%;
  margin: 0 auto; /* centers the section horizontally */
  background-color: #fff;
  color: #333;
  padding:;
  line-height: 1.6;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.9); /* subtle shadow for depth */
  border-radius: 8px;
}

.about-page h1 {
  color: #8B0000;
  text-align: center;
  margin-bottom: 30px;
}

.about-section h2{
  border-left: 4px solid #8B0005;
  border-right: 4px solid #8B0005;
  padding: 20px;
  margin-bottom: 25px;
  background-color: #f9f9f1;
  border-radius: 8px;
}

.about-section{
  color: #333333;
  font-size:11pt;
  margin-bottom: 10px;
}

.about-section p {
  margin-bottom: 10px;
}


/*Media page*/
.media-page {
  width: 100%;
  margin: 0 auto; /* centers the section */
  text-align: center;
  padding: ;
  background-color: #fff;
}

.media-page h1 {
  color: #8B0000;
  font-size: 2.2em;
  margin-bottom: 20px;
}

/* Slideshow */

/*rrrrr*/
.slideshow-container {
  position: relative;
  width: 100%;
  margin: 0 auto;
  height: 500px;
  overflow: hidden;
  border-radius: 10px;
}

.slide {
  display: none; /* hide all slides by default */
  position: relative;
  height: 100%;
}

.slide-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; 
  height: 500px;
  z-index: 1;
}

.slide-bg img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  filter: blur(15px) brightness(0.5);
  z-index: 2;
}

.slide-main {
  position: relative;
  z-index: 2;
  width: 60%;
  height: 500px;
  object-fit: contain;
}

.caption {
  position: absolute;
  bottom: 15px;
  left: 0; right: 0;
  text-align: center;
  color: #fff;
  font-size: 1.2em;
  background: rgba(0,0,0,0.5);
  padding: px;
  z-index: 3;
}

/* Gallery */
.media-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.media-item {
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.media-item:hover {
  transform: scale(1.03);
}

.media-item img {
  width: ;
  height: 300px;
  object-fit: cover;
}

.media-item p {
  padding: 10px;
  color: #333;
  font-weight: 500;
}

.accordion-btn {
  background-color: #b30000;
  color: #fff;
  cursor: pointer;
  padding: 15px;
  width: 100%;
  border: none;
  text-align: left;
  font-size: 1.2em;
  margin-top: 10px;
  transition: background 0.3s;
}

.accordion-btn:hover {
  background-color: #800000;
}

.accordion-content {
  display: none;
  padding: 15px;
  background: #f9f9f9;
  border: 2px solid #b30000;
  border-top: none;
}
.staff-page{
	margin-top:-5px;
}
.staff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.staff-card {
  border: 2px solid #b30000;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  background: #fff;
}

.staff-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 10px;
}

/* ===== Contact Page ===== */
.contact-page {
  padding: 10px;
  background-color: #fff;
  font-family: 'Segoe UI', Arial, sans-serif;
}

.section-title {
  text-align: center;
  color: #b30000;
  font-size: 2em;
  margin-bottom: 30px;
}

/* ===== Contact Container ===== */
.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.contact-info,
.contact-form {
  flex: 1 1 400px;
  border: 2px solid #b30000;
  border-radius: 8px;
  padding: 0px;
  background-color: #f9f9f9;
}

.contact-info h3,
.contact-form h3 {
  color: #b30000;
  margin-bottom: 15px;
}

.contact-info p {
  margin: 8px 0;
  color: #333;
}

.contact-info a {
  color: #b30000;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* ===== Contact Form ===== */
.contact-form label {
  display: block;
  margin-top: 10px;
  font-weight: bold;
  color: #333;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1em;
}

.contact-form textarea {
  resize: vertical;
}

.submit-btn {
  background-color: #b30000;
  color: #fff;
  border: none;
  padding: 10px 20px;
  margin-top: 15px;
  cursor: pointer;
  border-radius: 5px;
  font-size: 1em;
  transition: background-color 0.3s ease;
}

.submit-btn:hover {
  background-color: #800000;
}

/* ===== Map Section ===== */
.map-section {
  margin-top: 40px;
  text-align: center;
}

.map-section h3 {
  color: #b30000;
  margin-bottom: 15px;
}

.map-section iframe {
  width: 100%;
  height: 400px;
  border: 2px solid #b30000;
  border-radius: 8px;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    align-items: center;
  }

  .contact-info,
  .contact-form {
    width: 100%;
  }

  .map-section iframe {
    height: 300px;
  }
}


/* ===== Facebook Section ===== */
.facebook-section { 
  width: 100%;
  max-width: 500px;   /* keeps it neat on large screens */
  margin: 40px auto;
  text-align: center;
}

.facebook-section h3 {
  color: #b30000;     /* red theme */
  margin-bottom: 15px;
  font-size: 1.4em;
  font-weight: bold;
}

.fb-page {
  display: block;     /* must be block, not 'n' */
  border: 2px solid #b30000;
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
  min-height:400px;  /* ensures space for the feed */
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    align-items: center;
  }

  .contact-info,
  .contact-form {
    width: 100%;
  }

  .map-section iframe {
    height: 400px;    /* more reasonable height on mobile */
    width: 100%;
  }

  .facebook-section {
    max-width: 100%;
    margin: 20px 0;
  }

  .fb-page {
    min-height: 300px;
  }
}


div.container:hover{
	background-color:blue;
}
#div1:hover,#div2:hover,#div3:hover{
	background-color:pink;
}
div.number_container{
	width:200px;
	height:35px;
	padding:5px;
	font-size: 11pt;
	color: white;
	background-color:red;
	text-align:center;
	border-radius: 5px;
	vertical-align:middle;
}

span.hp_bgp{
	position: absolute;
	top: 10%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 20pt;
	font-family: "Cursive";
	color: red;
	padding-top:100px;
}
table.hp{
	width:100%;
	height:100%;
	horizona-align:center;
	background-color: white;
	margin-top:px;
}
td.hp{
	width:400px;
	height:200px;
	font-size:80pt;
}
#td1{
	background-color:#ff9999;
}
#td2{
	background-color:#ff4d4d;
}
div.hp{
	width:94%;
	height:195px;
	margin-left: 3%;
	margin-bottom:10px;
	text-align:center;
	border-radius: 20px;
	cursor: pointer;
	font-size:9pt;
	color:white;
}
#div1{
	background-color:#ee6b6e;
}
#div2{
	background-color:#f94449;
}
#div3{
	background-color:#ff2c2c;
	margin-bottom:px;
}
h2{

}
div.h1{ 
	font-size:14pt;
	padding-top:10px;
	font-weight: bold;
}
div.h2{
	font-size:12pt;
	padding-top:10px;
}


img.icon{
	width: 5px;
	height: 5px;
}
div.icons{
	width
	background-color:black;
	display: ;
	justify-content: space-around;
}
img.home_pic{
	width: 100%;
	height: 162px;
	object-fit: cover;
	object-position: 9.8%; 
}

/*for menu*/
	div.inc{
  overflow: hidden;
  position: fixed;
  top: 0;
  width: 100%;	
}
