/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Fonts and Colors */
body {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px; /* Body text size */
  font-weight: 400; /* Regular weight */
  line-height: 1.5;
  background-color: #b35a6f; /* Pink background */
  color: #2c1a1d; /* Dark text color */
}

/* Header Title (Montserrat) */
.header-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px; /* Small size */
  font-weight: 700; /* Bold */
  letter-spacing: -0.085em; /* Tight kerning */
  text-transform: uppercase;
  text-align: center;
  margin-top: 20px;
  color: #2c1a1d;
}

/* Main Container */
.main-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.left-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.right-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

/* Headings (Playfair Display) */
h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-size: 45px; /* Large heading size */
  font-weight: 400; /* Regular weight */
  line-height: 1.2;
  text-align: center;
}

/* Background Video */
.background-video {
  width: 100%;
  max-width: 600px;
  border-radius: 8px;
}

/* Description Text */
.description {
  font-size: 16px; /* Body text */
  line-height: 1.5;
  margin-bottom: 20px;
}

/* Buttons (Open Sans) */
.buttons {
  display: flex;
  gap: 10px;
}

.cta-button {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px; /* Match body text */
  font-weight: 700; /* Bold */
  text-transform: uppercase; /* All caps */
  letter-spacing: 0.1em; /* Extra spacing between letters */
  text-align: center;
  padding: 10px 20px; /* Padding for consistent size */
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 2px;
  width: 300px; /* Fixed width for uniform button size */
  height: 50px; /* Fixed height for uniform button size */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Newsletter Button */
#newsletter-button {
  background-color: #411423; /* Dark red background */
  color: #b35a6f; /* Pink text color */
  border: 2px solid #b35a6f; /* Border matches the background color */
}

#newsletter-button:hover {
  background-color: #e3b5c3; /* Hover effect */
  color: #411423;
}

/* Book a Call Button */
.book-call {
  background-color: transparent; /* Transparent background */
  border: 2px solid #411423; /* Dark red border */
  color: #411423; /* Text color matches border */
}

.book-call:hover {
  background-color: #2c1a1d; /* Dark background on hover */
  color: #e3b5c3;
  border: none;
}

/* Social Media Icons */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 10px;
}

.social-icons img {
  width: 24px; /* Smaller size */
  height: 24px; /* Match the width */
  transition: transform 0.3s ease, filter 0.3s ease;
}

.social-icons img:hover {
  transform: scale(1.2); /* Slightly enlarge on hover */
}

/* Popup Styles */
.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8); /* Dark overlay */
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.popup-content {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  width: 100%;
  max-width: 450px;
  text-align: center;
  position: relative;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.close-popup {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Form Heading */
.form-heading {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 400;
  color: #2c1a1d;
  margin-bottom: 10px;
}

.form-subheading {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: #411423;
  margin-bottom: 20px;
}

/* Form Fields */
.form-group {
  margin-bottom: 15px;
  text-align: left;
}

.form-group label {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: #2c1a1d;
  display: block;
  margin-bottom: 5px;
}

.form-group input {
  width: 100%;
  padding: 10px;
  font-size: 14px;
  border: 1px solid #b35a6f;
  border-radius: 5px;
  font-family: 'Open Sans', sans-serif;
  color: #2c1a1d;
  background-color: #fff;
}

.form-group input:focus {
  outline: none;
  border-color: #411423;
  box-shadow: 0 0 5px rgba(65, 20, 35, 0.5);
}

/* GDPR Checkbox */
.form-group.gdpr {
  font-size: 12px;
  text-align: left;
}

.form-group.gdpr label {
  font-family: 'Open Sans', sans-serif;
  color: #2c1a1d;
}

/* Submit Button */
.form-button {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-weight: 600; /* Semi-bold */
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 10px 20px;
  color: #fff;
  background-color: #411423;
  border: 2px solid #411423;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%; /* Full width for consistency */
}

.form-button:hover {
  background-color: #b35a6f;
  color: #411423;
}

/* Responsive Design */
@media (max-width: 768px) {
  .main-container {
    flex-direction: column;
    align-items: center;
    padding: 20px;
  }

  .left-column, .right-column {
    width: 100%;
  }

  .background-video {
    max-width: 100%;
  }

  .cta-button {
    width: 100%; /* Full width for buttons on smaller screens */
    text-align: center;
  }
}
