 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', sans-serif;
      background: #fefaf5;
      overflow-x: hidden;
    }

    :root {
      --primary-gradient: linear-gradient(135deg, #FF6B6B, #FF8E53);
      --sunset-gradient: linear-gradient(145deg, #F9A826, #FF6B6B);
      --gold: #F9A826;
      --coral: #FF6B6B;
      --deep-navy: #1e2f3e;
      --shadow-xl: 0 25px 45px -12px rgba(0,0,0,0.25);
      --shadow-md: 0 15px 30px -8px rgba(0,0,0,0.1);
      --transition: all 0.4s cubic-bezier(0.2,0.9,0.4,1.1);
    }

    /* Navbar Glass */
    .navbar-glass {
      background: rgba(0, 0, 0, 0.75);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(255,255,255,0.2);
      padding: 0.85rem 0;
      transition: var(--transition);
    }
    .navbar-glass .navbar-brand img { max-height: 48px; filter: brightness(0) invert(1); }
    .navbar-glass .nav-link {
      color: white !important;
      font-weight: 600;
      margin: 0 0.6rem;
      position: relative;
    }
    .navbar-glass .nav-link:hover, .navbar-glass .nav-link.active { color: var(--gold) !important; }
    .navbar-glass .nav-link::after {
      content: ''; position: absolute; bottom: -6px; left: 0; width: 0; height: 3px;
      background: var(--gold); transition: 0.3s; border-radius: 3px;
    }
    .navbar-glass .nav-link:hover::after, .navbar-glass .nav-link.active::after { width: 70%; }
    .navbar-toggler-icon-custom { filter: invert(1); }

    /* Hero */
    .hero-gallery {
      background: linear-gradient(115deg, rgba(0,0,0,0.6), rgba(0,0,0,0.5)), url('https://googlesbeachhotel.com/image/a8.jpeg');
      background-size: cover;
      background-position: center 35%;
      background-attachment: fixed;
      min-height: 55vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
    }
    .page-cover-tittle {
      font-size: 4.2rem;
      font-weight: 800;
      background: linear-gradient(125deg, #FFF8E7, #FFD966);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      text-shadow: 0 2px 12px rgba(0,0,0,0.3);
    }
    .breadcrumb-custom { background: transparent; justify-content: center; }
    .breadcrumb-custom .breadcrumb-item a { color: #FFDD99; text-decoration: none; font-weight: 500; }
    .breadcrumb-custom .breadcrumb-item.active { color: var(--gold); }

    /* Section title */
    .section-title-modern { text-align: center; margin-bottom: 3.5rem; }
    .section-title-modern h2 {
      font-size: 2.8rem;
      font-weight: 800;
      background: linear-gradient(125deg, #1e2f3e, var(--coral));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }
    .section-title-modern p { color: #5a6e7c; max-width: 600px; margin: 0.5rem auto; }

    /* Gallery Grid */
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
      gap: 1.8rem;
    }
    .gallery-item {
      position: relative;
      border-radius: 28px;
      overflow: hidden;
      box-shadow: var(--shadow-md);
      transition: var(--transition);
      cursor: pointer;
    }
    .gallery-item:hover {
      transform: translateY(-10px);
      box-shadow: var(--shadow-xl);
    }
    .gallery-img {
      width: 100%;
      height: 280px;
      object-fit: cover;
      transition: transform 0.6s ease;
    }
    .gallery-item:hover .gallery-img { transform: scale(1.05); }
    .gallery-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
      padding: 1.5rem;
      opacity: 0;
      transition: 0.3s;
      display: flex;
      justify-content: flex-end;
    }
    .gallery-item:hover .gallery-overlay { opacity: 1; }
    .zoom-icon {
      background: var(--sunset-gradient);
      width: 48px;
      height: 48px;
      border-radius: 60px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 1.5rem;
      transition: 0.2s;
      text-decoration: none;
    }
    .zoom-icon:hover { transform: scale(1.08); color: white; }

    /* Filter Buttons */
    .filter-buttons {
      display: flex;
      justify-content: center;
      gap: 1rem;
      flex-wrap: wrap;
      margin-bottom: 2.5rem;
    }
    .filter-btn {
      background: transparent;
      border: 2px solid #FFD966;
      padding: 8px 24px;
      border-radius: 60px;
      font-weight: 600;
      color: #2c3e50;
      transition: 0.25s;
    }
    .filter-btn.active, .filter-btn:hover {
      background: var(--primary-gradient);
      border-color: transparent;
      color: white;
      box-shadow: 0 6px 14px rgba(255,107,107,0.3);
    }

    /* Footer */
    .footer-modern {
      background: #0d1c27;
      color: #cbdfed;
      border-radius: 48px 48px 0 0;
      margin-top: 4rem;
    }
    .footer-modern a { color: var(--gold); text-decoration: none; }
    .social-round a {
      background: rgba(255,255,255,0.08);
      width: 38px;
      height: 38px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      margin-right: 8px;
      transition: 0.2s;
      color: white;
    }
    .social-round a:hover { background: var(--gold); color: #0d1c27; }

    @media (max-width: 768px) {
      .page-cover-tittle { font-size: 2.5rem; }
      .section-title-modern h2 { font-size: 2rem; }
      .gallery-grid { grid-template-columns: 1fr; }
    }

    /* Complete logo fix */
.navbar-glass .navbar-brand {
  padding: 5px 0;
  margin: 0;
  display: flex;
  align-items: center;
}

.navbar-glass .navbar-brand img {
  max-height: 42px;
  max-width: 180px;
  width: auto;
  height: auto;
  
  /* Fix for white background */
  background: transparent !important;
  
  /* Proper scaling */
  object-fit: contain;
  object-position: left center;
  
  /* Remove any filters that might cause issues */
  filter: none;
  
  /* Add slight shadow for visibility on dark navbar */
  filter: drop-shadow(0 2px 3px rgba(0,0,0,0.2));
  
  transition: all 0.3s ease;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .navbar-glass .navbar-brand img {
    max-height: 35px;
    max-width: 140px;
  }
}