/* General Reset / Basic Styling */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
}

body {
  background-color: #f5f5f5;
  color: #333;
}

li, a, button {
  font-weight: 500;
  font-size: 16px;
  color: #edf0f1;
  text-decoration: none;
}

/* Header & Navigation */
header {
  background-color: #ffffff;
  border-bottom: 1px solid #ddd;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 30px 10%;
}

/* The logo can stay as is */
logo {
  cursor: pointer;
}

/* Navigation Links */
.nav_links {
  list-style: none;
}

.nav_links li {
  display: inline-block;
  padding: 0px 20px;
}

.nav_links li a {
  transition: all 0.3s ease 0s;
  color: black;
}

.nav_links li a:hover {
  color: #0088a9;
}

/* Language Toggle Button */
.lang-toggle {
  margin-left: 20px;
  padding: 9px 25px;
  background-color: rgba(0, 136, 169, 1);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease 0s;
}

.lang-toggle:hover {
  background-color: rgba(0, 136, 169, 0.8);
}

/* Group nav links + toggle together */
.nav-right {
  display: flex;
  align-items: center;
  gap: 0.5rem; /* Space between nav and the button */
}

/* Hero Section */
.hero {
  height: 60vh; /* Enough vertical space */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  background-image: url("images/motel.jpeg"); /* Replace with your image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-text {
  background-color: rgba(0,0,0,0.5);
  padding: 2rem;
}

.hero-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.button {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background: #ffffff;
  color: #333;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.button:hover {
  background: #f0f0f0;
}

/* About, Feedback, and Contact Sections */
section {
  padding: 2rem;
  margin: auto;
  max-width: 800px;
}

section h2 {
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

section p {
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* Form Container */
.form-container {
  margin-top: 1rem;
  overflow: auto;
}

/* Footer */
.footer {
  background-color: #ffffff;
  border-top: 1px solid #ddd;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
  font-size: 0.9rem;
}

/* Responsive Adjustments for Mobile Devices */
@media (max-width: 768px) {
  /* Adjust hero section for smaller screens */
  .hero {
    height: 50vh;
    padding: 0 1rem;
  }
  
  .hero-text h2 {
    font-size: 1.8rem;
  }
  
  .hero-text p {
    font-size: 1rem;
  }
  
  /* Reduce section padding on smaller screens */
  section {
    padding: 1.5rem;
  }
}

/* Container for the form */
.form-container {
  width: 100%;
  max-width: 640px; /* Matches the original desktop width */
  margin: 0 auto;
  padding: 0 1rem; /* Adds a little horizontal padding on mobile */
}

/* Responsive iframe styling */
.form-container iframe {
  width: 100%;
  height: 800px; /* Default height */
  border: none;
}

/* Adjustments for mobile devices */
@media (max-width: 768px) {
  .form-container iframe {
    /* Increase height if needed, or you can use auto if the form adjusts */
    height: 1000px;
  }
}

/* Header & Navigation */
header {
  background-color: #ffffff;
  border-bottom: 1px solid #ddd;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 30px 10%;
}

/* The logo can stay as is */
logo {
  cursor: pointer;
}

/* Navigation Links */
.nav_links {
  list-style: none;
}

.nav_links li {
  display: inline-block;
  padding: 0px 20px;
}

.nav_links li a {
  transition: all 0.3s ease;
  color: black;
}

.nav_links li a:hover {
  color: #0088a9;
}

/* Language Toggle Button */
.lang-toggle {
  margin-left: 20px;
  padding: 9px 25px;
  background-color: rgba(0, 136, 169, 1);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lang-toggle:hover {
  background-color: rgba(0, 136, 169, 0.8);
}

/* Responsive adjustments for iPhone 14 Pro Max and similar devices */
@media screen and (max-width: 480px) {
  header {
    padding: 20px 5%;
    flex-direction: column;
    align-items: center;
  }

  .nav_links {
    margin-top: 10px;
    padding: 0;
    text-align: center;
  }

  .nav_links li {
    display: block;
    padding: 10px 0;
  }

  .lang-toggle {
    margin: 15px 0 0;
    padding: 8px 20px;
  }
}