/* ===================================
   FONTS & VARIABLES
=================================== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Poppins:wght@300;400;500;600&display=swap');

:root {
  --blue-night: #0B1C2D;
  --gold: #D4AF37;
  --white: #FFFFFF;
}

/* ===================================
   GLOBAL STYLES
=================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--blue-night);
  color: var(--white);
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
}

/* ===================================
   NAVBAR
=================================== */
.navbar {
  background: rgba(11, 28, 45, 0.92);
  backdrop-filter: blur(8px);
  padding: 1rem 0;
}

.navbar-brand, .nav-link {
  color: var(--gold) !important;
  font-weight: 500;
  letter-spacing: 1px;
}

.nav-link.active {
  text-decoration: underline;
}

.nav-link:hover {
  color: #fff !important;
}

/* ===================================
   HERO / LANDING PAGE
=================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(to bottom, rgba(11,28,45,.85), rgba(11,28,45,.95)),
    url('assets/candidate.jpg') center/cover no-repeat;
  text-align: left;
}

.hero-content {
  max-width: 650px;
}

.hero-content h1 {
  text-transform: uppercase;
  letter-spacing: 3px;
}

/* ===================================
   BUTTONS
=================================== */
.btn-gold {
  background: linear-gradient(135deg, #D4AF37, #F5E08E);
  color: var(--blue-night);
  font-weight: 600;
  border-radius: 50px;
  padding: 14px 34px;
  border: none;
  box-shadow: 0 10px 25px rgba(212,175,55,.35);
  transition: all .4s ease;
}

.btn-gold:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 30px rgba(212,175,55,.5);
}

/* ===================================
   SECTIONS
=================================== */
.section {
  padding: 100px 0;
}

.section h2 {
  margin-bottom: 50px;
  font-weight: 700;
}

/* ===================================
   CARDS
=================================== */
.card {
  background: linear-gradient(180deg, #11283F, #0B1C2D);
  border: 1px solid rgba(212,175,55,.2);
  box-shadow: 0 20px 40px rgba(0,0,0,.5);
  border-radius: 20px;
  padding: 20px;
  transition: all .4s ease;
}

.card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 25px 50px rgba(212,175,55,.45);
}

/* ===================================
   GALLERY
=================================== */
.gallery img {
  border-radius: 18px;
  transition: all .5s ease;
}

.gallery img:hover {
  transform: scale(1.1) rotate(1deg);
  box-shadow: 0 15px 35px rgba(212,175,55,.5);
}

/* ===================================
   FORMULAIRE
=================================== */
form {
  background: #11283F;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,.5);
}

form input, form textarea {
  background: #0B1C2D;
  color: var(--white);
  border: 1px solid rgba(212,175,55,.3);
  border-radius: 10px;
  padding: 12px 15px;
  transition: all .3s ease;
}

form input:focus, form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 15px rgba(212,175,55,.4);
  outline: none;
}

form button {
  margin-top: 10px;
}

/* ===================================
   FOOTER
=================================== */
footer {
  background: #081522;
  padding: 40px 0;
  text-align: center;
  color: var(--gold);
  letter-spacing: 1px;
}

/* ===================================
   RESPONSIVE
=================================== */
@media (max-width: 768px) {
  .hero-content {
    text-align: center;
    margin: 0 auto;
  }

  .navbar .ms-auto {
    text-align: center;
    margin-top: 10px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .btn-gold {
    padding: 12px 25px;
  }
} 