/* Base Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fefaf3;
    color: #333;
    text-align: center;
  }
  
  /* Container */
  .container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100vh;
  }
  
  /* Header */
  .header {
    padding: 20px;
    background: 
      linear-gradient(to bottom, rgba(255, 255, 255, 0), #fefaf3 90%),
      url('header.png') center/cover no-repeat;
    color: white;
    position: relative;
    z-index: 1;
  }
  
  .logo {
    font-family: 'Great Vibes', cursive;
    font-size: 4rem;
    color: #FFD700; /* Gold color */
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5); /* Enhances visibility */
    margin-bottom: 5px; /* Reduces space below the logo */
  }
  
  .tagline {
    font-family: 'Arial', sans-serif;
    font-size: 1.5rem;
    font-style: italic;
    color: #FFF8DC; /* Cornsilk color for contrast */
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5); /* Enhances visibility */
    padding: 5px 10px; /* Adds space around text */
    border-radius: 5px; /* Makes the highlight rounded */
    display: inline-block; /* Ensures the background hugs the text */
    margin-top: 0; /* Reduces space above the tagline */
  }
  
  
  
  /* Main Content */
  .main-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
  }
  
  .coming-soon, .highlight {
    margin-bottom: 20px;
  }
  
  .highlight .section-title {
    font-size: 1.8rem;
    color: #e07c9a;
  }
  
  .highlight .price {
    font-size: 1.2rem;
    color: #6a9f76;
  }
  
  .cta-button {
    font-size: 1rem;
    color: #fff;
    background-color: #e07c9a;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }
  
  .cta-button:hover {
    background-color: #d06a85;
  }
  
  .instagram-link {
    font-size: 1.2rem;
    color: #e07c9a;
    text-decoration: none;
    border: 2px solid #e07c9a;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
  }
  
  .instagram-link:hover {
    background-color: #e07c9a;
    color: #fff;
  }
  
  /* Footer */
  .footer {
    padding: 15px;
    background-color: #f8f1f5;
    font-size: 0.9rem;
    color: #555;
  }  