/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Body Layout */
  body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: url('brochure-bg.jpg') no-repeat center center fixed;
    background-size: cover;
    position: relative;
    color: #fff;
  }
  @media (max-width: 768px) {
  body {
    background-position: center top;
    background-size: cover;
  }
}
  
  body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-color: rgba(28, 30, 38, 0.85);
    z-index: -1;
  }
  
  .page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }
  
  .brochure-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
   padding: 100px 20px 80px; /* increased top padding from 80px to 100px */
  margin-top: 60px; /* Add this to push the section below the fixed navbar */
  }
  
  
  
  .brochure-wrapper {
    background-color: rgba(42, 45, 58, 0.95);
    padding: 50px 30px;
    border-radius: 16px;
    text-align: center;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
  }
  
  .brochure-wrapper h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.3;
  }
  
  .brochure-wrapper h1 span {
    color: #ffaf5f;
  }
  
  .brochure-wrapper p {
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 30px;
    line-height: 1.6;
  }
  
  .brochure-cover img {
    max-width: 100%;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  }
  
  .brochure-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .btn {
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center; /* ✅ Add this line to center text */
    gap: 8px;
    transition: 0.3s ease;
  }
  
  .download {
    background-color: #ffaf5f;
    color: #1c1e26;
  }
  
  .download:hover {
    background-color: #ffa13f;
  }
  
  .view {
    background-color: transparent;
    border: 2px solid #ffaf5f;
    color: #ffaf5f;
  }
  
  .view:hover {
    background-color: #ffaf5f;
    color: #1c1e26;
  }

  /* Email input styling */
.email-input {
  padding: 10px;
  border-radius: 5px;
  border: none;
  width: 80%;
  max-width: 300px;
  margin-bottom: 15px;
  font-size: 1rem;
}

/* Ensure .btn.download has same width rules */
.btn.download {
  width: 80%;
  max-width: 300px;
  font-size: 1rem;
}
.form-response {
  margin-top: 10px;
  font-size: 0.9rem;
  color: #ccc; /* optional for visibility on dark background */
}


/* Mobile responsiveness */
@media (max-width: 480px) {
  .email-input,
  .btn.download {
    width: 100%;
    max-width: 100%;
    font-size: 1rem;
  }
}

 /*Responsive Layout*/
 @media (max-width: 1024px) {
  .brochure-wrapper h1 {
    font-size: 2rem;
  }

  .brochure-wrapper p {
    font-size: 0.95rem;
  }

  .brochure-buttons {
    flex-direction: row;
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .brochure-section {
    padding: 80px 15px 60px;
    margin-top: 50px;
  }

  .brochure-wrapper {
    padding: 40px 20px;
  }

  .brochure-wrapper h1 {
    font-size: 1.8rem;
  }

  .btn {
    padding: 10px 18px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .brochure-wrapper h1 {
    font-size: 1.6rem;
  }

  .brochure-wrapper p {
    font-size: 0.9rem;
  }

  .brochure-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    justify-content: center;
    font-size: 1rem;
  }
}

  
  