 :root { --pink: #ff69b4; --light: #f8f1f1; }
    * { margin:0; padding:0; box-sizing:border-box; }
    body {
      font-family: 'Segoe UI', system-ui, sans-serif;
      line-height: 1.7;
      color: #333;
      background: var(--light);
    }
    header {
      background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.pexels.com/photos/1809341/pexels-photo-1809341.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2') center/cover;
      color: white;
      text-align: center;
      padding: 160px 20px 100px;
    }
    .logo { font-size: 4.2rem; font-weight: bold; text-shadow: 0 4px 10px rgba(0,0,0,0.5); }
    .tagline { font-size: 1.65rem; margin: 20px 0; }

    nav {
      background: white;
      padding: 18px 5%;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      position: sticky;
      top: 0;
      z-index: 100;
    }
    nav ul {
      display: flex;
      justify-content: center;
      list-style: none;
      gap: 35px;
      flex-wrap: wrap;
    }
    nav a { text-decoration: none; color: #333; font-weight: 600; }

    section { padding: 90px 5%; }
    h2 { text-align: center; font-size: 2.8rem; margin-bottom: 50px; }
    .highlight { color: var(--pink); }

    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }
    .card {
      background: white;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
      transition: 0.4s;
    }
    .card:hover { transform: translateY(-15px); }
    .card img {
      width: 100%;
      height: 240px;
      object-fit: cover;
    }
    .card-content { padding: 25px; }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 15px;
    }
    .gallery-grid img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      border-radius: 12px;
    }

    .btn {
      display: inline-block;
      background: var(--pink);
      color: white;
      padding: 16px 36px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      margin-top: 20px;
    }
    .btn:hover { background: #ff1493; transform: scale(1.08); }