:root {
    --primary: #d4af37;
    --dark: #1a1a1a;
    --light: #fff;
  }
  
  * { margin: 0; padding: 0; box-sizing: border-box; }
  
  body {
    font-family: 'Poppins', sans-serif;
    background: #fafafa;
    color: var(--dark);
    scroll-behavior: smooth;
  }
  
  header {
    position: fixed;
    width: 100%;
    background: rgba(255,255,255,0.9);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    z-index: 10;
  }
  
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 10%;
  }
  
  .logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary);
  }
  
  .navbar ul {
    display: flex;
    list-style: none;
    gap: 25px;
  }
  
  .navbar a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s;
  }
  
  .navbar a:hover {
    color: var(--primary);
  }
  
  /* HERO */
  .hero {
    height: 100vh;
    background: url('images/hero.jpeg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
  }
  
  .hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
  }
  
  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 15px;
  }
  
  .btn {
    background: var(--primary);
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: background 0.3s;
  }
  
  .btn:hover { background: #b9942e; }
  
  .section {
    padding: 100px 10%;
    text-align: center;
  }
  
  h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 50px;
  }
  
  .rooms, .attractions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
  }
  
  .room, .spot {
    background: var(--light);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.3s;
  }
  
  .room:hover, .spot:hover {
    transform: translateY(-5px);
  }
  
  .room img, .spot img {
    width: 100%;
    height: 220px;
    object-fit: cover;
  }
  
  .room-info, .spot {
    padding: 20px;
  }
  
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
  }
  
  .gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
  }
  
  /* Modal */
  .modal {
    display: none;
    position: fixed;
    top:0; left:0; width:100%; height:100%;
    background: rgba(0,0,0,0.6);
    align-items: center;
    justify-content: center;
    z-index: 20;
  }
  
  .modal-content {
    background: white;
    padding: 30px;
    width: 90%;
    max-width: 700px;
    border-radius: 10px;
    position: relative;
  }
  
  .close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
  }
  
  .modal-body img {
    width: 100%;
    border-radius: 10px;
    margin-top: 10px;
  }
  
  @media (max-width: 768px) {
    .hero h1 { font-size: 2.2rem; }
    .section { padding: 60px 5%; }
    .navbar ul { display: none; }
  }
  