body, html {
    background-color: #000 !important;
    color: #fff;
    font-family: 'Anton', sans-serif;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    height: 100%;
    overflow: hidden;
}

/* Loading Skeleton Animations */
.skeleton {
    background: linear-gradient(90deg, #1a1a1a 25%, #333 50%, #1a1a1a 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-in-out;
}

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

.background-slideshow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.background-slideshow img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
    transform: scale(1.05);
}

.background-slideshow img.active {
    opacity: 1;
    transform: scale(1);
}

.loader {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    z-index: 2;
    position: relative;
    background-color: rgba(0, 0, 0, 0.2);
}

.loader-text {
    font-family: 'Anton', sans-serif;
    font-size: clamp(2rem, 15vw, 10rem);
    font-weight: 400;
    color: white;
    text-align: center;
    mix-blend-mode: difference;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    filter: drop-shadow(0 0 10px rgba(253, 90, 70, 0.3));
}

.loader-text span {
    transition: all 0.5s ease;
    transform-origin: center;
    display: inline-block;
}

.loader-text.zoom .letter {
    transition: all 1.2s ease-in-out;
}

.loader-text.zoom .letter:not(.zoomed) {
    opacity: 0;
    transform: scale(0.5);
}

.loader-text.zoom .letter.zoomed {
    transform: scale(15);
    opacity: 0;
}

@media (max-width: 768px) {
    .loader-text {
        font-size: inherit;
        text-align: center;
        flex-direction: row;
    }
}

.admin-link-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.admin-link-container:hover {
    opacity: 1;
}

.admin-link-container a {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    background-color: rgba(0, 0, 0, 0.4);
    padding: 10px 18px;
    border-radius: 25px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-link-container a:hover {
    background-color: rgba(253, 90, 70, 0.8);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(253, 90, 70, 0.3);
}

/* Improved Landscapes page styles */
.landscapes-section {
  margin: 60px auto 0 auto;
  max-width: 900px;
  background: #181818;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.25);
  padding: 40px 32px 32px 32px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 350px;
}
.landscapes-section h2 {
  font-family: 'Anton', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 28px;
  letter-spacing: 2px;
  color: #FD5A46;
  text-align: center;
}
.landscapes-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: center;
  width: 100%;
  margin-top: 10px;
}
.landscape-thumb {
  width: 220px;
  height: 150px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 1px 10px rgba(0,0,0,0.18);
  transition: transform 0.2s, box-shadow 0.2s;
  background: #222;
}
.landscape-thumb:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 24px rgba(253,90,70,0.25);
}
.no-images, .error {
  color: #aaa;
  text-align: center;
  width: 100%;
  margin-top: 40px;
  font-size: 1.2rem;
  letter-spacing: 1px;
}
@media (max-width: 700px) {
  .landscapes-section {
    padding: 18px 6px 18px 6px;
    min-height: 200px;
  }
  .landscape-thumb {
    width: 98vw;
    max-width: 98vw;
    height: 120px;
  }
}

/* Portfolio section styles */
.portfolio-section {
  margin: 40px auto;
  max-width: 1100px;
  background: #181818;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.25);
  padding: 32px 24px 24px 24px;
  color: #fff;
}
.portfolio-section h2 {
  font-family: 'Anton', sans-serif;
  font-size: 2.2rem;
  margin-bottom: 18px;
  letter-spacing: 2px;
  color: #FD5A46;
}
.portfolio-galleries {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 18px;
  justify-content: center;
}
.portfolio-gallery-btn {
  background: #222;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 22px;
  font-family: 'Anton', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 1px 6px rgba(0,0,0,0.12);
}
.portfolio-gallery-btn:hover {
  background: #FD5A46;
  color: #fff;
}
.portfolio-gallery-images {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
}
.portfolio-thumb {
  width: 180px;
  height: 120px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 1px 8px rgba(0,0,0,0.18);
  transition: transform 0.2s, box-shadow 0.2s;
}
.portfolio-thumb:hover {
  transform: scale(1.04);
  box-shadow: 0 4px 18px rgba(253,90,70,0.25);
}

/* Navigation bar styles */
.navigation {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: rgba(24, 24, 24, 0.97);
  backdrop-filter: blur(12px);
  padding: 1.2rem 3vw 1.2rem 3vw;
  z-index: 1000;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.14);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-family: 'Anton', sans-serif;
  min-height: 64px;
  transition: background 0.3s, box-shadow 0.3s;
}
.nav-link, .exclusive-nav {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 48px;
}
.nav-link {
  color: #fff;
  text-decoration: none;
  font-size: 1.15rem;
  padding: 0.7rem 1.4rem;
  border-radius: 7px;
  transition: all 0.3s ease;
  margin: 0.2rem 0.3rem;
  display: inline-block;
  position: relative;
  overflow: hidden;
  letter-spacing: 1px;
}
.nav-link.active,
.nav-link:hover {
  background-color: #FD5A46;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(253, 90, 70, 0.3);
}

@media (max-width: 900px) {
  .navigation {
    padding: 0.7rem 1vw 0.7rem 1vw;
    gap: 0.5rem;
  }
  .nav-link, .exclusive-nav {
    font-size: 1rem !important;
    padding: 0.6rem 0.7rem !important;
    margin: 0.1rem 0.1rem !important;
    height: 40px;
  }
  .exclusive-nav {
    letter-spacing: 1px !important;
    font-size: 0.95rem !important;
  }
  .navigation .exclusive-nav,
  .navigation .exclusive-nav.active {
    font-size: clamp(2rem, 5vw, 3rem) !important;
    padding: 0 !important;
  }
}
@media (max-width: 600px) {
  .navigation {
    flex-direction: column;
    align-items: stretch;
    padding: 0.5rem 0.2rem;
    gap: 0.2rem;
    min-height: 0;
  }
  .nav-link, .exclusive-nav {
    width: 100%;
    justify-content: flex-start !important;
    padding-left: 1rem !important;
    height: 38px;
  }
  .exclusive-nav {
    text-align: center !important;
    justify-content: center !important;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
    font-size: 0.9rem !important;
    letter-spacing: 0.5px !important;
  }
  .navigation .exclusive-nav,
  .navigation .exclusive-nav.active {
    font-size: clamp(1.2rem, 4vw, 2rem) !important;
    padding: 0 !important;
  }
}

.exclusive-gradient-text {
  font-size: clamp(3rem, 8vw, 8rem);
  margin-bottom: 1rem;
  background: linear-gradient(270deg, #ff0080, #ff8c00, #40e0d0, #ff0080);
  background-size: 400% 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease-in-out infinite;
  text-shadow: 0 0 30px rgba(255, 0, 128, 0.5);
}

.navigation .exclusive-gradient-text {
  display: flex;
  align-items: center;
  height: 100%;
  font-size: clamp(1.3rem, 3vw, 2.2rem);
  margin-bottom: 0;
  padding: 0 1.2rem;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
} 