/* =========================
RESET
========================= */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Inter',sans-serif;
}

body{
  background:#005bff; /* your original */
  color:#111;
  line-height:1.6;
}

/* =========================
CONTAINER
========================= */

.container{
  max-width:1100px;
  margin:auto;
  padding:80px 20px;
}

/* =========================
HERO (ENHANCED)
========================= */

.hero{
  display:grid;
  grid-template-columns:1.2fr 1fr;
  gap:60px;
  align-items:center;
  margin-bottom:120px;
}

.hero h1{
  font-size:56px;
  font-weight:600;
  line-height:1.05;
}

.year{
  font-size:20px;
  margin-top:20px;
}

/* FLOATING IMAGE */

.hero img{
  border-radius:16px;
  box-shadow:0 40px 80px rgba(0,0,0,0.2);
  animation:float 6s ease-in-out infinite;
}

@keyframes float{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-12px)}
}

/* =========================
SECTIONS
========================= */

.section{
  margin-bottom:110px;
}

.section h2{
  font-size:30px;
  margin-bottom:25px;
}

/* =========================
GRIDS
========================= */

.grid-2{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}

.grid-3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

img{
  width:100%;
  border-radius:12px;
  transition:.4s ease;
}

img:hover{
  transform:scale(1.05);
  box-shadow:0 25px 60px rgba(0,0,0,0.25);
}

/* =========================
TEXT BLOCK
========================= */

.text-large{
  font-size:34px;
  font-weight:500;
  max-width:720px;
  line-height:1.4;
}

/* =========================
CARDS
========================= */

.cards{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

.card{
  background:white;
  padding:30px;
  border-radius:12px;
  box-shadow:0 10px 30px rgba(0,0,0,0.1);
  transition:.35s ease;
}

.card:hover{
  transform:translateY(-8px);
  box-shadow:0 25px 50px rgba(0,0,0,0.2);
}

/* =========================
SCROLL REVEAL
========================= */

.reveal{
  opacity:0;
  transform:translateY(40px);
  transition:1s ease;
}

.reveal.active{
  opacity:1;
  transform:translateY(0);
}

/* =========================
FULL IMAGE
========================= */

.full-img{
  margin:60px 0;
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:900px){
  .hero{grid-template-columns:1fr;}
  .grid-3{grid-template-columns:1fr;}
  .grid-2{grid-template-columns:1fr;}
  .cards{grid-template-columns:1fr 1fr;}
}

@media(max-width:600px){
  .cards{grid-template-columns:1fr;}
}

/* =========================
NAVIGATION (UNCHANGED)
========================= */

nav {
  position: absolute;
  top: 2rem;
  right: 2rem;
  z-index: 2000;
}

.nav-links {
  display: flex;
  gap: clamp(1.5rem, 4vw, 3rem);
  list-style: none;
  z-index: 1500;
  overflow-y: hidden;
}

.nav-links a {
  text-decoration: none;
  font-size: clamp(0.85rem, 1vw, 1rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: white;
}

nav a:hover {
  opacity: 0.6;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
  position: relative;
  z-index: 2500;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  transform: rotate(-45deg);
}

/* MOBILE NAV */

@media (max-width: 768px) {
  .hamburger { display:flex; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: rgba(200, 226, 246, 0.2);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: right 0.4s ease;
  }

  .nav-links.active { right:0; }
}

/* =========================
FOOTER (UNCHANGED)
========================= */

footer {
  background: linear-gradient(180deg, #3d6fb6, #8ec6e8);
  text-align: center;
  padding: 40px 20px;
  color: white;
}

.footer-logo {
  font-weight: 700;
  margin-bottom: 10px;
}

.copyright {
  font-size: 12px;
}