@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Latin+Modern+Roman&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&display=swap');


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

body {
  font-family: "Montserrat", sans-serif;
  font-weight: 450;
  font-size: 16px;
  background: transparent;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

/* font-weight: 400; /* Regular
font-weight: 450;  slightly heavier
font-weight: 500;  Medium
font-weight: 550;  between Medium and SemiBold
font-weight: 600;  SemiBold */

ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}


.primary-navigation {
  position: fixed;
  top: 0;
  width: 100%;
  background: transparent;
  z-index: 999;
  transition: box-shadow 0.3s ease;
}

body.scrolled .primary-navigation {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.primary-navigation .nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  padding: 10px;
  width: 100%;
}

.home-link {
  display: inline-block;
  padding: 0;
}

.home-link:hover {
  color: #3C6AE7;
}

.home-logo {
  height: 50px;
  width: auto;
}

.menu-icon {
  order: 2;
  display: none;
  font-size: 2rem;
  cursor: pointer;
  padding: 1rem;
}

.menu {
  order: 3;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 80px;
}

.menu li {
  position: relative;
  color: #000000;
  padding: 0 15px;
  font-weight: 600;
  /*border-left: 2px solid #3ca0e7;*/
}

.menu li:first-child {
  border-left: none;
}

.menu li a {
  text-decoration: none;
  color: #000000;
  font-size: 16px;
  font-weight: 600;
}

.menu li a:hover,
.submenu-label:hover {
  color: #3C6AE7;
}

.menu li ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  padding: 12px 20px;
  border-radius: 20px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  width: 260px;
  box-sizing: border-box;
  white-space: nowrap;

}

.menu li:hover > ul {
  display: block;
}

.menu li ul li {
  padding: 10px 15px;
}

.menu li ul li a {
  padding: 8px 30px 8px 12px;
  display: block;
  border-left: 2px solid transparent;
  transition: border-color 0.3s ease;
  color: #000000 !important;
  font-weight: 600;
}

.menu li ul li a:hover {
  /* border-left-color: #3ca0e7; */
  border-left-color:#3C6AE7;
  color: #3C6AE7; !important;
}

.menu li:last-child ul {
  right: 0;
  left: auto;
  width: 260px;
}

  .logo {
  display: flex;
  justify-content: center;
}

  .logo img {
  width: 25%;
  height: auto;
  margin-bottom: 10px;
}

@media (min-width: 769px) {
  .primary-navigation .nav-container {
    padding-top: 0;
    padding-bottom: 0;
  }
    .home-link {
    margin-left: 30px;
  }

  .home-logo {
    height: 70px;
  }
  .menu li:last-child {
    margin-right: 0px;
  }
}


/* Mobile Styles */
@media (max-width: 1100px) {
  .primary-navigation .nav-container {
    flex-direction: row;
    flex-wrap: wrap;
  }

  ul.menu {
  display: none;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  background: #ffffff;
  border-radius: 0;
  margin: 0;
  padding: 8px 20px;
}

ul.menu li ul {
  width: 100%;
  position: static;
  box-shadow: none;
  background: #eee;
  padding: 0;
  display: none;
}
  .menu-icon {
    display: block;
    font-size: 28px;
    padding: 10px 35px 10px 20px;
    color: #000000;
  }

  .menu {
    display: none;
    background: #ffffff;
    flex-direction: column;
    width: 100%;
    /*background: #f9f9f9;*/
    border-radius: 20px;
    margin-top: 0;
  }

  #menu-toggle:checked + .menu-icon + .menu {
    display: flex;
  }

  .menu li {
    width: 100%;
    padding: 12px 20px;
    border-left: none;

  }

  .menu li ul {
    position: static;
    display: none;
    background: #ffffff !important;
    padding: 0;
    box-shadow: none;
    width: 100%;
    font-weight: 600;
  }

  .submenu-label {
	color: #000000;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
  }

  .submenu-label::after {
    content: "▼";
    font-size: 12px;
    margin-left: auto;
  }

  .submenu-toggle:checked + .submenu-label::after {
    content: "▲";
  }

  .submenu-toggle:checked + .submenu-label + ul {
    display: block;
  }

  .menu li ul li {
    width: 100%;
    padding: 8px 20px;
    /*border-top: 1px solid #ccc;*/
  }

  .menu li:hover > ul {
    display: none;
  }

    .home-link {
    margin-left: 2rem;
  }

   .menu li ul li a {
    font-weight: 600;
  }
    .content {
    text-align: justify;
  }

  .content p {
    text-align: justify;
  }

  .logo img {
    width: 55%;   /* mobile size */
  }



}



.content {
  background: transparent;
  padding: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 60px;
  padding-bottom: 40px;
}

.content .center-text p {
  text-align: center;
}

@media (min-width: 769px) {
  .content {
	background: transparent;
    padding-top: 60px;
    padding-left: 4rem;
    padding-right: 4rem;
    padding-bottom: 40px;

    font-size: 1.4rem;
	line-height: 1.7;
    text-align: justify;
  }
}

.myGallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 5rem auto;
}

.myGallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 8px;
  cursor: pointer;
}

/* Lightbox */

.lightbox {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
  z-index: 1000;
  flex-direction: column;
}

.lightbox-content {
  max-width: 90%;
  max-height: 80%;
  border: 4px solid white;
  border-radius: 10px;
}

.close,
.prev,
.next {
  position: absolute;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  user-select: none;
}

/* Keep close button above navigation zones */
.close {
  z-index: 20;
}

.prev,
.next {
  z-index: 10;
}

/* Larger clickable navigation areas */
.prev,
.next {
  top: 0;
  height: 100%;
  width: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prev {
  left: 0;
}

.next {
  right: 0;
}

.close {
  top: 30px;
  right: 40px;
}

.lightbox-img {
  cursor: pointer;
}

.brochure {
    max-width: 45em;
    margin: 2em auto;
    text-align: center;
  }

  .brochure img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 10px;
  }

@media (max-width: 768px) {
  /* Reduce gap between logo and first menu item */
  ul.menu {
    padding-top: 0; /* remove top padding */
  }

/*
  .menu li:first-child {
    padding-top: 10px;
  }
*/
}

.content ul {
  list-style-type: disc;
  margin-left: 1.5em;
  padding-left: 0;
}

.content ul ul {
  list-style-type: circle;   /* sub-list */
  margin-left: 1.5em;
}

.content ol {
  list-style-type: decimal;
  margin-left: 1.5em;
}

/* =========================
   CONTENT READABILITY LAYER
   ========================= */

.content {
  max-width: 900px;
  margin: 0 auto;
  margin-top: 0;
  padding: 1.5rem 1.2rem 1rem;
  font-size: 1.05rem;
  line-height: 1.75;
  color: #000000;
}

/* Desktop improvements */
@media (min-width: 769px) {
  .content {
    max-width: 1200px;
    padding: 2.5rem 4rem 1rem;
    font-size: 1.15rem;
    line-height: 1.8;
  }
}

/* =========================
   HEADINGS
   ========================= */

.content h1 {
  font-size: 2rem;
  text-align: center;
  margin: 2.5rem 0 1.5rem;
  line-height: 1.3;
}

.content h2 {
  font-size: 1.6rem;
  text-align: center;
  margin: 3rem 0 1.2rem;
}

/* Responsive heading sizes */
@media (min-width: 769px) {
  .content h1 {
    font-size: 2.4rem;
  }

  .content h2 {
    font-size: 1.8rem;
  }
}

/* =========================
   PARAGRAPHS
   ========================= */

.content p {
  margin-bottom: 1.5rem;
  text-align: justify;
  hyphens: auto;
}

/* Centered paragraphs (addresses, footer text) */
.content p.center {
  text-align: center;
}

/* =========================
   LISTS
   ========================= */

.content ul {
  list-style-type: disc;
  margin-left: 1.5rem;
  margin-bottom: 2rem;
}

.content ul ul {
  list-style-type: circle;
  margin-top: 0.5rem;
  margin-left: 1.5rem;
}

.content li {
  margin-bottom: 0.6rem;
}

/* =========================
   HORIZONTAL RULE
   ========================= */

.content hr {
  width: 70%;
  margin: 3rem auto;
  border: none;
  height: 2px;
  background: #333;
  opacity: 0.3;
}

/* =========================
   LINKS
   ========================= */

.content a {
  color: #3C6AE7;
  text-decoration: none;
  font-weight: 600;
}

.content a:hover {
  text-decoration: underline;
}

/* =========================
   DEVANAGARI / SPECIAL TEXT
   ========================= */

.devanagari-text {
  letter-spacing: 0.03em;
}
/* =====================================
   FLUID TYPOGRAPHY – TIGHT SPACING
   ===================================== */

.content {
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 3rem;

  padding-top: clamp(1.3rem, 2.5vw, 2.5rem);
  padding-bottom: clamp(2rem, 3vw, 5rem);

  padding-left: clamp(2rem, 6vw, 6rem);
  padding-right: clamp(2rem, 6vw, 6rem);

  font-size: clamp(1rem, 0.8vw + 0.8rem, 1.1rem);
  line-height: 1.75;
  color: #000000;
}

/* =========================
   HEADINGS
   ========================= */

.content h1 {
  font-size: clamp(1.8rem, 2vw + 0.8rem, 1.8rem);
  text-align: center;
  margin: clamp(1.8rem, 3vw, 2.5rem) 0 clamp(0.8rem, 1.5vw, 1.2rem);
  line-height: 1.25;
  margin-bottom: 1.9rem;
}

.content h2 {
  font-size: clamp(1.6rem, 1.8vw + 1rem, 2rem);
  text-align: center;
  margin: clamp(2rem, 3vw, 2.6rem) 0 clamp(0.7rem, 1.3vw, 1rem);
  margin-bottom: 1.9rem;
}

/* =========================
   PARAGRAPHS
   ========================= */

.content p {
  margin-bottom: 1.8rem;
  text-align: justify;
  hyphens: auto;
}

/* Reduce gap between consecutive paragraphs */
.content p + p {
  margin-top: 0;
}

/* =========================
   LISTS
   ========================= */

.content ul {
  list-style-type: disc;
  margin-left: clamp(1.2rem, 1.8vw, 1.6rem);
  margin-bottom: clamp(1rem, 1.8vw, 1.6rem);
}

.content ul ul {
  list-style-type: circle;
  margin-top: 0.4rem;
  margin-left: clamp(1.2rem, 1.6vw, 1.5rem);
}

.content li {
  margin-bottom: 0.4rem;
}

/* =========================
   HR
   ========================= */

.content hr {
  width: 70%;
  margin: clamp(2.2rem, 3vw, 3rem) auto;
  border: none;
  height: 2px;
  background: #333;
  opacity: 0.3;
}

/* =========================
   LINKS
   ========================= */

.content a {
  font-weight: 600;
  color: #3C6AE7;
  text-decoration: none;
}

.content a:hover {
  text-decoration: underline;
}

.logo-image1 {
  width: 80%;        /* scales relative to its container */
  max-width: 340px;  /* prevents it from being too large on big screens */
  height: auto;      /* maintains aspect ratio */
  display: block;    /* removes inline spacing */
  margin: 0 auto;    /* centers the logo */
}

/* Active menu link */
.menu li a.active {
    color:#3C6AE7 !important;      /* text turns white */
    border-bottom: 2px solid #3C6AE7;  /* underline */
    padding-bottom: 4px;          /* small spacing for underline */
}

/* Optional: keep hover effect */
.menu li a.active:hover {
    color: #3C6AE7 !important;
}

.background-pattern{

    position:fixed;
    inset: -100px;   /* extends beyond the screen edges */

    z-index:-1;

    background:
        repeating-linear-gradient(
            90deg,
            white 0px,
            white 2px,
            #fafafaff 2px,
            #f7f7f7ff 10px
        );

/* fcfcfcff / fafafaff / f7f7f7ff / f5f5f5ff / f2f2f2ff / f0f0f0ff / edededff / ebebebff / e8e8e8ff / e5e5e5ff */

    filter:url(#warp);
}

.bottom-pattern {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 170px;

    background-image: url("assets/pattern_gamosa.webp");
    background-repeat: repeat-x;
    background-position: left bottom;
    background-size: auto 170px;

    margin-top: 3rem;
}

.top-pattern {
    margin-top: 0px;
    width: 100%;
    height: 160px;   /* 2 × 80px */

    background-image:
        url("assets/pattern_gamosa_black.webp"),
        url("assets/pattern_gamosa_black.webp");

    background-repeat:
        repeat-x,
        repeat-x;

    background-size:
        auto 80px,
        auto 80px;

    background-position:
        left top,
        left 80px;
}

@media (max-width: 768px) {

  .prev,
  .next {
    width: 80px;
    font-size: 40px;
  }

}


