/* General Reset & Variables */
:root {
  --accent:#C94E2A;
  --dark:#222;
  --muted:#666;
  --bg:#fafafa;
  --max-width:1200px;
  --radius:12px;
  --gap:18px;
  --nav-height:64px;
  font-family:'Segoe UI',Roboto,Arial,sans-serif;
}

:root {
  --primary: #0d4d8b;
  --accent: #f4b400;
  --bg: #f8f8f8;
  --text: #222;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: Arial, sans-serif; background: var(--bg); color: var(--text); }

/* HEADER */
.site-header {
  background: white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  position: sticky; top: 0; z-index: 1000;
}
.header-inner {
  display: flex; justify-content: space-between; align-items: center;
  max-width: 1200px; margin: auto; padding: 15px 20px;
}
.brand { font-size: 1.5rem; font-weight: bold; color: var(--primary); }
.nav a {
  margin: 0 15px; color: var(--text); text-decoration: none;
  font-weight: 600; transition: 0.2s;
}
.nav a:hover { color: var(--primary); }
.nav .cta {
  background: var(--primary); color: white !important;
  padding: 8px 16px; border-radius: 6px;
}
.menu-toggle { display: none; background: none; border: none; font-size: 1.8rem; }

/* HERO */
.hero {
  height: 60vh;
  background-size: cover; background-position: center;
  display: flex; justify-content: center; align-items: center;
  text-align: center; color: white;
  position: relative;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.4);
}
.hero-text {
  position: relative;
  max-width: 600px;
}
.hero h1 { font-size: 3rem; margin-bottom: 10px; }
.hero p { font-size: 1.2rem; }

/* CONTENT */
.about-info { max-width: 1100px; margin: 40px auto; padding: 0 20px; }
.grid { display: grid; gap: 20px; }
.cols-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

.card {
  background: white; padding: 20px; border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.card h3 { margin-bottom: 10px; color: var(--primary); }

/* MAP */
.map-section { margin: 40px auto; max-width: 1100px; padding: 0 20px; }
.map-container { height: 450px; border-radius: 12px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.1); }

/* FOOTER */
.site-footer {
  background: #0d4d8b; color: rgb(0, 0, 0);
  text-align: center; padding: 30px 20px; margin-top: 50px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav { display: none; position: absolute; top: 65px; left: 0; right: 0;
         background: white; padding: 20px; flex-direction: column; text-align: center;
         box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
  .nav a { margin: 10px 0; }
  .menu-toggle { display: block; }
}
/* -------------------------
   TABLETS → 768–1024px
---------------------------- */
@media (max-width: 1024px) {

.nav { display: none; position: absolute; top: 65px; left: 0; right: 0;
         background: white; padding: 20px; flex-direction: column; text-align: center;
         box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
  .nav a { margin: 10px 0; }
  .menu-toggle { display: block; }
}

/* General Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: Arial, sans-serif; background: #f5f5f5; color: #222; }

/* Header */
.site-header {
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-inner {
  max-width: 1200px;
  margin: auto;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.brand { font-size: 1.6rem; color: #0d4d8b; font-weight: bold; }
.nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #222;
  font-weight: 600;
}
.nav a:hover { color: #0d4d8b; }
.nav .cta {
  background: #0d4d8b;
  color: white !important;
  padding: 8px 14px;
  border-radius: 6px;
}
.menu-toggle { display: none; font-size: 1.8rem; background:none; border:none; }

/* Hero */
.hero {
  height: 55vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: cover;
  background-position: center;
  position: relative;
  text-align: center;
  padding: 20px;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}
.hero-text { position: relative; color: white; }
.hero-text h1 { font-size: 3rem; margin-bottom: 10px; }
.hero-text p { font-size: 1.2rem; }

/* Travel Tips */
.travel-tips {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
}
.travel-tips h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 20px;
  color: #0d4d8b;
}
.travel-tips ul {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.travel-tips li {
  margin-bottom: 12px;
  font-size: 1.1rem;
}

/* Contact Form */
.contact-section {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
}
.contact-section h2 {
  text-align: center;
  font-size: 2rem;
  color: #0d4d8b;
  margin-bottom: 20px;
}
.contact-form {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.contact-form label {
  display: block;
  font-weight: bold;
  margin: 12px 0 5px;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}
.btn {
  margin-top: 15px;
  padding: 12px 18px;
  background: #0d4d8b;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
}
.btn:hover { background: #083763; }

#formNotice { margin-top: 10px; font-weight: bold; }

/* Hotels Section */
.hotels {
  max-width: 1100px;
  margin: 60px auto 20px;
  padding: 0 20px;
}
.hotels h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 25px;
  color: #0d4d8b;
}
.grid {
  display: grid;
  gap: 20px;
}
.cols-3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.card {
  background: white;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 10px;
}
.card h4 { font-size: 1.3rem; color: #0d4d8b; margin-bottom: 6px; }
.card a { color: #0d4d8b; text-decoration: none; font-weight: bold; }
.card a:hover { text-decoration: underline; }


/* Responsive */
@media (max-width: 768px) {
  .nav { display: none; flex-direction: column; text-align: center;
         background: white; padding: 20px; position: absolute; left:0; right:0; top:65px; }
  .nav a { margin: 10px 0; }
  .menu-toggle { display: block; }
}



*{box-sizing:border-box;margin:0;padding:0}
body{background:var(--bg);color:var(--dark);line-height:1.45}
a{text-decoration:none;color:inherit}
.container{max-width:var(--max-width);margin:0 auto;padding:20px}

/* Header */
.site-header{background:#fff;border-bottom:1px solid #eee;position:sticky;top:0;z-index:50}
.header-inner{display:flex;align-items:center;justify-content:space-between;height:var(--nav-height);max-width:var(--max-width);margin:0 auto;padding:0 20px}
.brand{display:flex;align-items:center;gap:12px;font-weight:700}
.brand .logo{width:42px;height:42px;background:linear-gradient(135deg,#C94E2A,#f39c12);border-radius:8px;display:inline-block}
.nav{display:flex;gap:16px;align-items:center}
.nav a{padding:8px 10px;border-radius:8px}
.nav a:hover{background:#f6f6f6}
.cta{background:var(--accent);color:#fff;padding:8px 12px;border-radius:8px}

/* Hero */
.hero{display:flex;align-items:center;justify-content:center;color:#fff;text-align:center;min-height:300px;background-size:cover;background-position:center;position:relative;margin-bottom:30px}
.hero::after{content:"";position:absolute;top:0;left:0;width:100%;height:100%;background:rgba(0,0,0,0.4)}
.hero .hero-text{position:relative;z-index:1}
.hero h1{font-size:32px;margin-bottom:10px}
.hero p{font-size:16px;margin-bottom:12px}
.hero .btn{background:var(--accent);color:#fff;padding:10px 16px;border-radius:8px}

/* Grid */
.grid{display:grid;gap:var(--gap)}
.grid.cols-3{grid-template-columns:repeat(3,1fr)}
.grid.cols-2{grid-template-columns:repeat(2,1fr)}
.card{background:#fff;border-radius:var(--radius);overflow:hidden;box-shadow:0 4px 10px rgba(0,0,0,0.08)}
.card img{width:100%;height:180px;object-fit:cover}
.card h4{margin:12px 0 6px 0;padding:0 12px}
.card p{padding:0 12px;margin-bottom:12px}

/* Contact form */
.contact-form{display:grid;gap:12px;padding:12px}
.contact-form input,.contact-form select,.contact-form textarea{width:100%;padding:10px;border:1px solid #ccc;border-radius:8px;font-size:14px}
.contact-form button{padding:10px 14px;background:var(--accent);color:#fff;border:none;border-radius:8px;cursor:pointer}
#formNotice{margin-top:6px;font-size:13px;color:crimson}


/* Responsive */
@media(max-width:1023px){.grid.cols-3{grid-template-columns:repeat(2,1fr)}}
@media(max-width:767px){.grid.cols-3,.grid.cols-2{grid-template-columns:1fr}}
.menu-toggle{display:none}
@media(max-width:767px){
  .menu-toggle{display:block}
  .nav{display:none;flex-direction:column;gap:10px;background:#fff;position:absolute;top:var(--nav-height);left:0;width:100%;padding:10px}
}



/* ---------------------------------------------------
   IMAGE POPUP / LIGHTBOX (ADDED AT BOTTOM)
----------------------------------------------------- */
.img-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.img-popup img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
}

.close-popup {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 40px;
  cursor: pointer;
  font-weight: bold;
  user-select: none;
}

/* Make "Book Now" links bold and colored */
.hotels .card a.book-link {
    font-weight: bold;
    color: #e63946; /* Example: red color, you can change it */
    text-decoration: none; /* Optional: remove underline */
}

.hotels .card a.book-link:hover {
    text-decoration: underline; /* Optional: show underline on hover */
}
/*Student Disclaimer*/
.student-disclaimer {
    background-color: #004085; /* Dark Blue matching your theme */
    color: #ffffff;            /* White text for contrast */
    font-size: 0.9rem;
    text-align: center;
    padding: 10px 0;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
}
/* Footer CSs Start*/
 #imageLightbox {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.85);
      display: none;
      justify-content: center;
      align-items: center;
      z-index: 9999;
      padding: 20px;
    }
    #imageLightbox img {
      max-width: 100%;
      max-height: 90%;
      border-radius: 10px;
    }
    #closeLightbox {
      position: fixed;
      top: 20px;
      right: 20px;
      font-size: 2rem;
      color: white;
      cursor: pointer;
      font-weight: bold;
    }
    .site-footer {
      background-color: #003366; 
      color: white;              
      padding: 40px 0;        
    }

    .footer-content {
      display: flex;             
      justify-content: space-around; 
      align-items: flex-start;   
      flex-wrap: wrap;           
      max-width: 1200px;         
      margin: 0 auto;            
    }

    .footer-section {
      flex: 1;                   
      padding: 0 20px;           
      min-width: 250px;          
    }

    /* Typography Styling */
    .footer-section strong {
      display: block;            
      margin-bottom: 15px;       
      font-size: 1.1rem;
      color: #ffcc00;            
      text-transform: uppercase;
    }

    .footer-section p {
      margin: 5px 0;             
      font-size: 0.9rem;
      opacity: 0.9;              
    }

    .footer-section a {
      color: white;
      text-decoration: underline;
    }
    .footer-bottom {
      text-align: center;
      margin-top: 20px;          
      padding-top: 20px;         
      border-top: 1px solid rgba(255, 255, 255, 0.1); 
      font-size: 0.85rem;        
      opacity: 0.7;            
    }
    /* Footer CSS End*/
