/* Basic Resets */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background: #f4f4f4;
  color: #333;
}

/* Sidebar Navigation */
nav.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 250px;
  height: 100%;
  background: rgba(51, 51, 51, 0.95);
  box-shadow: 2px 0 4px rgba(0,0,0,0.5);
  padding: 1rem;
  z-index: 100;
}

nav.sidebar .logo {
  text-align: center;
  margin-bottom: 2rem;
}

nav.sidebar .logo img {
  height: 80px; /* Reduced from 100px */
  width: auto;
}

nav.sidebar ul {
  list-style: none;
  padding: 0;
}

nav.sidebar ul li {
  margin-bottom: 1rem;
}

nav.sidebar ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: bold;
}

nav.sidebar ul li a.active,
nav.sidebar ul li a:hover {
  color: #ffcc00;
}

/* Main Content Area */
.main-content {
  margin-left: 250px;
  padding: 1rem;
}

/* Hero Section with Full-Size Background */
.hero {
  position: relative;
  background: url('../images/480182713_991897309490684_1612936752191291069_n.jpg') no-repeat center center/cover;
  height: 100vh; /* Full viewport height */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8); /* 80% opaque overlay */
  z-index: 1;
}

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

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

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

/* Jazzy Facebook Button */
.facebook-btn {
  display: inline-block;
  padding: 1em 2em;
  background: linear-gradient(45deg, #4267B2, #29487d);
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.facebook-btn::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.3) 10%, transparent 10%);
  background-size: 50px 50px;
  transform: rotate(25deg);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.facebook-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

.facebook-btn:hover::before {
  opacity: 1;
}

/* Page Header for Gallery, Location, Contact Pages */
.page-header {
  background: #444;
  color: #fff;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.3);
  margin-bottom: 1rem;
}

/* Main Sections (intro, gallery, contact-section, map-section) */
.intro,
.gallery,
.contact-section,
.map-section {
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Gallery Grid - Uniform Image Display */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.gallery-item {
  overflow: hidden;
  height: 200px; /* Fixed height for uniform appearance */
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Lightbox Overlay */
#lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

#lightbox-overlay .lightbox-content {
  position: relative;
}

#lightbox-overlay .lightbox-content img {
  max-width: 90%;
  max-height: 90%;
  border: 5px solid #fff;
}

#lightbox-overlay .lightbox-close {
  position: absolute;
  top: -20px;
  right: -20px;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
}

/* Contact Form */
form {
  display: flex;
  flex-direction: column;
  max-width: 500px;
  margin: 0 auto;
}

form label {
  margin: 0.5rem 0 0.25rem;
}

form input[type="text"],
form input[type="email"],
form textarea {
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

form button {
  margin-top: 1rem;
  padding: 0.75rem;
  background: #333;
  color: #fff;
  border: none;
  cursor: pointer;
}

form button:hover {
  background: #ffcc00;
  color: #333;
}

/* Footer */
footer {
  text-align: center;
  padding: 1rem;
  background: #333;
  color: #fff;
  margin-top: 2rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
  nav.sidebar {
    width: 100%;
    height: auto;
    position: relative;
    box-shadow: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0.5rem 1rem;
  }
  
  nav.sidebar .logo {
    margin-bottom: 0;
    margin-right: 1rem;
  }
  
  nav.sidebar ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  
  nav.sidebar ul li {
    margin: 0 0.5rem;
  }
  
  .main-content {
    margin-left: 0;
    padding: 1rem;
  }
  
  .hero {
    height: 70vh;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .page-header {
    font-size: 1.5rem;
    padding: 0.5rem;
  }
}
