
*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --white: #ffffff;
  --off-white: #f5f5f5;
  --light-gray: #e0e0e0;
  --dark-gray: #333333;
  --gray: #666666;
  --black: #000000;
  --dark-bg: #0a0a0a;
  --dark-bg-light: #1a1a1a;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  background: var(--dark-bg);
  color: var(--off-white);
}


.background {  
position: fixed;  
top: 0;  
left: 0;  
width: 100%;  
height: 100vh;   
background-color: #000;   
background-image:url("images/BG.jpg");    
background-size:cover;  
background-position: center;  
background-attachment: fixed;  
z-index: -10;  
}

.background::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.page {
  display: none;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.page.active {
  display: block;
  opacity: 1;
}

#gallery-page {
  min-height: 100vh;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.98) 0%, rgba(20, 20, 20, 0.98) 100%);
  position: relative;
  z-index: 10;
  padding: 20px;
}


.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 20px;
  position: relative;
  z-index: 5;
}


.logo-wrapper {
  animation: fadeInScale 1s ease-out 0.2s both;
  margin-bottom: 40px;
}

.logo {
  display: block;
  width: 180px;
  height: auto;
  filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.2));
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.logo:hover {
  transform: scale(1.08);
  filter: drop-shadow(0 0 40px rgba(255, 255, 255, 0.4));
}

.menu-wrapper {
  animation: fadeInScale 1s ease-out 0.4s both;
  margin: 30px 0;
}

.menu-btn {
  display: inline-block;
  position: relative;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.menu-btn img {
  display: block;
  width: 120px;
  height: auto;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.5));
  transition: filter 0.4s ease;
}

.menu-btn::before {
  content: "";
  position: absolute;
  inset: -12px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.35s ease;
}

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

.menu-btn:hover {
  transform: scale(1.1);
}

.menu-btn:hover img {
  filter: drop-shadow(0 12px 32px rgba(255, 255, 255, 0.3));
}

.menu-btn:active {
  transform: scale(0.95);
}


.social-wrapper {
  animation: fadeInScale 1s ease-out 0.6s both;
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 20px;
}


.instagram-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: var(--off-white);
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.instagram-icon {
  width: 28px;
  height: 28px;
}

.instagram-link:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 12px 40px rgba(255, 255, 255, 0.2);
}

.instagram-link:hover .instagram-icon {
  animation: popIcon 0.4s ease;
}

.location-icon {
  width: 30px;   
  height: 30px;
  display: block;
}


.view-gallery-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  border: 2px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.05em;
}

.view-gallery-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.view-gallery-btn svg {
  width: 20px;
  height: 20px;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.view-gallery-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(255, 255, 255, 0.25);
}

.view-gallery-btn:hover::before {
  opacity: 1;
}

.view-gallery-btn:hover svg {
  transform: scale(1.15) rotate(10deg);
}

.view-gallery-btn span {
  position: relative;
  z-index: 1;
}

.footer-section {
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.99) 0%, rgba(15, 15, 15, 0.99) 100%);
  border-top: 2px solid rgba(255, 255, 255, 0.15);
  padding: 56px 20px;
  position: relative;
  z-index: 10;
  backdrop-filter: blur(8px);
  box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.8);
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 60px;
  align-items: center;
}

.footer-logo {
  animation: slideInLeft 0.8s ease-out 0.3s both;
}

.footer-logo img {
  height: 90px;
  width: auto;
  filter: drop-shadow(0 0 16px rgba(255, 255, 255, 0.15));
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
              filter 0.35s ease;
}

.footer-logo:hover img {
  transform: scale(1.1);
  filter: drop-shadow(0 0 28px rgba(255, 255, 255, 0.3));
}

.footer-center {
  display: flex;
  align-items: center;
  gap: 50px;
  animation: fadeUp 0.8s ease-out 0.4s both;
  justify-content: center;
}

.info-block {
  text-align: center;
}

.info-block h3 {
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 0 10px;
  transition: color 0.3s ease;
  font-weight: 600;
}

.info-block p {
  font-size: 1rem;
  color: var(--light-gray);
  margin: 0;
  line-height: 1.6;
  transition: color 0.3s ease;
  font-weight: 500;
}

.info-block:hover h3 {
  color: var(--white);
}

.info-block:hover p {
  color: var(--off-white);
}

.divider {
  width: 2px;
  height: 50px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
  animation: expandHeight 0.6s ease-out 0.5s both;
  border-radius: 2px;
}


.footer-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: slideInRight 0.8s ease-out 0.5s both;
}

.footer-link {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  padding-right: 0;
}

.footer-link .label {
  font-size: 0.8rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--light-gray);
  margin-bottom: 4px;
  transition: color 0.3s ease;
  font-weight: 600;
}

.footer-link .value {
  font-size: 0.95rem;
  color: var(--off-white);
  font-weight: 600;
  transition: color 0.3s ease;
}

.footer-link::before {
  content: "";
  position: absolute;
  bottom: -6px;
  right: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--light-gray), var(--white));
  transition: width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.15);
}

.footer-link:hover {
  transform: translateX(-6px);
}

.footer-link:hover .label {
  color: var(--white);
}

.footer-link:hover .value {
  color: var(--white);
}

.footer-link:hover::before {
  width: 100%;
}


.gallery-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto 60px;
  padding: 0 20px;
  animation: fadeDown 0.8s ease-out 0.2s both;
}

.gallery-header h1 {
  font-size: 2.8rem;
  margin: 0;
  color: var(--white);
  letter-spacing: 0.1em;
  font-weight: 600;
  text-align: center;
  flex: 1;
}

.close-gallery {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.15);
  color: var(--off-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  backdrop-filter: blur(10px);
}

.close-gallery svg {
  width: 24px;
  height: 24px;
}

.close-gallery:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--white);
  color: var(--white);
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.15);
}

.spacer {
  width: 50px;
}


.gallery-container {
  max-width: 1400px;
  margin: 0 auto;
  padding-bottom: 60px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  padding: 0 20px;
}


.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  aspect-ratio: 1;
  cursor: pointer;
  animation: scaleIn 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  transition: border-color 0.35s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.gallery-item:hover {
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 12px 48px rgba(255, 255, 255, 0.15);
}

.gallery-item:hover img {
  transform: scale(1.1) rotate(2deg);
}


.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(0, 0, 0, 0.7));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  backdrop-filter: blur(4px);
}

.overlay p {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--black);
  margin: 0;
  text-align: center;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-item:hover .overlay {
  opacity: 1;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes expandHeight {
  from {
    height: 0;
    opacity: 0;
  }
  to {
    height: 50px;
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.85);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}

@keyframes scroll {
  0% {
    opacity: 1;
    transform: translateY(-8px);
  }
  100% {
    opacity: 0;
    transform: translateY(8px);
  }
}

@keyframes popIcon {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

@media (max-width: 1200px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .footer-logo img {
    height: 80px;
  }

  .footer-center {
    justify-content: center;
  }

  .footer-right {
    align-items: center;
  }

  .footer-link {
    align-items: center;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .logo {
    width: 140px;
  }

  .menu-btn img {
    width: 100px;
  }

  .container {
    min-height: auto;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .social-wrapper {
    flex-direction: column;
  }

  .footer-section {
    padding: 40px 16px;
  }

  .footer-container {
    gap: 30px;
  }

  .footer-logo img {
    height: 70px;
  }

  .footer-center {
    gap: 30px;
  }

  .info-block h3 {
    font-size: 0.85rem;
  }

  .info-block p {
    font-size: 0.9rem;
  }

  .footer-link .label {
    font-size: 0.75rem;
  }

  .footer-link .value {
    font-size: 0.9rem;
  }

  .gallery-header h1 {
    font-size: 2rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    padding: 0 16px;
  }

  .close-gallery {
    width: 44px;
    height: 44px;
  }

  .close-gallery svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 480px) {
  .logo {
    width: 120px;
  }

  .menu-btn img {
    width: 90px;
  }

  .instagram-link {
    width: 50px;
    height: 50px;
  }

  .instagram-icon {
    width: 24px;
    height: 24px;
  }

  .view-gallery-btn {
    padding: 10px 16px;
    font-size: 0.85rem;
  }

  .view-gallery-btn svg {
    width: 16px;
    height: 16px;
  }

  .footer-logo img {
    height: 60px;
  }

  .footer-center {
    gap: 20px;
    flex-direction: column;
  }

  .divider {
    width: 50px;
    height: 2px;
  }

  .info-block h3 {
    font-size: 0.8rem;
  }

  .info-block p {
    font-size: 0.85rem;
  }

  .footer-link .label {
    font-size: 0.7rem;
  }

  .footer-link .value {
    font-size: 0.8rem;
  }

  .gallery-header h1 {
    font-size: 1.6rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 0 12px;
  }

  .overlay p {
    font-size: 1rem;
  }
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.6);
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.4);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.7);
}

* {
  scrollbar-color: rgba(255, 255, 255, 0.4) rgba(0, 0, 0, 0.6);
  scrollbar-width: thin;
}

.location-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  color: #ffffff;         
  text-decoration: none;
  font-size: 0.9rem;
}

.location-link img {
  width: 18px;             
  height: 18px;
}
.location-link:hover {
  text-decoration: underline;
}
