/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html, body {
    height: 100%;
    font-family: 'Inter', sans-serif;
    display: flex;
    flex-direction: column;
  }
  
  /* Instagram Icon Top Right */
  .top-right {
    position: absolute;
    top: 20px;
    right: 25px;
    z-index: 10;
  }
  
  .top-right img {
    width: 30px;
    height: 30px;
    filter: none; /* Show icon in black */
    transition: transform 0.3s ease;
  }
  
  .top-right img:hover {
    transform: scale(1.1);
  }
  
  /* Hero Section */
  .hero {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('images/background.jpg') no-repeat bottom center fixed;
    background-size: cover;
    color: #fff;
  }
  
  .hero-content {
    padding: 20px;
  }
  
  /* Typography */
  .precy-title {
    font-family: 'Inter', sans-serif;
    font-weight: 400; /* Changed to regular */
    font-size: 1.5rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 4px; /* Reduced spacing */
    color: #fff;
    
  }
  .coming-soon {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 400;
    color: #fff;
    letter-spacing: 2px; /* 👈 Added spacing between letters */
  }
  
  
  /* Footer */
  .site-footer {
    padding: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: #333;
    background: rgba(255, 255, 255, 0.8);
    width: 100%;
  }
  
  .site-footer a {
    color: inherit;
    text-decoration: underline;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .top-right img {
      width: 24px;
      height: 24px;
    }
  
    .precy-title {
      font-size: 1.2rem;
    }
  
    .coming-soon {
      font-size: 2.5rem;
    }
  }
  