/* ==============================
   TYPOGRAPHY
================================ */

h1 {
  text-align: center;
}

h2 {
    font-family: "Limelight", sans-serif;
  text-align: left;
  color:#fbb831;
  margin-left: 0px;
  font-size: 22pt;
}

p {
  font-family: "Raleway", sans-serif;
     font-optical-sizing: auto;
     font-weight: 300;
     font-size: 10pt;
     text-align: left;
}
a {
 font-family: "Limelight", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.5;
}
/* ==============================
   HEADER & NAVIGATION
================================ */

.nav-logo img {
  display: none;
}

/* ==============================
   HERO SECTION
================================ */
.hero {
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.logo-container img {
  display: block;
  margin: 0 auto;   /* 👈 centers the image */
  max-width: 700px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 5px 10px rgba(79, 87, 104, 0.5));
}

@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

.logo-container img {
  width: 90%;
  height: 90%;
  text-align: center;
  filter: drop-shadow(0 5px 10px rgba(79, 87, 104, 0.5));
  margin-top: 10rem;
}

.hero-title {
  font-family: "Rozha One", serif;
  font-size: clamp(2rem, 5vw, 4rem);
 
  background: linear-gradient(135deg, #fff 0%, #b1b1b3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 3vw, 1rem);
  font-weight: 300;
  letter-spacing: 4px;
  animation: fadeInUp 1s ease-out 0.6s both;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  margin-top: 15px;
  margin-bottom: 100px;
  text-align: center;
}

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

/* ==============================
   ABOUT SECTION
================================ */
.about-section {
  padding: 4rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.about-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  align-items: center;
}

.about-images img {
  width: 100%;
  height: auto;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-images img:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 40px rgba(79, 87, 104, 0.4);
}

.about-content h2 {

  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.about-content h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #fff, transparent);
}

.about-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

/* ==============================
   BUTTONS
================================ */
.button-row {
  display: flex;
  justify-content: center; 
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 1rem;
  width: 100%;
  margin-bottom: 20rem;
}

.btn {
  padding: 1rem 2rem;
  border: none;
  border-radius: 15px;
  font-family: "Raleway", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: inline-block;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

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

.btn-primary {
  background: #fbb831;
  border: 2px solid white;
  color: #000;
  box-shadow: 0 5px 20px rgba(79, 87, 104, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(79, 87, 104, 0.6);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid white;
  color: white;
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: white;
  color: rgb(79, 94, 125);
  transform: translateY(-3px);
}



/* ==============================
   SCROLL PROGRESS BAR
================================ */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  width: 0%;
  background: linear-gradient(90deg, #fbb831 0%, #f5a623 100%);
  z-index: 9999;
  transition: width 0.1s ease;
}

/* ==============================
   ANIMATED BACKGROUND
================================ */
.bg-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(135deg, #1a1a1a 0%, rgb(27, 27, 27) 100%);
}

.bg-animation::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(79, 87, 104, 0.2) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: moveGrid 20s linear infinite;
}

@keyframes moveGrid {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}


