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

body {
    font-family: 'Montserrat', Arial, sans-serif;
    color: #FFFFFF;
    background: linear-gradient(to right, rgba(11, 15, 20, 1), rgba(11, 15, 20, 0)), url('img/background.avif');
    background-size: cover;
}


/* Header */
header {
    padding: 30px 0 0;
    position: relative;
    z-index: 10;
}

.logo {
    margin-left: 20px;
    background-image: url("img/Langano_white.png");
    background-size: 80px;
    background-repeat: no-repeat;
    height: 100px;
}

.langano {
    position: absolute;
    top: 50px;
    left: 130px;
    font-size: 200%;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 60px 0;
}


.background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
    opacity: 0.9;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    padding-left: 40px;
}

.tagline {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #64B5F6;
    margin-bottom: 20px;
}

.headline {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #FFFFFF;
}

.description {
    font-size: 18px;
    line-height: 1.6;
    color: #FFFFFF;
    margin-bottom: 40px;
    max-width: 550px;
}

.contact-form {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.email-input, .message-input {
    flex: 1;
    padding: 16px 20px;
    background-color: #1A1D23;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #FFFFFF;
    font-size: 16px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.3s ease;
}


.email-input{    min-width: 280px;}
.message-input{    min-width: 400px; height:100px}

.email-input::placeholder {
    color: #888B92;
}

.email-input:focus {
    border-color: #64B5F6;
}

.contact-button {
    padding: 16px 32px;
    background-color: #2196F3;
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
}

.contact-button:hover {
    background-color: #1976D2;
    transform: translateY(-1px);
}

.contact-button:active {
    transform: translateY(0);
}

.disclaimer {
    font-size: 12px;
    color: #A0A0A0;
    margin-top: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero { padding: 60px 0; }
    .hero-content { padding-left: 10px; }
    .headline { font-size: 40px; }
    .description { font-size: 16px; }
    .contact-form { flex-direction: column; }
    .email-input, .message-input { min-width: 90%; }
}

@media (max-width: 480px) {
    .headline { font-size: 32px; }
    .tagline { font-size: 12px; }
    .langano { font-size: 150%; top: 45px; left:95px }
    .logo { background-size: 60px; }
}

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

.modal-content {
  background-color: #1A1D23;
  border-radius: 12px;
  padding: 40px;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  color: #FFFFFF;
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}

.modal-close:hover {
  color: #64B5F6;
}

#fs-form {
  display: grid;
  row-gap: 1.5rem;
}

#fs-form h2 {
  color: #FFFFFF;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

#fs-form label {
  display: block;
  color: #FFFFFF;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 500;
}

#fs-form .email-input,
#fs-form .message-input {
  width: 100%;
  padding: 16px 20px;
  background-color: #0B0F14;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #FFFFFF;
  font-size: 16px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.3s ease;
}

#fs-form .message-input {
  min-height: 120px;
  resize: vertical;
}

#fs-form .email-input::placeholder,
#fs-form .message-input::placeholder {
  color: #888B92;
}

#fs-form .email-input:focus,
#fs-form .message-input:focus {
  border-color: #64B5F6;
}

#fs-form .contact-button {
  width: 100%;
  margin-top: 10px;
}

/* Responsive Modal */
@media (max-width: 768px) {
  .modal-content {
    padding: 30px 20px;
    width: 95%;
  }
  
  #fs-form h2 {
    font-size: 24px;
  }
}