/* -----------------------------------------------------
   BASE
----------------------------------------------------- */

html, body {
    font-family: 'Inter', sans-serif;
    color: #333;
    background: #fafafa;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-family: "Cormorant Garamond", serif;
  }
  
  p, li {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  a {
    text-decoration: none;
    transition: 0.2s ease;
  }
  
  a:hover {
    opacity: 0.75;
  }
  
  /* Sections spacing */
  .section {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  
  @media (max-width: 768px) {
    .section {
      padding-top: 50px;
      padding-bottom: 50px;
    }
  }
  
  /* -----------------------------------------------------
     NAVBAR
  ----------------------------------------------------- */
  
  .navbar {
    background: #ffffff;
    border-bottom: 1px solid #eee;
  }
  
  .navbar-brand img {
    height: 48px;
    width: auto;
  }
  
  .nav-link {
    color: #555 !important;
    transition: 0.2s;
  }
  
  .nav-link:hover,
  .nav-link.active {
    color: #000 !important;
  }
  
  /* -----------------------------------------------------
     HERO
  ----------------------------------------------------- */
  
  .hero {
    background: linear-gradient(to bottom, #ffffff, #f8f8f8);
  }
  
  .display-title {
    font-size: 2.8rem;
    font-weight: 600;
  }
  
  @media (max-width: 768px) {
    .display-title {
      font-size: 2.2rem;
    }
  }
  
  /* Photo */
  .photo_pre img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  }
  
  /* Subtle fade-in */
  .fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInMove 0.8s ease forwards;
  }
  
  @keyframes fadeInMove {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Buttons */
  .btn-accent {
    background: #c7a27a;
    color: white;
    border-radius: 6px;
    padding: 10px 24px;
    border: none;
  }
  
  .btn-accent:hover {
    background: #b08c66;
  }
  
  .btn-outline-secondary {
    border-radius: 6px;
    padding: 10px 24px;
  }
  
  /* -----------------------------------------------------
     CARDS
  ----------------------------------------------------- */
  
  .card-soft {
    background: white;
    border: 1px solid #eee;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.04);
    transition: transform .2s ease;
  }
  
  .card-soft:hover {
    transform: translateY(-4px);
  }
  
  /* -----------------------------------------------------
     LISTS
  ----------------------------------------------------- */
  
  ul {
    padding-left: 20px;
  }
  
  ul li {
    margin-bottom: 6px;
  }
  
  /* List sans bullet */
  .list-unstyled li {
    margin-bottom: 8px;
    padding-left: 4px;
  }
  
  /* -----------------------------------------------------
     DIPLOMAS BLOCKS
  ----------------------------------------------------- */
  
  .bg-white {
    background: #fff !important;
  }
  
  /* -----------------------------------------------------
     CTA
  ----------------------------------------------------- */
  
  .card-soft.text-center h3 {
    font-size: 1.8rem;
    font-weight: 600;
  }
  
  .card-soft.text-center p {
    max-width: 600px;
  }
  
  /* -----------------------------------------------------
     FOOTER
  ----------------------------------------------------- */
  
  footer {
    background: #fff;
  }
  
  footer a:hover {
    opacity: 0.7;
  }
  
  /* -----------------------------------------------------
     MOBILE OPTIMIZATION
  ----------------------------------------------------- */
  
  @media (max-width: 768px) {
  
    .navbar-brand img {
      height: 40px;
    }
  
    .btn-lg {
      padding: 10px 20px;
      font-size: 1rem;
    }
  
    .hero .row {
      text-align: center;
    }
  
    .hero .d-flex {
      justify-content: center;
    }
  
    .photo_pre img {
      margin-top: 20px;
    }
  
    .card-soft {
      padding: 20px !important;
    }
  
    p, li {
      font-size: 0.95rem;
    }
  }
  