@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap'); 
@import url('https://fonts.googleapis.com/css2?family=Patua+One&display=swap');

* { 
    margin: 0px; 
    padding: 0px; 
    box-sizing: border-box; 
    font-family: 'Montserrat', sans-serif;
} 

::-webkit-scrollbar {
    display: none;
}

body {
    color: white;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100vw;
}

#topBar {
    display: flex;
    width: 100vw;
    height: 110px;
    justify-content: space-between;
    align-items: center;
    padding-right: 80px;
    padding-left: 80px;
    background-color: white;
    z-index: 1000;
}

#navBar {
    display: flex;
    gap: 20px;
}

#navBar a {
    text-decoration: none;
    color: black;
    font-size: 14px;
    font-weight: bold;
    transition: color 0.3s ease;
}

#navBar a:hover {
    color: #15325a;
}

/* Sign out button specific style */
#navBar a[href*="logout"] {
    color: #ff4444;
    transition: color 0.3s ease;
}

#navBar a[href*="logout"]:hover {
    color: #15325a;
}

#logo {
    width: 200px;
}

#footer {
    color: white;
    background-color: #1e4679;
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 40px;
    padding-left: 40px;
}

#footer a {
    text-decoration: none;
    color: white;
}

#footer a:hover {
    opacity: 0.7;
  }


/*Home page css*/

  /* TITLE */

  #titleDiv {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center; 
    justify-content: center; 
    text-align: center; 
    min-height: calc(100vh - 110px);
    width: 100%; 
    margin: 0 auto;
}

#titleDiv h1 {
    font-family: "Patua One", serif;
    color: #1e4679;
    font-size: 120px; 
    font-weight: bold;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.2); 
    margin: 0 auto;
    padding: 0;
    letter-spacing: 2px;
    max-width: 1200px;
}

#titleDiv p {
    font-family: "Montserrat", sans-serif;
    color: #1e4679;
    font-size: 24px; 
    max-width: 800px; 
    line-height: 1.8; 
    margin: 20px auto 0;
    padding: 0;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.1);
}


/* ContentDiv Styles */

#contentDiv {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  width: 100%;
  border-top: 1px solid #1e4679;
  border-bottom: 1px solid #1e4679;
}

.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  padding: 20px;
  color: #1e4679; 
}

.card-icon {
    width: 48px; 
    height: 48px;
    margin-bottom: 10px;
}

.card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: bold;
}

.card p {
  font-size: 16px;
  line-height: 1.5;
}

.card:not(:last-child) {
  border-right: 1px solid #1e4679; 
}

/* CARROUSSEL */

#carouselSection {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 40px 20px;
    background-color: #1e4679;
}

#textBox {
    width: 100%;
    max-width: 800px;
    padding: 20px;
    margin-bottom: 40px;
    text-align: center;
}

#textBox h2 {
    font-family: "Patua One", serif;
    margin-bottom: 20px;
    font-size: 32px;
    color: white;
}

#textBox p {
    font-size: 20px;
    color: white;
    line-height: 1.6;
}

.image-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
}

.gallery-item {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 8px;
}

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


#contact-info-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 60px 20px;
  background-color: white;
  color: #1e4679;
}

#contact-info-section h2 {
  font-family: "Patua One", serif;
  font-size: 36px;
  margin-bottom: 20px;
  text-align: center;
}

#contact-info-section p {
  font-size: 20px;
  line-height: 1.6;
  text-align: center;
  max-width: 800px;
  margin-bottom: 30px;
}

.contact-link {
  display: inline-block;
  padding: 15px 30px;
  background-color: #1e4679;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.contact-link:hover {
  background-color: #15325a;
}

/*About page css*/


#about {
    color: black;
}

.section-title {
  font-family: "Patua One", serif;
    text-align: center;
    font-size: 75px;
    font-weight: 700;
    margin-bottom: 60px;
}

.about-section {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.about-section.first {
    background-color: #1e4679;
}

.about-section.first .about-text h2,
.about-section.first .about-text p {
    color: white;
}

.about-section.second {
    background-color: white;
}

.about-section.second .about-text h2,
.about-section.second .about-text p {
    color: #1e4679;
}

.about-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    height: 600px;
    width: 100vw;
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

.reverse {
  flex-direction: row-reverse;
}

.about-text {
    flex: 1;
    max-width: 500px;
}

.about-text h2 {
  font-family: "Patua One", serif;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 0px white;
}

.about-text p {
    font-size: 24px;
    color: white;
    line-height: 1.6;
    text-align: justify;
}


.about-image {
    width: 700px;
    height: 400px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 8px;
}

.about-image img {
    width: 100%; 
    height: 100%; 
    object-fit: cover;
}

/*Menu page CSS*/

#navBar a:hover {
    color: #1e4679;
  }

  #menu { 
    padding: 60px 20px;
    text-align: center;
  }

  #menu h1 {
    font-family: "Patua One", serif;
    font-size: 36px;
    margin-bottom: 40px;
  }

  .menu-category {
    margin-bottom: 60px;
  }

  .menu-category h2 {
    font-family: "Patua One", serif;
    font-size: 28px;
    color: #333;
    margin-bottom: 30px;
  }

  .menu-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
  }

  .menu-item {
    width: 300px;
    background-color: #f4f4f4;
    color: black;
    padding: 20px;
    border-radius: 10px;
    text-align: left;
    transition: transform 0.2s ease;
  }

  .menu-item:hover {
    transform: translateY(-5px);
  }

  .menu-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
  }

  .menu-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .menu-item p {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .hidden {
    display: none;
  }

  .show-more-btn {
    margin: 20px auto 0 auto;
    width: 66%;
    max-width: 640px;
    padding: 12px 20px;
    background-color: #1e4679;
    color: white;
    border: none;
    font-weight: bold;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.2s;
    display: block;
    text-align: center;
  }

  .show-more-btn:hover {
    background-color: #15325a;
  }

/*contact page css*/

.contact-page-container {
    width: 100vw;
    margin: 0;
    padding: 40px 0;
}

.contact-form-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.contact-info {
    padding: 20px;
    color: #1e4679;
}

.contact-info h2 {
    font-family: "Patua One", serif;
    font-size: 36px;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 18px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.contact-form {
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: bold;
    color: #1e4679;
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #1e4679;
    box-shadow: 0 0 0 2px rgba(30, 70, 121, 0.1);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.map-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    margin-bottom: 60px;
}

.map-section h2 {
    font-family: "Patua One", serif;
    font-size: 36px;
    color: #1e4679;
    margin-bottom: 20px;
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
}

.faq-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    margin-bottom: 60px;
}

.faq-header {
    margin-bottom: 40px;
}

.faq-header h2 {
    font-family: "Patua One", serif;
    font-size: 48px;
    color: #1e4679;
    margin-bottom: 10px;
}

.faq-header h3 {
    font-size: 24px;
    color: #1e4679;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    padding: 15px 20px;
    background-color: #f8f9fa;
    font-weight: 600;
    color: #1e4679;
    cursor: pointer;
}

.faq-answer {
    padding: 15px 20px;
    background-color: white;
    color: #495057;
}

.social-media-container {
    width: 100vw;
    margin: 0;
    padding: 40px;
    background-color: #1e4679;
    text-align: left;
    color: white;
}

.social-media-heading {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    padding-left: 20px;
}

.social-media-container p {
    font-size: 16px;
    margin-bottom: 20px;
    padding-left: 20px;
}

.social-media-links {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    padding-left: 20px;
}

.facebook-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px; /* Set width to 40px */
    height: 40px; /* Set height to 40px */
    background-color: #4267B2;
    color: white;
    border-radius: 50%; /* Makes the button circular */
    text-decoration: none;
    font-size: 18px; /* Adjust font size for the icon */
    transition: background-color 0.3s ease;
}

.facebook-button:hover {
    background-color: #364e92;
}

.contact-link {
    display: inline-block;
    padding: 15px 30px;
    background-color: #1e4679;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.contact-link:hover {
    background-color: #15325a;
}

/*Media QWeries*/

@media (max-width: 1600px) {
  #titleDiv h1 {
    font-size: 75px;
    max-width: 900px;
  }

  #titleDiv p {
    max-width: 600px;
    font-size: 18px;
  }
}

@media (max-width: 1300px) {
  #titleDiv h1 {
    font-size: 70px;
    max-width: 800px;
  }

  #titleDiv p {
    max-width: 550px;
    font-size: 16px;
  }

  #contentDiv {
    flex-direction: column;
    align-items: center;
    padding: 20px;
  }
    
  #carouselSection {
      flex-direction: column;
      align-items: center;
      padding: 20px;
      height: auto;
  }
    
  #textBox {
      max-width: 90%;
      height: auto;
  }

.about-text {
  margin: 20px;
}

  .about-text h2 {
    font-size: 36px;
  }

  .about-text p {
    font-size: 20px;
  }


.about-image {
    width: 600px;
    height: 350px;
    padding: 20px;
}

.image-gallery {
    grid-template-columns: repeat(2, 1fr);
}

  .card {
    width: 100%;
    max-width: 600px;
    margin-bottom: 30px;
  }

  .card:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid #1e4679;
    padding-bottom: 30px;
  }
}


@media (max-width: 1100px) {

  .about-text {
  flex-direction: column;
}

  .about-text h2 {
    font-size: 36px;
  }

  .about-text p {
    font-size: 20px;
  }


  .about-image {
    width: 600px;
    height: 350px;
    padding: 20px;
}
}

@media (max-width: 900px) {
  .section-title {
    font-size: 55px;
}

.about-box {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  height: 600px;
  padding: 0px;
}

.about-image {
  width: 400px;
    height: 300px;
}
 .about-text{
  padding-top: 100px;
  padding-bottom: 0px;
 }
  .about-text h2 {
    font-size: 30px;
  }

  .about-text p {
    font-size: 16px;
  }


  .about-image {
    width: 600px;
    height: 350px;
    padding: 60px;
    padding-top: 0px;
}
}

@media (max-width: 750px) {

    #topBar {
      flex-direction: column;
      padding: 20px;
      gap: 10px;
      height: auto;
      padding-right: 20px;
      padding-left: 20px;
    }

    #navBar {
      flex-wrap: wrap;
      justify-content: center;
    }

    .card {
        width: 100%;
        max-width: 100%;
        margin-bottom: 20px;
    }

    .card:not(:last-child) {
        padding-bottom: 20px;
    }

    .menu-item {
      width: 90%;
    }

    #footer {
      flex-direction: column;
      text-align: center;
      gap: 20px;
      padding: 30px 20px;
      height: auto;
    }

    #footer p {
        padding: 0 15px;
    }

    .show-more-btn {
      width: 90%;
    }

    #titleDiv {
      min-height: calc(100vh - 140px);
      padding-top: 0;
    }

    #titleDiv h1 {
      font-size: 50px;
      max-width: 500px;
    }

    #titleDiv p {
      max-width: 400px;
      font-size: 12px;
    }
  
      #carouselSection {
          flex-direction: column;
          align-items: center;
          padding: 20px;
          height: auto;
      }
  
      #textBox {
          max-width: 90%;
          height: auto;
      }

    .image-gallery {
        grid-template-columns: 1fr;
    }
    
    #textBox h2 {
        font-size: 28px;
    }
    
    #textBox p {
        font-size: 16px;
    }
  }

  @media (max-width: 768px) {
    .contact-form-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-info {
        padding: 0;
    }

    .contact-form {
        padding: 20px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-info h2,
    .map-section h2,
    .faq-header h2 {
        font-size: 28px;
    }

    .faq-header h3 {
        font-size: 20px;
    }

    .contact-info p {
        font-size: 16px;
    }
}

@media (max-width: 750px) {
    #contact-info-section {
        padding: 40px 20px;
    }

    #contact-info-section h2 {
        font-size: 28px;
    }

    #contact-info-section p {
        font-size: 16px;
    }
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 750px) {
    .container {
        padding: 0 20px;
    }
}

.nav-link {
    color: #1e4679;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #15325a;
}

.btn-primary {
    background-color: #1e4679;
    color: white;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #15325a;
}

