:root {
      --primary: #8B4513;
      --secondary: #5F9EA0;
      --accent: #DAA520;
      --dark: #1A1A1A;
      --light: #F5F5F5;
    }
    
    body {
      font-family: 'Raleway', sans-serif;
      background-color: #f9f6f0;
      color: #333;
      overflow-x: hidden;
    }
    
    h1, h2, h3, h4 {
      font-family: 'Playfair Display', serif;
    }
    
    /* Navigation */
    .navbar {
      background: linear-gradient(135deg, var(--dark), var(--primary));
      box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }
    
    .navbar-brand {
      font-weight: 700;
      font-size: 1.8rem;
      color: var(--light) !important;
    }
    
    .navbar-brand span {
      color: var(--accent);
    }
    
    .nav-link {
      font-weight: 600;
      padding: 0.5rem 1.25rem !important;
      transition: all 0.3s;
    }
    
    .nav-link:hover {
      color: var(--accent) !important;
      transform: translateY(-2px);
    }
    
    /* Hero Section */
    .hero {
      position: relative;
      height: 80vh;
      min-height: 600px;
      overflow: hidden;
    }
    
    .hero-video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
      filter: brightness(0.6);
    }
    
    .hero-content {
      position: relative;
      z-index: 1;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      color: white;
      text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    }
    
    .hero-title {
      font-size: 4rem;
      font-weight: 700;
      margin-bottom: 1.5rem;
      animation: fadeInUp 1s ease;
    }
    
    .hero-subtitle {
      font-size: 1.5rem;
      max-width: 700px;
      margin: 0 auto 2rem;
      animation: fadeInUp 1.2s ease;
    }
    
    /* Sections */
    .section-title {
      position: relative;
      margin-bottom: 3rem;
      padding-bottom: 1rem;
      text-align: center;
    }
    
    .section-title:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 100px;
      height: 4px;
      background: var(--accent);
      border-radius: 2px;
    }
    
    /* Cards */
    .card {
      border: none;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 6px 15px rgba(0,0,0,0.1);
      transition: all 0.3s ease;
      margin-bottom: 2rem;
      height: 100%;
    }
    
    .card:hover {
      transform: translateY(-10px);
      box-shadow: 0 12px 25px rgba(0,0,0,0.15);
    }
    
    .card-img-top {
      height: 220px;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    
    .card:hover .card-img-top {
      transform: scale(1.05);
    }
    
    .card-body {
      padding: 1.5rem;
    }
    
    .card-title {
      font-weight: 700;
      color: var(--primary);
      margin-bottom: 1rem;
    }
    
    .card-text {
      color: #555;
      margin-bottom: 1.5rem;
    }
    
    .price-badge {
      background-color: var(--accent);
      color: white;
      font-weight: 600;
      padding: 0.5rem 1rem;
      border-radius: 50px;
      display: inline-block;
    }
    
    /* Interactive Map */
    .map-container {
      height: 500px;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 6px 15px rgba(0,0,0,0.1);
      margin-bottom: 3rem;
    }
    
    /* Timeline */
    .timeline {
      position: relative;
      max-width: 1200px;
      margin: 0 auto;
      padding: 2rem 0;
    }
    
    .timeline::after {
      content: '';
      position: absolute;
      width: 6px;
      background-color: var(--secondary);
      top: 0;
      bottom: 0;
      left: 50%;
      margin-left: -3px;
      border-radius: 3px;
    }
    
    .timeline-item {
      padding: 10px 40px;
      position: relative;
      width: 50%;
      box-sizing: border-box;
    }
    
    .timeline-item::after {
      content: '';
      position: absolute;
      width: 25px;
      height: 25px;
      background-color: white;
      border: 4px solid var(--accent);
      top: 15px;
      border-radius: 50%;
      z-index: 1;
    }
    
    .left {
      left: 0;
      text-align: right;
    }
    
    .right {
      left: 50%;
      text-align: left;
    }
    
    .left::after {
      right: -12px;
    }
    
    .right::after {
      left: -12px;
    }
    
    .timeline-content {
      padding: 20px 30px;
      background-color: white;
      position: relative;
      border-radius: 6px;
      box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    }
    
    /* Gallery */
    .gallery-item {
      position: relative;
      overflow: hidden;
      border-radius: 8px;
      margin-bottom: 1.5rem;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      height: 250px;
    }
    
    .gallery-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    
    .gallery-item:hover .gallery-img {
      transform: scale(1.1);
    }
    
    .gallery-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
      color: white;
      padding: 1rem;
      transform: translateY(100%);
      transition: transform 0.3s ease;
    }
    
    .gallery-item:hover .gallery-overlay {
      transform: translateY(0);
    }
    
    .footer-Entertainment {
      background: #1a1a1a;
      color: #fff;
      padding: 2.5rem 1rem 1.5rem 1rem;
      margin-top: auto;
      border-top: 1px solid #8B4513;
      text-align: center;
    }

    .footer-Entertainment .footer-logo {
      font-size: 1.3rem;
      font-weight: bold;
      color: #8B4513;
      margin-bottom: 1rem;
    }

    .footer-Entertainment .footer-links {
      display: flex;
      justify-content: center;
      gap: 2rem;
      margin-bottom: 1.2rem;
      flex-wrap: wrap;
    }

    .footer-Entertainment .footer-link {
      color: #b8b8b8;
      text-decoration: none;
      transition: color 0.3s;
    }

    .footer-Entertainment .footer-link:hover {
      color: #8B4513;
    }

    .footer-Entertainment .social-links {
      display: flex;
      justify-content: center;
      gap: 1rem;
      margin-bottom: 1.2rem;
    }

    .footer-Entertainment .social-link {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: #2a2a2a;
      display: flex;
      justify-content: center;
      align-items: center;
      color: #fff;
      text-decoration: none;
      font-size: 1.1rem;
      transition: all 0.3s;
    }

    .footer-Entertainment .social-link:hover {
      background: #ffcf4d;
      color: #121212;
    }

    .footer-Entertainment .copyright {
      color: #666;
      font-size: 0.9rem;
      margin-top: 1rem;
    }