/* ---------------- RESET ---------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ---------------- VARIABLES ---------------- */
:root {
  --bg-main: #F5F5DC;
  --accent: #DAA520;
  --dark: #1f1f1f;
}

/* ---------------- BODY ---------------- */
body {
  font-family: 'Roboto', sans-serif;
  background: var(--bg-main);
  color: var(--dark);
}

/* ---------------- HEADER / NAV ---------------- */
.site-header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  background: rgba(245,245,220,0.85);
  backdrop-filter: blur(10px);
}

.navbar {
  max-width: 1200px;
  margin: auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  font-family: 'Noto Serif', serif;
  font-weight: 700;
  font-size: 1.3rem;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--dark);
  position: relative;
  font-weight: 500;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

/* ---------------- HERO ---------------- */
.hero {
  height: 100vh;
  background-image: url("https://images.unsplash.com/photo-1605197373540-6b52b9b8b5d3");
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
}

/* Overlay for professionalism */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

/* Content */
.hero-content {
  position: relative;
  max-width: 800px;
  padding: 0 2rem;
  margin-left: 8%;
  color: #fff;
}

.hero-content h1 {
  font-family: 'Noto Serif', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1.5rem;
}

.hero-content p {
  font-size: 1.1rem;
  max-width: 600px;
  line-height: 1.8;
  color: rgba(255,255,255,0.9);
}

/* ---------------- ANIMATION CLASSES ---------------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal.delay {
  transition-delay: 0.4s;
}
.home-editorial {
  max-width: 1200px;
  margin: 8rem auto 4rem;
  padding: 0 2rem;

  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.home-text h1 {
  font-family: 'Noto Serif', serif;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 1.5rem;
}

.description {
  max-width: 520px;
  line-height: 1.8;
  color: #333;
}

.divider {
  display: block;
  width: 80px;
  height: 2px;
  background: #DAA520;
  margin: 1.2rem 0;
}

.home-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 6px;
}
/* ================= RESPONSIVE ================= */

/* Tablets */
@media (max-width: 992px) {
  .home-editorial {
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 6rem;
  }

  .home-text h1 {
    font-size: 2.5rem;
  }

  .home-image img {
    height: 360px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  /* NAVBAR */
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
    gap: 1rem;
  }

  /* HOME SECTION */
  .home-editorial {
    padding: 0 1.5rem;
    margin-top: 7rem;
  }

  .home-text h1 {
    font-size: 2rem;
  }

  .subtitle {
    font-size: 1rem;
  }

  .description {
    font-size: 0.95rem;
  }

  .home-image img {
    height: auto;
    max-height: 300px;
  }
}
/* --- NAVBAR BASE --- */
.navbar {
  max-width: 1200px;
  margin: auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Brand */
.brand {
  font-family: 'Noto Serif', serif;
  font-weight: 700;
  font-size: 1.3rem;
}

/* Nav links desktop */
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #1f1f1f;
  position: relative;
  font-weight: 500;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: #DAA520;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}
 /* HOME SECTION */
  .home-editorial {
    padding: 0 1.5rem;
    margin-top: 7rem;
  }

  .home-text h1 {
    font-size: 2rem;
  }

  .subtitle {
    font-size: 1rem;
  }

  .description {
    font-size: 0.95rem;
  }

  .home-image img {
    height: auto;
    max-height: 300px;
  }
}
/* --- NAVBAR BASE --- */
.navbar {
  max-width: 1200px;
  margin: auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Brand */
.brand {
  font-family: 'Noto Serif', serif;
  font-weight: 700;
  font-size: 1.3rem;
}

/* Nav links desktop */
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #1f1f1f;
  position: relative;
  font-weight: 500;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: #DAA520;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}
.home-decor {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.28;
  pointer-events: none;
  animation: fall 12s linear infinite;
}

/* LEFT CIRCLE */
.decor-left {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, #DAA520, #8B4513);
  top: -450px;
  left: -180px;
  animation-delay: 0s;
}

/* RIGHT CIRCLE */
.decor-right {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, #F5F5DC, #DAA520);
  top: -350px;
  right: -140px;
  animation-delay: 4s;
}
@keyframes fall {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0;
  }

  10% {
    opacity: 0.35;
  }

  90% {
    opacity: 0.35;
  }

  100% {
    transform: translateY(120vh) scale(1.05);
    opacity: 0;
  }
}
@media (max-width: 768px) {

  .home-editorial {
    grid-template-columns: 1fr;
    padding: 3rem 1.5rem;
  }

  .home-decor {
    width: 220px !important;
    height: 220px !important;
    opacity: 0.22;
  }

  .decor-left {
    left: -120px;
  }

  .decor-right {
    right: -120px;
  }
}

/* --- HAMBURGER --- */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 20px;
  border: none;
  background: none;
  cursor: pointer;
  z-index: 1001; /* above menu */
}

.menu-toggle .bar {
  height: 3px;
  width: 100%;
  background-color: #1f1f1f;
  border-radius: 2px;
  transition: all 0.3s ease;
}
#home-title {
  font-family: 'Noto Serif', serif;
  font-size: 3rem; /* fixed size */
  color: #1f1f1f;
  white-space: nowrap;
  overflow: hidden; /* ensures text stays in div */
  border-right: 2px solid #DAA520; /* cursor effect */
  width: 100%; /* full container width */
  max-width: 800px; /* optional */
}


/* --- MOBILE RESPONSIVE --- */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    right: 2rem;
    background: #F5F5DC;
    flex-direction: column;
    width: 180px;
    padding: 1rem 0;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 6px;

    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
  }

  .nav-links li {
    border-bottom: 1px solid rgba(0,0,0,0.08);
  }

  .nav-links li:last-child {
    border-bottom: none;
  }

  .nav-links a {
    padding: 0.8rem 1rem;
    display: block;
  }

  /* Active menu */
  .nav-links.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
.menu-toggle.open .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.open .bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open .bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
/* ================= ABOUT SECTION ================= */
.about-section {
  background-color: #FAF9F5; /* soft beige background */
  padding: 6rem 2rem;
  color: #333; /* default paragraph color */
  font-family: 'Roboto', sans-serif;
}

.about-section .container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
}

/* Main Section Title */
.about-section h2 {
  font-family: 'Noto Serif', serif;
  font-size: 2.8rem;
  margin-bottom: 1rem;
  color: #8B4513; /* rich brown for main heading */
  text-align: center; /* center the title for elegance */
  text-shadow: 2px 2px 4px rgba(0,0,0,0.1); /* subtle depth */
  position: relative;
}

/* Divider under main title */
.about-section .divider {
  display: block;
  width: 80px;
  height: 4px;
  background-color: #DAA520; /* golden yellow divider */
  margin: 1rem auto 2rem auto; /* centered */
  border-radius: 2px;
}

/* Subheadings (H3) */
.about-section h3 {
  font-family: 'Noto Serif', serif;
  font-size: 2rem;
  color: #A0522D; /* slightly lighter brown for subheadings */
  margin-top: 3rem;
  margin-bottom: 1rem;
  border-left: 5px solid #DAA520; /* decorative left border */
  padding-left: 1rem;
}

/* Sub-subheadings (H4) */
.about-section h4 {
  font-family: 'Noto Serif', serif;
  font-size: 1.4rem;
  color: #8B4513;
  margin-top: 2rem;
  margin-bottom: 0.8rem;
  font-style: italic;
}

/* Paragraphs */
.about-section p {
  font-family: 'Roboto', sans-serif;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 2rem;
}

/* Images inside about section */
.about-section .about-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 2rem 0;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Image hover effect */
.about-section .about-img:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
  .about-section h2 {
    font-size: 2.4rem;
  }
  .about-section h3 {
    font-size: 1.8rem;
  }
  .about-section h4 {
    font-size: 1.3rem;
  }
  .about-section p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 4rem 1.5rem;
  }
  .about-section h2 {
    font-size: 2rem;
  }
  .about-section h3 {
    font-size: 1.6rem;
  }
  .about-section h4 {
    font-size: 1.2rem;
  }
  .about-section p {
    font-size: 0.98rem;
  }
}

@media (max-width: 480px) {
  .about-section h2 {
    font-size: 1.7rem;
  }
  .about-section h3 {
    font-size: 1.4rem;
  }
  .about-section h4 {
    font-size: 1.1rem;
  }
  .about-section p {
    font-size: 0.95rem;
  }
}
/* ================= GALLERY SECTION ================= */
.gallery-section {
  background-color: #F5F5DC; 
  padding: 6rem 2rem;
}

.gallery-section .container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.gallery-section h2 {
  font-family: 'Noto Serif', serif;
  font-size: 2.8rem;
  color: #8B4513;
  margin-bottom: 1rem;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
}

.gallery-section .divider {
  width: 80px;
  height: 4px;
  background-color: #DAA520;
  margin: 1rem auto 2rem auto;
  border-radius: 2px;
}

.gallery-section .gallery-intro {
  font-family: 'Roboto', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 3rem;
  color: #333;
  line-height: 1.6;
}

/* Grid Layout */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

/* City Card */
.city-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.city-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease, filter 0.3s ease;
}

/* Overlay info initially hidden */
.city-info {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(139,69,19,0.85); /* brown overlay */
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.city-info h3 {
  font-family: 'Noto Serif', serif;
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
}

.city-info p {
  font-family: 'Roboto', sans-serif;
  font-size: 0.95rem;
  line-height: 1.4;
}

/* Active overlay on click */
.city-card.active .city-info {
  opacity: 1;
  transform: translateY(0);
}

/* Hover effects (optional) */
.city-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.city-card:hover img {
  transform: scale(1.05);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .city-card img {
    height: 180px;
  }
  .city-info h3 {
    font-size: 1.2rem;
  }
  .city-info p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .gallery-section {
    padding: 4rem 1rem;
  }
  .city-card img {
    height: 150px;
  }
}
/* ================= DESIGN TOKENS ================= */
:root {
  --brown: #8B4513;
  --gold: #DAA520;
  --beige: #F5F5DC;
  --dark: #1f1f1f;
}

/* ================= PAGE LOADER ================= */
#page-loader {
  position: fixed;
  inset: 0;
  background-color: #111;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Bouncing Balls Container */
.bouncing-loader {
  display: flex;
  gap: 20px;
  margin-bottom: 2rem;
}

/* Each ball */
.bouncing-loader span {
  width: 25px;          /* big balls */
  height: 25px;
  background-color: #DAA520;
  border-radius: 50%;
  display: inline-block;
  animation: bounce 0.6s infinite alternate;
}

/* Delay for each ball for wave effect */
.bouncing-loader span:nth-child(1) {
  animation-delay: 0s;
}
.bouncing-loader span:nth-child(2) {
  animation-delay: 0.2s;
}
.bouncing-loader span:nth-child(3) {
  animation-delay: 0.4s;
}

/* Bounce Animation */
@keyframes bounce {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-40px); /* height of bounce */
  }
}

/* Loader Text */
.loader-text {
  font-family: 'Roboto', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 2px;
  color: #ccc;
  text-transform: uppercase;
}

/* ================= PAGE REVEAL ================= */
.hidden {
  opacity: 0;
  visibility: hidden;
}

.visible {
  opacity: 1;
  visibility: visible;
  transition: opacity 1s ease;
}
/* ================= CITY FEATURE SECTION ================= */
.city-feature {
  background-color: #FAF9F5;
  padding: 6rem 2rem;
}

.city-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 4rem;
  align-items: center;
}

/* Image */
.city-image {
  flex: 1;
}

.city-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.city-image img:hover {
  transform: scale(1.03);
  box-shadow: 0 30px 60px rgba(0,0,0,0.25);
}

/* Content */
.city-content {
  flex: 1;
}

.city-content h2 {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #DAA520;
  margin-bottom: 0.5rem;
}

.city-content h3 {
  font-family: 'Noto Serif', serif;
  font-size: 2.6rem;
  color: #8B4513;
  margin-bottom: 1.5rem;
}

.city-content p {
  font-family: 'Roboto', sans-serif;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 1.5rem;
}

/* Facts List */
.city-facts {
  list-style: none;
  padding: 0;
  margin-top: 2rem;
}

.city-facts li {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.city-facts strong {
  color: #8B4513;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .city-container {
    flex-direction: column;
    gap: 3rem;
  }

  .city-image img {
    height: 360px;
  }

  .city-content h3 {
    font-size: 2.2rem;
  }
}

@media (max-width: 576px) {
  .city-feature {
    padding: 4rem 1.5rem;
  }

  .city-image img {
    height: 280px;
  }

  .city-content h3 {
    font-size: 1.9rem;
  }

  .city-content p {
    font-size: 1rem;
  }
}
/* ================= SUBMIT SECTION ================= */
.submit-section {
  background: var(--beige);
  padding: 80px 20px;
  color: var(--dark);
}

.submit-container {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.submit-container h2 {
  font-family: 'Noto Serif', serif;
  font-size: 3rem;
  margin-bottom: 0.5rem;
  color: var(--brown);
}

.submit-container p {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  color: #555;
}

/* FORM LAYOUT */
.submit-form {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

/* FORM GROUP WITH FLOATING LABEL */
.form-group {
  position: relative;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px 15px;
  font-size: 1rem;
  border: 2px solid #ccc;
  border-radius: 10px;
  outline: none;
  background: transparent;
  transition: border 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 10px rgba(218,165,32,0.3);
}

/* FLOATING LABEL */
.form-group label {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  background: var(--beige);
  padding: 0 5px;
  color: #999;
  pointer-events: none;
  transition: 0.3s ease all;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
  top: -10px;
  font-size: 0.8rem;
  color: var(--brown);
}

/* SUBMIT BUTTON */
.submit-btn {
  padding: 15px;
  font-size: 1.2rem;
  border: none;
  border-radius: 10px;
  background: var(--gold);
  color: var(--dark);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.submit-btn:hover {
  background: var(--brown);
  color: #fff;
  transform: scale(1.05);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 600px) {
  .submit-container h2 {
    font-size: 2.2rem;
  }

  .submit-container p {
    font-size: 1rem;
  }
}
:root {
  --brown: #8B4513;
  --gold: #DAA520;
  --beige: #F5F5DC;
  --dark: #1f1f1f;
  --light: #f9f9f9;
}

/* ================= SUBMIT SECTION ================= */
.submit-section {
  position: relative;
  background: var(--beige);
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  overflow: hidden;
  font-family: 'Roboto', sans-serif;
}

/* Professional floating circles */
.circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(218,165,32,0.15);
  width: 150px;
  height: 150px;
  z-index: 1;
  animation: floatCircle 8s ease-in-out infinite alternate;
}

.circle-left {
  top: 20%;
  left: -50px;
}

.circle-right {
  bottom: 15%;
  right: -50px;
  animation-delay: 3s;
}

@keyframes floatCircle {
  0% { transform: translateY(0) scale(1); opacity: 0.8; }
  50% { transform: translateY(-20px) scale(1.05); opacity: 1; }
  100% { transform: translateY(0) scale(1); opacity: 0.8; }
}

/* Container */
.submit-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 500px;
  text-align: center;
}

/* Header */
.submit-header h2 {
  font-family: 'Noto Serif', serif;
  font-size: 3rem;
  color: var(--brown);
  margin-bottom: 0.5rem;
}

.submit-header p {
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 2rem;
}

/* Form */
.submit-form {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

/* Floating label + underline */
.form-group {
  position: relative;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px 15px;
  border: none;
  border-bottom: 2px solid #ccc;
  outline: none;
  background: transparent;
  font-size: 1rem;
  transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group label {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  color: #999;
  pointer-events: none;
  transition: 0.3s ease all;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
  top: -12px;
  font-size: 0.8rem;
  color: var(--brown);
}

.input-line {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--gold);
  transition: 0.3s ease;
}

.form-group input:focus ~ .input-line,
.form-group textarea:focus ~ .input-line {
  width: 100%;
}

/* Submit button */
.submit-btn {
  padding: 15px;
  font-size: 1.2rem;
  border: none;
  border-radius: 12px;
  background: var(--gold);
  color: var(--dark);
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background: var(--brown);
  color: #fff;
  transform: scale(1.05);
}



/* Responsive */
@media (max-width: 600px) {
  .submit-section { padding: 60px 15px; }
  .submit-header h2 { font-size: 2.2rem; }
}
/* ================= FOOTER ================= */
.site-footer {
  background: var(--dark);
  color: #f5f5f5;
  padding: 4rem 2rem 2rem;
  font-family: 'Roboto', sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  border-bottom: 1px solid #555;
  padding-bottom: 2rem;
}

.footer-brand h3 {
  font-family: 'Noto Serif', serif;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: var(--gold);
}

.footer-brand p {
  font-size: 0.95rem;
  color: #ccc;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  color: var(--gold);
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 0.5rem;
}

.footer-links ul li a {
  color: #f5f5f5;
  text-decoration: none;
}

.footer-links ul li a:hover {
  text-decoration: underline;
}

.footer-contact p {
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
}

.footer-contact a {
  color: #f5f5f5;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  font-size: 0.85rem;
  color: #aaa;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 700px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
/* Fade-in for footer sections */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
/* ================= SCROLL BUTTONS ================= */
.scroll-btn {
  position: fixed;
  right: 2rem;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background: var(--gold);
  color: var(--dark);
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  opacity: 0;
  visibility: hidden;
  z-index: 999;
  transition: all 0.4s ease;
}

.scroll-btn:hover {
  transform: scale(1.15);
  box-shadow: 0 12px 28px rgba(0,0,0,0.3);
}

/* ScrollTop - above ScrollBottom */
#scrollTop {
  bottom: 6rem;
}

/* ScrollBottom - below ScrollTop */
#scrollBottom {
  bottom: 1.5rem;
}

/* Show when scrolling down */
.scroll-btn.show {
  opacity: 1;
  visibility: visible;
}
