/* Make image with id 'bh' smaller */
#logo {
    width: 100%;
    height: 350px;
    object-fit: contain;
    margin: 10px 20px 10px 0;
    align-items: left;
    display: block;
} 
body {
    background-color: #f0f0f0;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}
.homeheader {
    background: #2a7ae2;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    overflow: visible;
     /* Allows dropdown to extend outside header */
    position: relative;
}
.sidebar {
    height: 100%;
    width: 200px;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #2a7ae2;
    padding-top: 20px;
    display: block;
}

.sidebar ul {
    list-style-type: none;
    padding: 0;
    margin-top: 140px;
}
.sidebar ul li {
    padding: 20px;
    text-align: left;
}
.sidebar ul li a {
    color: white;
    text-decoration: none;
    display: block;
    font-size: 1.1em;
    font-weight: bold;
}
.pageh {
   background: #2a7ae2;
    color: #fff;
    padding: 180px 0;
    text-align: center;
    overflow: hidden;
    position: relative;
}
#blossom-header {
    background-image: url('../Blossom/images/blossomheader.jpg');
    background-size:cover;      /* Makes the image cover the header area */
    background-repeat: no-repeat;
    background-position: left;
    height: 200px  ;
    width: 100%;
             /* Set a fixed height for the header */
}
#koviana-header {
    background-image: url('../koviana/imagenes/kheader.jpg');
    background-size:cover;      /* Makes the image cover the header area */
    background-repeat: no-repeat;
    background-position: center;
    height: 100%;
}
#Muhfasa-header {
    background-image: url('../mufasa/images/muhfasaheader.jpg');
    background-size:cover;      /* Makes the image cover the header area */
    background-repeat: no-repeat;
    background-position: center;
    height: 100%;
}
nav ul {
    list-style: none;
    padding: 0;
}
nav ul li {
    display: inline;
    margin: 0 15px;
}
nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}
section {
    margin: 30px auto;
    max-width: 800px;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
}
h2 {
    color: #2a7ae2;
}
.gallery, .video-section {
    text-align: left;
    margin: 20px 0;
}
.gallery img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}
button{
    background: linear-gradient(90deg, #2a7ae2, #00c6fb);
    color: #fff;
    border: none;
    border-radius: 25px;
    padding: 12px 32px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(42,122,226,0.15);
    transition: background 0.3s, transform 0.2s;
}

button:hover {
  background: linear-gradient(90deg, #fbcd00, #fbe200);
  transform: scale(1.05);
}
#home{
    position: absolute;
    left: 20px;
    bottom: 20px;
    z-index: 10;
}
/* Dropdown container */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position: absolute;
  background: #fff;
  min-width: 180px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
  z-index: 100;
  margin-top: 8px;
  border-radius: 8px;
  padding: 0;
}

/* Dropdown links */
.dropdown-content li a {
  color: #2a7ae2;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  font-weight: normal;
}

.dropdown-content li a:hover {
  background: #f0f0f0;
}

footer {
  background: #2a7ae2;
  color: #fff;
  text-align: center;
  padding: 30px 0 10px 0;
  margin-top: 40px;
}
.footer-content ul {
  list-style: none;
  padding: 0;
  margin: 10px 0 0 0;
  display: flex;
  justify-content: center;
  gap: 30px;
}
.footer-content ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.2s;
}
.footer-content ul li a:hover {
  color: #fbcd00;
}

li {
  list-style: none;
  margin: 6px 0;
}

li img {
  vertical-align: middle;
  margin-right: 8px;
}

/* Base link style for Facebook */
a.fb-link {
  color: #1877F2;              /* Facebook blue */
  font-weight: bold;
  text-decoration: none;
  vertical-align: middle;
}

/* Hover / active states */
a.fb-link:hover {
  color: #145dbf;              /* darker blue on hover */
  text-decoration: underline;
}
a[href^="https://wa.me/"] {
  color: #25D366; /* WhatsApp green */
  text-decoration: none;
  font-weight: bold;
  vertical-align: left;
}
a[href^="https://wa.me/"]:hover {
  text-decoration: underline;
}


.main-content  { margin-left: 200px; }

@media screen and (max-width: 1286px) {
  .sidebar {
    display: none !important;
  }
  .main-content {
    margin-left: 0 !important;
  }

  .dropdown-content {
    position: static;        /* stop it from overflowing the screen */
    display: none;           /* still hidden until hovered or clicked */
    width: 100%;             /* make it full width of screen */
    box-shadow: none;        /* remove shadow for cleaner mobile look */
    margin: 0;
    border-radius: 0;
    background: #fff;
  }

  .dropdown-content li a {
    padding: 14px;
    text-align: left;
    font-size: 1em;
  }

  /* Optional: if you want dropdown to stack vertically on mobile */
  nav ul {
    display: block;
    text-align: left;
  }

  nav ul li {
    display: block;
    margin: 0;
  }

  nav ul li a {
    display: block;
    padding: 12px;
  }

}