/* Basic Reset & Global Styles */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  color: #f4f4f4;
  background-color: #000000;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  color: #ffffff;
}

a {
  color: #cccccc;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Screen Reader Only class for labels */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Hero Section */

.hero-section {
  height: 75vh;
  background-image: linear-gradient(rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.3)), url('../../assets/img/dubai_sunset.jpg');
  background-size: cover;
  background-position: center center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding-top: 40px;
  position: relative;
}

.hero-logo {
  font-family: 'Roboto', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #ffffff;
  margin-bottom: auto;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  flex-grow: 1;
  padding-top: 95px;
  padding-bottom: 10vh;
}

.hero-content h2 {
  font-size: 2.5rem;
  color: #ffffff;
  margin: 0;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
}

/* Contact Section */

.contact-section {
  background-color: #000000;
  padding: -0px 20px;
  text-align: center;
}

.contact-section h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.contact-section .subtitle {
  font-size: 1.1rem;
  color: #cccccc;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.contact-section .subtitle::after {
  content: '';
  display: block;
  width: 50px;
  height: 1px;
  background-color: #555555;
  margin: 10px auto -50px auto;
}

.contact-section form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
}

.form-group input[type="text"], .form-group input[type="email"], .form-group textarea {
  width: 100%;
  padding: 12px 15px;
  background-color: transparent;
  border: 1.5px solid #444444;
  color: #ffffff;
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  border-radius: 10px;
}

.form-group input[type="text"]::placeholder, .form-group input[type="email"]::placeholder, .form-group textarea::placeholder {
  color: #999999;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group.checkbox-group {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  margin-bottom: 30px;
}

.form-group.checkbox-group input[type="checkbox"] {
  margin-right: 10px;
  width: auto;
  accent-color: #555;
}

.form-group.checkbox-group label {
  font-size: 0.9rem;
  color: #cccccc;
}

.btn-send {
  background-color: #ffffff;
  color: #000000;
  border: none;
  padding: 12px 35px;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  border-radius: 10px;
}

.btn-send:hover {
  background-color: #dddddd;
}

.recaptcha-notice {
  font-size: 0.75rem;
  color: #888888;
  margin-top: 30px;
  line-height: 1.4;
}

.recaptcha-notice a {
  color: #aaaaaa;
}

/* Footer Section */

.footer-section {
  background-color: #000000;
  color: #888888;
  text-align: center;
  padding: 30px 20px;
  font-size: 0.85rem;
}

/* Responsive Adjustments */

@media (max-width: 768px) {
  .hero-logo {
    font-size: 1.2rem;
    padding-top: 20px;
  }
}

@media (max-width: 768px) {
  .hero-content h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .contact-section h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .contact-section .subtitle {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .form-group.checkbox-group {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-content h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .contact-section h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .btn-send {
    padding: 10px 25px;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .form-group.checkbox-group label {
    font-size: 0.8rem;
  }
}

