/* --- Relevant Section, add or update in your style.css --- */

/* Navbar left always horizontal and left-aligned */
.navbar-left {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
}

/* Logo sizing */
.navbar-logo {
  width: var(--logo-size);
  height: var(--logo-size);
  margin: 0;
}

/* Grill Stop title next to logo */
.navbar-title {
  font-size: 1.7rem;
  font-weight: bold;
  color: var(--accent);
  margin-left: 0.5rem;
  margin-right: 0.3rem;
}

/* ENG button beside the logo */
.lang-btn.small-eng {
  font-size: 0.95rem;
  padding: 5px 15px;
  border-radius: 15px;
  margin-left: 0.3rem;
  margin-right: 0.5rem; /* Space between ENG and Grill Stop title */
  background: #f80606;
  color: #ff0000;
  border: 1px solid #f72803;
  box-shadow: 0 1px 4px #d30000;
  font-weight: 700;
  transition: background 0.18s;
  order: 1; /* Ensure ENG is right after logo */
}

/* Move ENG button next to logo (before Grill Stop) */
.navbar-logo {
  order: 0;
}
.lang-btn.small-eng {
  order: 1;
}
.navbar-title {
  order: 2;
}

/* Responsive: shrink logo and title, keep row layout, ENG stays beside logo */
@media (max-width: 600px) {
  .navbar {
    height: 54px;
    padding: 0 1vw;
  }
  .navbar-left {
    flex-direction: row !important;
    align-items: center;
    gap: 0.5rem;
    width: auto;
    margin: 0;
    padding: 0;
  }
  .navbar-logo {
    width: 38px !important;
    height: 38px !important;
    order: 0;
  }
  .lang-btn.small-eng {
    font-size: 1rem;
    padding: 7px 15px;
    border-radius: 18px;
    margin-left: 7px;
    margin-right: 0.5rem;
    order: 1;
  }
  .navbar-title {
    font-size: 1.02rem;
    margin-left: 7px;
    margin-right: 0.3rem;
    order: 2;
  }
}

/* Hide the large ENG button in hero (if present) */
@media (max-width: 600px) {
  .center-btns .lang-btn {
    display: none !important;
  }
}

/* ...rest of your style.css unchanged... */

/* --- Relevant Section, add or update in your style.css --- */

/* Navbar left always horizontal and left-aligned */
.navbar-left {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
}

/* Logo sizing */
.navbar-logo {
  width: var(--logo-size);
  height: var(--logo-size);
  margin: 0;
}

/* Grill Stop title next to logo */
.navbar-title {
  font-size: 1.7rem;
  font-weight: bold;
  color: var(--accent);
  margin-left: 0.5rem;
  margin-right: 0.3rem;
}

/* ENG button styling */
.lang-btn.small-eng {
  font-size: 0.95rem;
  padding: 5px 15px;
  border-radius: 15px;
  margin-left: 0.3rem;
  margin-right: 0;
  color: #f8070700;
  border: 1px solid #ee050500;
  box-shadow: 0 1px 4px #f7030300;
  font-weight: 700;
  transition: background 0.18s;
}

/* Responsive: shrink logo and title, keep row layout */
@media (max-width: 600px) {
  .navbar {
    height: 54px;
    padding: 0 1vw;
  }
  .navbar-left {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    width: auto;
    margin: 0;
    padding: 0;
  }
  .navbar-logo {
    width: 38px !important;
    height: 38px !important;
  }
  .navbar-title {
    font-size: 1.02rem;
    margin-left: 7px;
    margin-right: 0.3rem;
  }
  .lang-btn.small-eng {
    font-size: 1rem;
    padding: 7px 15px;
    border-radius: 18px;
    margin-left: 7px;
    margin-right: 0;
  }
}

/* Navbar left always horizontal and left-aligned */
.navbar-left {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
}

/* Make sure logo is sized correctly */
.navbar-logo {
  width: var(--logo-size);
  height: var(--logo-size);
  margin: 0;
}

/* Make Grill Stop title next to logo */
.navbar-title {
  font-size: 1.7rem;
  font-weight: bold;
  color: var(--accent);
  margin-left: 0.5rem;
  margin-right: 0.3rem;
}

/* ENG button styling in navbar */
.lang-btn.small-eng {
  font-size: 0.95rem;
  padding: 5px 15px;
  border-radius: 15px;
  margin-left: 0.3rem;
  margin-right: 0;
  background: #f80606;
  color: #ff0000;
  border: 1px solid #f72803;
  box-shadow: 0 1px 4px #d30000;
  font-weight: 700;
  transition: background 0.18s;
}

/* Responsive: shrink logo and title, keep row layout */
@media (max-width: 600px) {
  .navbar {
    height: 54px;
    padding: 0 1vw;
  }
  .navbar-left {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    width: auto;
    margin: 0;
    padding: 0;
  }
  .navbar-logo {
    width: 38px !important;
    height: 38px !important;
  }
  .navbar-title {
    font-size: 1.02rem;
    margin-left: 7px;
    margin-right: 0.3rem;
  }
  .lang-btn.small-eng {
    font-size: 1rem;
    padding: 7px 15px;
    border-radius: 18px;
    margin-left: 7px;
    margin-right: 0;
  }
}
/* Move logo and ENG button to the top-left on mobile */
@media (max-width: 600px) {
  .navbar {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding: 0 1vw;
    height: 54px;
  }
  .navbar-left {
    flex-direction: row !important;
    align-items: center;
    gap: 0.5rem;
    width: auto;
    margin: 0;
    padding: 0;
  }
  .navbar-logo {
    width: 38px !important;
    height: 38px !important;
    margin: 0 0 0 0;
  }
  .lang-btn.small-eng {
    display: inline-flex !important;
    font-size: 1rem;
    padding: 7px 15px;
    border-radius: 18px;
    margin-left: 7px;
    margin-right: 0;
    box-shadow: 0 1px 6px #ff0000;
    border: 1.5px solid #f54905;
    background: #e2e0e0;
    color: #c04a00;
    font-weight: 700;
  }
  /* Hide the large ENG button in hero (if present) */
  .center-btns .lang-btn {
    display: none !important;
  }
  /* Optionally: shrink navbar title on mobile */
  .navbar-title {
    font-size: 1rem;
    margin-left: 7px;
    margin-bottom: 0;
  }
  /* Navbar buttons right: hide or stack below if you wish */
  .navbar-btns {
    gap: 0.2rem;
    margin-left: 0.3rem;
  }
}

/* Make gallery images responsive for desktop */
.gallery-img {
  max-width: 220px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}
.stylish-gallery .gallery-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 12px;
}
.info.stylish-card {
  background: #5f2828;
  border-radius: 10px;
  margin: 20px auto;
  max-width: 500px;
  padding: 16px;
  box-shadow: 0 2px 12px rgba(250, 248, 248, 0.945);
}
.features-list {
  list-style: none;
  padding: 0;
}
.features-list li {
  margin-bottom: 10px;
}

/* Existing styles... */

/* Make the ENG button smaller and more mobile-friendly */
.lang-btn.small-eng {
  font-size: 0.82rem;
  padding: 3px 10px;
  border-radius: 15px;
  background: #f8060600;
  color: #f8f4f4;
  border: 1px solid #f70b0b00;
  margin-left: 8px;
  transition: background 0.2s;
}
.lang-btn.small-eng:hover {
  background: #fd020200;
  color: #f5060600;
}

/* Responsive styles for mobile phones */
@media (max-width: 600px) {
  body {
    font-size: 16px;
  }
  .navbar {
    flex-direction: column;
    padding: 8px 0;
  }
  .navbar-left {
    flex-direction: row;
    align-items: center;
    width: 100%;
    justify-content: space-between;
  }
  .navbar-title {
    font-size: 1.2rem;
    margin-left: 4px;
  }
  .navbar-btns {
    margin-left: 0;
  }
  .gallery-row {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
  .gallery-img {
    width: 85vw;
    max-width: 320px;
    height: auto;
    border-radius: 8px;
  }
  .info.stylish-card {
    padding: 16px 8px;
    font-size: 1rem;
  }
  .features-list {
    padding-left: 16px;
  }
  .modal-content {
    max-width: 95vw;
    padding: 8px;
  }
  #main-content {
    padding: 0 2vw;
  }
}

/* Smaller Eng button styling */
.small-eng {
  font-size: 0.8em;
  padding: 3px 14px;
  border-radius: 16px;
  background: #f8640200;
  border: 1px solid #07ec1a00;
  box-shadow: 0 1px 4px #ffdab900;
  transition: background 0.18s;
  letter-spacing: 0.5px;
}
.small-eng:hover {
  background: #ee040400;
  color: #f1edea00;
}

/* Fire sparkles system - More realistic with CSS only */
.fire-sparkles {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 110px;
  pointer-events: none;
  z-index: 10;
  overflow: hidden;
}
.fire-sparkles .sparkle {
  position: absolute;
  bottom: 0;
  width: 16px;
  height: 40px;
  background: radial-gradient(circle at 50% 70%, #ffd700 60%, #ff9900 95%, #ff3300 100%, transparent 100%);
  border-radius: 50% 50% 44% 44%;
  opacity: 0.9;
  filter: blur(0.7px);
  animation: sparklerise 1.8s infinite cubic-bezier(.2,1,.7,1);
}
.fire-sparkles .sparkle:nth-child(1) { left: 12vw; animation-delay: 0s; }
.fire-sparkles .sparkle:nth-child(2) { left: 25vw; animation-delay: 0.5s; }
.fire-sparkles .sparkle:nth-child(3) { left: 33vw; animation-delay: 1.1s; }
.fire-sparkles .sparkle:nth-child(4) { left: 45vw; animation-delay: 0.8s; }
.fire-sparkles .sparkle:nth-child(5) { left: 57vw; animation-delay: 1.4s; }
.fire-sparkles .sparkle:nth-child(6) { left: 69vw; animation-delay: 1.0s; }
.fire-sparkles .sparkle:nth-child(7) { left: 75vw; animation-delay: 1.7s; }
.fire-sparkles .sparkle:nth-child(8) { left: 82vw; animation-delay: 0.3s; }
.fire-sparkles .sparkle:nth-child(9) { left: 92vw; animation-delay: 1.2s; }
.fire-sparkles .sparkle:nth-child(10) { left: 97vw; animation-delay: 0.9s; }

@keyframes sparklerise {
  0% {
    transform: scaleY(0.8) scaleX(1) translateY(0) rotate(-7deg);
    opacity: 1;
    filter: blur(0.4px);
  }
  15% {
    filter: blur(0.9px);
    opacity: 0.92;
  }
  35% {
    opacity: 0.85;
    filter: blur(1.2px);
    transform: scaleY(0.9) scaleX(1.03) translateY(-26px) rotate(2deg);
  }
  60% {
    opacity: 0.6;
    filter: blur(1.8px);
    transform: scaleY(1.14) scaleX(0.87) translateY(-64px) rotate(-6deg);
  }
  85% {
    opacity: 0.3;
    filter: blur(2.2px);
    transform: scaleY(1.3) scaleX(0.8) translateY(-90px) rotate(6deg);
  }
  100% {
    opacity: 0;
    filter: blur(2.7px);
    transform: scaleY(1.4) scaleX(0.7) translateY(-110px) rotate(-8deg);
  }
}

/* Responsive/mobile layout */
@media (max-width: 600px) {
  .navbar-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .navbar-title {
    font-size: 1.1em;
    margin-bottom: 2px;
  }
  .navbar-btns {
    gap: 4px;
    flex-wrap: wrap;
  }
  .gallery-row {
    flex-direction: column !important;
    gap: 14px !important;
    align-items: center;
  }
  .gallery-img {
    max-width: 96vw !important;
    margin: 0 auto;
  }
  .info.stylish-card {
    padding: 12px;
    font-size: 1.05em;
  }
}

/* Desktop gallery and info styling */
.gallery-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 16px;
}
.gallery-img {
  max-width: 220px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}
.info.stylish-card {
  background: #fafafa;
  border-radius: 10px;
  margin: 20px auto;
  max-width: 500px;
  padding: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.features-list {
  list-style: none;
  padding: 0;
}
.features-list li {
  margin-bottom: 10px;
}



:root {
  --main-bg: linear-gradient(135deg, #fcf7f7 5%, #b30404 95%);
  --accent: #f50303b4;
  --red: #b30404;
  --red2: #f50303b4;
  --black: #f7f2f2;
  --black2: #fdf9f9;
  --gray: #bbb;
  --navbar-height: 70px;
  --logo-size: 60px;
  --transition-fast: 0.35s cubic-bezier(.77,0,.175,1);
  --transition-smooth: 1.2s cubic-bezier(.77,0,.175,1);
  --loading-logo-url: url("https://imgur.com/W6kKQlB.jpg");
}

body {
  margin: 0;
  font-family: 'Segoe UI', 'Montserrat', 'Arial', sans-serif;
  background: var(--main-bg);
  color: #f8040400;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* Sparkle Fire Background */
.sparkle-bg {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  pointer-events: none;
  z-index: 0;
}
#sparkle-canvas {
  width: 100vw;
  height: 100vh;
  display: block;
}

/* Navbar */
.navbar {
  height: var(--navbar-height);
  width: 100vw;
  background: rgba(10,10,10,0.97);
  box-shadow: 0 4px 20px #fdf2f244;
  display: flex;
  align-items: center;
  padding: 0 2.5vw;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  animation: navbarDrop 1s cubic-bezier(.77,0,.175,1);
}
@keyframes navbarDrop {
  0% { transform: translateY(-70px); opacity: 0;}
  100% { transform: translateY(0); opacity: 1;}
}
.navbar-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.navbar-logo {
  width: var(--logo-size);
  height: var(--logo-size);
  background: var(--loading-logo-url) center/cover, #000000;
  border-radius: 50%;
  box-shadow: 0 2px 12px #b80c0c;
}
.navbar-title {
  font-size: 1.7rem;
  font-weight: bold;
  color: var(--accent);
  text-shadow: 0 2px 8px #fafafabd, 0 6px 26px #a51010b0;
  letter-spacing: 0.06em;
  margin-left: 1.2rem;
}
.navbar-btns {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-left: 1.2rem;
}
.nav-btn {
  font-size: 1.1rem;
  padding: 0.6rem 1.4rem;
  border-radius: 24px;
  border: none;
  background: var(--accent);
  color: #ffffff00;
  font-weight: 700;
  box-shadow: 0 2px 9px #b3040400;
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
  border: 1.5px solid #ffffff00;
}
.nav-btn:hover {
  background: #ffffff00;
  color: var(--red);
  transform: scale(1.08);
  box-shadow: 0 2px 20px #b3040400;
}

/* Loader */
#loader {
  position: fixed;
  z-index: 2000;
  width: 100vw;
  height: 100vh;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: loaderFadeIn var(--transition-smooth);
}
@keyframes loaderFadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.loader-logo {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--loading-logo-url) center/cover, #b30404a6;
  margin-bottom: 1.3rem;
  box-shadow: 0 0 60px #b30404b7, 0 0 14px #111 inset;
  animation: logoBounce 2s cubic-bezier(.77,0,.175,1) infinite alternate;
}
@keyframes logoBounce {
  0% { transform: scale(1);}
  100% { transform: scale(1.13);}
}
.loader-spinner {
  width: 60px;
  height: 60px;
  box-sizing: border-box;
  border: 8px solid #f30808bb;
  border-top: 8px solid #e60b0b;
  border-radius: 50%;
  animation: spin 1.2s linear infinite;
  margin-bottom: 1.5rem;
}
@keyframes spin {
  0% { transform: rotate(0deg);}
  100% { transform: rotate(360deg);}
}
.loader-text {
  font-size: 2.2rem;
  margin-top: 1rem;
  letter-spacing: 0.08em;
  font-weight: bold;
  color: #fff;
  animation: textPop 1.3s cubic-bezier(.77,0,.175,1) infinite alternate;
}
@keyframes textPop {
  0% { transform: scale(1);}
  100% { transform: scale(1.08);}
}

/* Main Content */
#main-content {
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-smooth);
  margin-top: calc(var(--navbar-height) + 2vw);
}
#main-content.visible {
  opacity: 1;
  pointer-events: auto;
  transition: opacity var(--transition-smooth);
}
.hero {
  text-align: center;
  margin: 5vw 0 2vw 0;
  padding: 1vw 0;
  animation: fadeInUp var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  position: relative;
}
.hero-title {
  font-size: 2.2rem;
  color: #fff;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 18px #b30404ee, 0 2px 0px #fff;
}

/* Overlay */
#page-overlay {
  position: fixed;
  top:0; left:0; width:100vw; height:100vh;
  background: rgba(240, 237, 237, 0.3);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-smooth);
}
#page-overlay.visible {
  opacity: 1;
  pointer-events: auto;
  animation: overlayShow 1s cubic-bezier(.77,0,.175,1);
}
@keyframes overlayShow {
  0% { opacity: 0;}
  100% { opacity: 1;}
}

/* Modal */
.modal {
  position: fixed;
  z-index: 3000;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s cubic-bezier(.77,0,.175,1);
}
.modal.visible {
  opacity: 1;
  pointer-events: auto;
  animation: modalIn 0.7s cubic-bezier(.77,0,.175,1);
}
@keyframes modalIn {
  0% { opacity: 0; transform: scale(0.7);}
  100% { opacity: 1; transform: scale(1);}
}
.modal-content {
  background: linear-gradient(135deg, #ffffff00, #b3040400 94%);
  border-radius: 26px;
  box-shadow: 0 8px 44px #b3040400;
  padding: 2rem 2.5rem 1.2rem 2.5rem;
  text-align: center;
  position: relative;
  max-width: 500px;
  width: 95vw;
  animation: modalContentPop 0.8s cubic-bezier(.77,0,.175,1);
}
@keyframes modalContentPop {
  0% { opacity: 0; transform: scale(0.6);}
  80% { opacity: 1; transform: scale(1.04);}
  100% { opacity: 1; transform: scale(1);}
}
.modal-close {
  position: absolute;
  top: 18px;
  right: 28px;
  font-size: 2.3rem;
  cursor: pointer;
  color: #b30404;
  font-weight: bold;
  transition: color 0.2s;
  z-index: 2;
}
.modal-close:hover {
  color: #fff;
}
#modal-img {
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: 16px;
  margin-bottom: 1.1rem;
  box-shadow: 0 8px 30px #b30404;
  border: 2.5px solid #fff;
  animation: modalImgIn 0.8s cubic-bezier(.77,0,.175,1);
}
@keyframes modalImgIn {
  0% { opacity: 0; transform: scale(0.8);}
  100% { opacity: 1; transform: scale(1);}
}
#modal-caption {
  font-size: 1.15rem;
  color: #b30404;
  margin-top: 0.6rem;
  font-weight: 500;
}

/* Responsiveness */
@media (max-width: 950px) {
  .navbar-title {
    margin-left: 1rem;
    font-size: 1.3rem;
  }
  .modal-content {
    padding: 1.3rem 1vw;
  }
  .navbar-btns {
    gap: 0.4rem;
    margin-left: 0.6rem;
  }
}
@media (max-width: 600px) {
  .logo, .loader-logo, .navbar-logo {
    width: 48px;
    height: 48px;
  }
  .title, .hero-title {
    font-size: 1.16rem;
  }
  .navbar-title {
    font-size: 1.1rem;
    margin-left: 0.5rem;
  }
  .modal-content {
    padding: 1.1rem 0.3rem;
  }
  .hero-desc {
    padding: 0.4rem 0.7rem;
    font-size: 1rem;
    max-width: 98vw;
  }
  .lang-btn {
    padding: 0.7rem 1.2rem;
    font-size: 1rem;
  }
  .navbar-left {
    gap: 0.4rem;
  }
  .navbar-btns {
    gap: 0.2rem;
    margin-left: 0.3rem;
  }
}



:root {
  --main-bg: linear-gradient(135deg, #000000 5%, #fff 60%);
  --accent: #f50303b4;
  --black: #e7e4e4;
  --black2: #222;
  --gray: #bbb;
  --navbar-height: 70px;
  --logo-size: 60px;
  --transition-fast: 0.35s cubic-bezier(.77,0,.175,1);
  --transition-smooth: 1.2s cubic-bezier(.77,0,.175,1);
  --loading-logo-url: url("https://imgur.com/W6kKQlB.jpg");
}

body {
  margin: 0;
  font-family: 'Segoe UI', 'Montserrat', 'Arial', sans-serif;
  background: var(--main-bg);
  color: var(--black2);
  min-height: 100vh;
  overflow-x: hidden;
}

/* Navbar */
.navbar {
  height: var(--navbar-height);
  width: 100vw;
  background: rgba(10,10,10,0.95);
  box-shadow: 0 4px 20px #aaa4;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 2.5vw;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  animation: navbarDrop 1s cubic-bezier(.77,0,.175,1);
}
@keyframes navbarDrop {
  0% { transform: translateY(-70px); opacity: 0;}
  100% { transform: translateY(0); opacity: 1;}
}
.navbar-logo {
  width: var(--logo-size);
  height: var(--logo-size);
  background: var(--loading-logo-url) center/cover, #fffefe;
  border-radius: 50%;
  box-shadow: 0 2px 12px #b80c0c;
  margin-right: 1.2rem;
}
.navbar-title {
  font-size: 1.7rem;
  font-weight: bold;
  color: var(--accent);
  text-shadow: 0 2px 8px #f5f2f2bd, 0 6px 26px #a51010b0;
  letter-spacing: 0.06em;
}
.navbar-right {
  display: flex;
  gap: 1.2rem;
  margin-left: auto;
}
.nav-btn {
  font-size: 1.1rem;
  padding: 0.6rem 1.4rem;
  border-radius: 24px;
  border: none;
  background: var(--accent);
  color: var(--black2);
  font-weight: 700;
  box-shadow: 0 2px 9px #222;
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
  border: 1.5px solid var(--black2);
}
.nav-btn:hover {
  background: var(--black2);
  color: var(--accent);
  transform: scale(1.08);
  box-shadow: 0 2px 20px #fff;
}

/* Loader */
#loader {
  position: fixed;
  z-index: 2000;
  width: 100vw;
  height: 100vh;
  background: var(--main-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: loaderFadeIn var(--transition-smooth);
}
@keyframes loaderFadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.loader-logo {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--loading-logo-url) center/cover, #ee0f0fa6;
  margin-bottom: 1.3rem;
  box-shadow: 0 0 60px #751010b7, 0 0 14px #111 inset;
  animation: logoBounce 2s cubic-bezier(.77,0,.175,1) infinite alternate;
}
@keyframes logoBounce {
  0% { transform: scale(1);}
  100% { transform: scale(1.13);}
}
.loader-spinner {
  width: 60px;
  height: 60px;
  box-sizing: border-box;
  border: 8px solid #f30808bb;
  border-top: 8px solid #e60b0b;
  border-radius: 50%;
  animation: spin 1.2s linear infinite;
  margin-bottom: 1.5rem;
}
@keyframes spin {
  0% { transform: rotate(0deg);}
  100% { transform: rotate(360deg);}
}
.loader-text {
  font-size: 2.2rem;
  margin-top: 1rem;
  letter-spacing: 0.08em;
  font-weight: bold;
  color: #111;
  animation: textPop 1.3s cubic-bezier(.77,0,.175,1) infinite alternate;
}
@keyframes textPop {
  0% { transform: scale(1);}
  100% { transform: scale(1.08);}
}

/* Main Content */
#main-content {
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-smooth);
  margin-top: calc(var(--navbar-height) + 2vw);
}
#main-content.visible {
  opacity: 1;
  pointer-events: auto;
  transition: opacity var(--transition-smooth);
}

.hero {
  text-align: center;
  margin: 5vw 0 2vw 0;
  padding: 1vw 0;
  animation: fadeInUp var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero-title {
  font-size: 2.2rem;
  color: var(--black2);
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 18px #fff, 0 2px 0px #f1eded;
}
.hero-desc {
  font-size: 1.1rem;
  color: var(--black);
  background-color: #fff;
  border-radius: 14px;
  padding: 0.6rem 2rem;
  display: inline-block;
  box-shadow: 0 2px 14px #222;
  max-width: 400px;
}
.center-btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  margin: 2rem 0 1rem 0;
}
.lang-btn {
  font-size: 1.2rem;
  padding: 1rem 3rem;
  border-radius: 30px;
  border: none;
  background: #faf8f8;
  color: #fff;
  font-weight: bold;
  box-shadow: 0 2px 12px #222;
  cursor: pointer;
  border: 2px solid #fff;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}
.lang-btn:hover {
  background: #fff;
  color: #111;
  transform: scale(1.08);
  box-shadow: 0 6px 30px #fff;
}

/* Gallery Preview (index only) */
.gallery-preview {
  margin: 2vw auto 3vw auto;
  max-width: 900px;
  text-align: center;
  border-radius: 20px;
  background: linear-gradient(100deg, #fff 70%, #111 100%);
  box-shadow: 0 2px 22px #bbb4;
  border: 2px solid #222;
  padding: 1.2vw 0.5vw;
  animation: fadeInUp 1.6s cubic-bezier(.77,0,.175,1);
}
.preview-title {
  color: #fcf8f8;
  font-size: 1.25rem;
  margin-bottom: 1vw;
  letter-spacing: 0.04em;
  font-weight: bold;
}
.preview-gallery-row {
  display: flex;
  gap: 2vw;
  justify-content: center;
  flex-wrap: wrap;
}
.preview-img {
  width: 180px;
  height: 130px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 10px 24px #bbb;
  border: 3px solid #eeebeb;
  transition: transform .5s cubic-bezier(.77,0,.175,1), box-shadow .5s cubic-bezier(.77,0,.175,1);
  animation: imgPop 1.6s cubic-bezier(.77,0,.175,1) infinite alternate;
  background: #fff;
  cursor: pointer;
}
@keyframes imgPop {
  0% { transform: scale(1);}
  100% { transform: scale(1.06); box-shadow: 0 16px 40px #111;}
}
.preview-img:hover {
  transform: scale(1.09) rotate(-2deg);
  box-shadow: 0 22px 60px #fff;
}

/* Stylish Gallery */
.stylish-gallery {
  margin: 2vw auto 3vw auto;
  max-width: 1000px;
  background: linear-gradient(100deg, #fff 65%, #f7f3f3 100%);
  border-radius: 24px;
  box-shadow: 0 2px 20px #bbb4;
  border: 2px solid #fcf9f9;
  padding: 1vw 1vw 2vw 1vw;
  animation: fadeInUp 1.2s cubic-bezier(.77,0,.175,1);
}
.gallery-title {
  text-align: center;
  color: #111;
  font-size: 1.3rem;
  margin-bottom: 1vw;
  font-weight: bold;
  letter-spacing: 0.04em;
}
.gallery-row {
  display: flex;
  gap: 2vw;
  justify-content: center;
  margin-bottom: 1vw;
  flex-wrap: wrap;
}
.gallery-img {
  width: 220px;
  height: 155px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 10px 24px #bbb;
  border: 3px solid #111;
  transition: transform .5s cubic-bezier(.77,0,.175,1), box-shadow .5s cubic-bezier(.77,0,.175,1);
  animation: imgPop 1.6s cubic-bezier(.77,0,.175,1) infinite alternate;
  background: #fff;
  cursor: pointer;
}
.gallery-img:hover {
  transform: scale(1.13) rotate(-2deg);
  box-shadow: 0 22px 60px #fff;
}

/* Info Card */
.stylish-card {
  background: linear-gradient(100deg, #fff 70%, #fffefe 100%);
  padding: 2rem;
  border-radius: 18px;
  box-shadow: 0 4px 18px #bbb;
  margin-bottom: 3rem;
  animation: fadeIn 2.2s cubic-bezier(.77,0,.175,1) backwards;
  border: 2px solid #faf7f7;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.info h2 {
  margin-top: 0;
  color: #f8f3f3;
  font-size: 2rem;
  margin-bottom: 1rem;
  text-shadow: 0 2px 6px #fff;
}
.info p {
  font-size: 1.2rem;
  color: #222;
}

.features-list {
  margin-top: 1.2rem;
  padding-left: 1.2rem;
  color: #222;
  font-size: 1.15rem;
  list-style: none;
}
.features-list li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.6em;
}
.features-list li:before {
  content: "★";
  position: absolute;
  left: 0;
  top: 0;
  color: #bbb;
  font-size: 1.1em;
}

/* Modal */
.modal {
  position: fixed;
  z-index: 3000;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(241, 237, 237, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s cubic-bezier(.77,0,.175,1);
}
.modal.visible {
  opacity: 1;
  pointer-events: auto;
  animation: modalIn 0.7s cubic-bezier(.77,0,.175,1);
}
@keyframes modalIn {
  0% { opacity: 0; transform: scale(0.7);}
  100% { opacity: 1; transform: scale(1);}
}
.modal-content {
  background: linear-gradient(135deg, #fff, #f1f0f0 94%);
  border-radius: 26px;
  box-shadow: 0 8px 44px #222;
  padding: 2rem 2.5rem 1.2rem 2.5rem;
  text-align: center;
  position: relative;
  max-width: 500px;
  width: 95vw;
  animation: modalContentPop 0.8s cubic-bezier(.77,0,.175,1);
}
@keyframes modalContentPop {
  0% { opacity: 0; transform: scale(0.6);}
  80% { opacity: 1; transform: scale(1.04);}
  100% { opacity: 1; transform: scale(1);}
}
.modal-close {
  position: absolute;
  top: 18px;
  right: 28px;
  font-size: 2.3rem;
  cursor: pointer;
  color: #f5efef;
  font-weight: bold;
  transition: color 0.2s;
  z-index: 2;
}
.modal-close:hover {
  color: #bbb;
}
#modal-img {
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: 16px;
  margin-bottom: 1.1rem;
  box-shadow: 0 8px 30px #bbb;
  border: 2.5px solid #f3f0f0;
  animation: modalImgIn 0.8s cubic-bezier(.77,0,.175,1);
}
@keyframes modalImgIn {
  0% { opacity: 0; transform: scale(0.8);}
  100% { opacity: 1; transform: scale(1);}
}
#modal-caption {
  font-size: 1.15rem;
  color: #222;
  margin-top: 0.6rem;
  font-weight: 500;
}

/* Overlay */
#page-overlay {
  position: fixed;
  top:0; left:0; width:100vw; height:100vh;
  background: rgba(247, 245, 245, 0.3);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-smooth);
}
#page-overlay.visible {
  opacity: 1;
  pointer-events: auto;
  animation: overlayShow 1s cubic-bezier(.77,0,.175,1);
}
@keyframes overlayShow {
  0% { opacity: 0;}
  100% { opacity: 1;}
}

/* Responsiveness */
@media (max-width: 950px) {
  .gallery-row,
  .preview-gallery-row {
    flex-direction: column;
    align-items: center;
  }
  .gallery-img, .preview-img {
    width: 90vw;
    max-width: 340px;
    height: 170px;
  }
  .modal-content {
    padding: 1.3rem 1vw;
  }
}
@media (max-width: 600px) {
  .logo, .loader-logo, .navbar-logo {
    width: 48px;
    height: 48px;
  }
  .title, .hero-title {
    font-size: 1.16rem;
  }
  .info.stylish-card {
    padding: 1rem;
  }
  .navbar-title {
    font-size: 1.1rem;
  }
  .modal-content {
    padding: 1.1rem 0.3rem;
  }
  .hero-desc {
    padding: 0.4rem 0.7rem;
    font-size: 1rem;
    max-width: 98vw;
  }
  .lang-btn {
    padding: 0.7rem 1.5rem;
    font-size: 1rem;
  }
  .center-btns {
    gap: 0.8rem;
    margin: 1.2rem 0 0.8rem 0;
  }
}