*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

/* Accessibility helper */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}



body::after {
    content: '';
    position: fixed;
    padding: auto;
    top: 0;
    left: 0;
    bottom:0;
    right: 0;
    background: url(../Watermark.png) center center; 
    background-repeat: no-repeat; 
    background-size: cover;
    z-index: -1;
    pointer-events: none;
    opacity: 0.3;
    padding-top: 60px;
}

body {
    margin: 0;
    font-family: century gothic;
}

.content {
font-family: century gothic;
    font-size: 20px;
    color: black;
    text-align: center;
    margin-left: 10px;
    margin-right: 10px;
    justify-content: center;
    background-color: #A4832Fb3;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    padding: 5px;
    border-radius: 10px;}

#top {
  font-size: clamp(22px, 5vw, 44px);
  text-align: center;
  padding: 14px;
  color: black;
}

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    font-family: century gothic;
    color: #111827;
    width: 100%;
    background: linear-gradient(
        to top,
        sienna 0%,
        rgb(219, 151, 120) 40%,
        rgb(252, 207, 186) 100%
    );
    color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.container {
  margin: 0 auto;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.menu-toggle {
  display: none;              /* shown only on mobile via media query */
  font-size: 28px;
  background: transparent;
  border: 0;
  color: white;
  cursor: pointer;
}

.Navigate {
    position: sticky;
    font-size: 24px;
    display: inline-flex;
    overflow: visible;
    float: inline-start;
    text-align: center;
    font-family: century gothic;
    gap: calc(10%);
}

.nav-links li a,
.dropdown-toggle,
.submenu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  color: white;
  text-decoration: none;
  font-weight: 500;

  padding: 10px 12px;
  border-radius: 8px;

  background: transparent;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;            /* prevents overflow even on small widths */
}

.nav-links li a:hover {
    background-color: #ddd;
    color: black;
    padding: auto;
    margin: auto;
    border-radius: 8px;
}

.Sub_Navigation {
    list-style-type: none;
    overflow: hidden;
    margin: auto;
    display: flex;
    justify-content: right;
    background-color: sienna;
    font-size: 20px;
}

.Sub_Navigation li a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

.Sub_Navigation li a:hover {
    background-color: #ddd;
    color: black;
}

.dropdown-content {
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.information {
    text-align: center;
}

.title {
font-family: century gothic;
    font-size: 34px;
    color: #C5AC69;
    -webkit-text-stroke: 1px black;
    display: inline-block;
    justify-content: center;
    background-color: rgba(136, 45, 23, 0.7);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    padding: 5px 10px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.50);
}

.form{
    margin-left: 3%;
    font-family: Arial;
    color: black;
    text-align: left;
    padding-bottom: 20px;
    padding-top: 20px;
}

.social {
    position: sticky;
    font-size: 24px;
    display: inline-flex;
    float: inline-start;
    padding: auto;
    overflow: hidden;
    text-align: center;
    font-family: century gothic;
    gap: calc(10%);
    justify-content: left;
}

.social-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 4px;
  text-decoration: none;
}

.social-links li a {
  display: inline-flex;
  padding: 10px;
  border-radius: 8px;
  color: white;
}

.nav-links li a:hover,
.dropdown-toggle:hover,
.submenu-toggle:hover,
.social-links li a:hover {
  background-color: #ddd;
  color: black;
}

.social-links li a:hover {
    background-color: #ddd;
    color: black;
    padding: auto;
    margin: auto;
    border-radius: 8px;
}

.gallery-wrap {
    width: 80%;
    padding-bottom: 20px;
    padding-top: 20px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;

        mask-image: linear-gradient(
            to right,
            transparent,
            black 15%,
            black 85%,
            transparent,
        );

        -webkit-mask-image: linear-gradient(
            to right,
            transparent,
            black 15%,
            black 85%,
            transparent,
        );
    border-radius: 4px;
}

.gallery {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    overflow-y: visible;
    position: relative;

    padding-top: 80px; /* ← KEY FIX */
    padding-left: 10px;
}

.gallery img {
    width: 200px;
    height: 200px;

    object-fit: cover;
    border-radius: 14px;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        width 0.25s ease,
        height 0.25s ease;

    position: relative;
    z-index: 1;
    transform-origin: center bottom;
}

.gallery::-webkit-scrollbar{
    display: none;
}


#back,#forward {
    font-size: 30px;
    background-color: sienna;
    color: white;
    border: none;

    width: 50px;
    height: 50px;

    border-radius: 50%;
    cursor: pointer;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;         
    aspect-ratio: 1 / 1;    

    z-index: 1000;             
}

#back:hover,#forward:hover {
    background-color: rgb(219, 151, 120);
    transform: scale(1.1);
    transition: transform 0.3s;;
}

.gallery img:hover {
    height: auto;
    width: auto;

    max-height: 300px;
    max-width: 300px;

    object-fit: contain;

    transform: translateY(-20px) scale(1.2);
    z-index: 20;

    box-shadow: 0 18px 45px rgba(0,0,0,0.35);
    cursor: pointer;
}

.nav-links li {
    position: relative; /* anchor for dropdown */
}

.dropdown-menu { top: 100%; left: 0; }

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;

    background-color: rgb(201, 124, 88);
    min-width: 200px;

    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    text-decoration: none;

    z-index: 2000;
}

.dropdown-menu li {
    position: relative;
}

/* dropdown links */
.dropdown-menu li a {
    color: rgb(248, 248, 248);
    padding: 12px 16px;
    text-align: left;
    font-size: 18px;
}

/* hover effect inside dropdown */
.dropdown-menu li a:hover {
    background-color: rgba(160, 82, 45, 0.15);
    color: black;
}

/* SHOW DROPDOWN ON HOVER */
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu {
   position: absolute;
    top: 0;
    left: 100%;               /* pushes it to the right of the parent */
    margin-left: 8px;         /* small gap */

    background-color: rgb(201, 124, 88);
    min-width: 200px;

    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);

    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.25s ease;

    z-index: 3000;
}
.submenu-icon {
    margin-left: 6px;
    font-size: 12px;
    vertical-align: middle;
}
.has-submenu {
    position: relative; /* anchor for submenu */

}

.submenu {
  top: 0;
  left: 100%;
  margin-left: 8px;
  transform: translateX(10px);
}

.submenu li a {
    color: rgb(248, 248, 248);
    padding: 12px 16px;
    text-align: left;
    font-size: 18px;
    display: block;
}

.submenu li a:hover {
    background-color: rgba(160, 82, 45, 0.15);
    color: black;
}

.has-submenu > a{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.has-submenu:hover > .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.dropdown-menu,
.submenu {
  list-style: none;
  margin: 0;
  padding: 0;

  position: absolute;
  background-color: rgb(201, 124, 88);
  min-width: 200px;

  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s ease;

  z-index: 3000;
}

.dropdown-menu li,
.submenu li {
    list-style: none;
}

.submenu {
   position: absolute;
    top: 0;
    left: 100%;               /* pushes it to the right of the parent */
    margin-left: 8px;         /* small gap */

    background-color: rgb(201, 124, 88);
    min-width: 200px;

    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);

    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.25s ease;

    z-index: 3000;
}
.submenu-icon {
    margin-left: 6px;
    font-size: 12px;
    vertical-align: middle;
}
.has-submenu {
    position: relative; /* anchor for submenu */

}

.submenu li a {
    color: rgb(248, 248, 248);
    padding: 12px 16px;
    text-align: left;
    font-size: 18px;
    display: block;
}

.submenu li a:hover {
    background-color: rgba(160, 82, 45, 0.15);
    color: black;
}

.has-submenu > a{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.has-submenu:hover > .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.dropdown-menu,
.submenu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.dropdown-menu li,
.submenu li {
    list-style: none;
}

.footer_top {
    padding: 20px;
    text-align: center;
    font-family: century gothic;
    margin-top: 20px;
}

.footer_title {
    font-size: 28px;
    color: rgb(216, 140, 105);
    margin-bottom: 10px;
}

.footer {
    font-size: 16px;
    color: black;
    margin-top: 15px;
    margin-bottom: 20px;
    text-align: center;
}