@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@100..900&family=Noto+Serif:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* Base styles */
body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  background: linear-gradient(135deg, #ffb6c1, #ffa07a, #ffd700) fixed;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  margin-top: 10rem; /* Added top margin */
}


main {
  width: 100%;
}

/* Grid layouts */
.main-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 12rem;
}

.secondary-section {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 2rem;
  align-items: center;
}

/* Image styles */
.brand-image {
  border-radius: 16px;
  overflow: hidden;
}

/* First image specific styles */
.main-section .brand-image {
  width: 65%;
  margin-left: auto;
  margin-right: auto;
}

.main-section .brand-image img {
  width: 100%;
  height: auto;
  display: block;
}

.beige-container {
  background-color: beige;
  padding: 1.3rem;
  grid-template-columns: 0.7fr 1.3fr;
  margin-left: 10rem;
  margin-right: 10rem;
  border-radius: 8px;
  width: 100%
  position: center;
}

/* Second image specific styles */
.secondary-section .brand-image {
  width: 95%;
  margin-left: auto;
  margin-right: auto;
}

.secondary-section .brand-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Content styles */
.brand-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.logo {
  color: #800080;
  font-weight: bold;
  font-family: "League Spartan", sans-serif;
  font-size: 4rem;
  line-height: 1;
  /* Adjusted from 0.5 for better spacing */
  margin-bottom: 0.5rem;
}

.tagline {
  color: #800080;
  font-size: 1.3rem;
  font-family: "Noto Serif", serif;
  margin-bottom: 2rem;
}

.description {
  font-size: 1.1rem;
  color: #800080;
  margin-bottom: 1rem;
}

/* Form styles */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 400px;
  margin: 0 auto;
}

.contact-form input {
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box;
}

.contact-form button {
  background-color: #800080;
  color: white;
  padding: 0.75rem 2.5rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  text-transform: uppercase;
  width: 100%;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #660066;
}

/* Secondary content */
.secondary-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}


.secondary-description {
  font-size: 1.1rem;
  text-align: center;
  color: #800080;
  margin-bottom: 0.5rem;
  line-height: 1.4;
 
}


/* Thanks page */
.thanks {
  font-size: 2.5rem;
  color: #800080;
  font-family: "League Spartan", sans-serif;
  text-align: center;
}

/* Responsive design */
@media (max-width: 768px) {

  .main-section,
  .secondary-section 
   {
    margin-top: -110px;
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .brand-content {
    text-align: center;
  }

  .contact-form {
    max-width: 100%;
  }

  .logo {
    font-size: 4.5rem;
  }

  .main-section .brand-image,
  .secondary-section .brand-image {
    width: 55%;
    margin: 0 auto;
  }

  .beige-container {
    width: 90%;
    padding: 20px;
    margin: 10px auto;
  }
}

footer {
  text-align: center;
  padding: 20px;
  color: #660066;
  position: relative;
  bottom: 0;
  width: 100%;
}