/* Home page specific styles */

/* Header */
header {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6)), url('../img/sign.jpg') no-repeat center center/cover;
  color: #fff;
  text-align: center;
  padding: 0 20px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  min-height: 100vh;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding-top: 80px;
}

header h1 {
  font-size: 2.7em;
  margin-bottom: 0.5em;
  font-weight: 200;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

header p {
  font-size: 1.1em;
  margin-bottom: 1.5em;
  font-weight: 300;
  color: #f8f8f8;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

/* About Section */
#about {
  text-align: center;
}

#about p {
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 1.25rem;
  line-height: 1.7;
}

/* Services Section */
.services-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.service-item {
  padding: 40px;
  text-align: left;
}

.service-item h3 {
  font-size: 1.75rem;
  margin-bottom: 16px;
  font-weight: 400;
  background: linear-gradient(135deg, #60a5fa 0%, #93c5fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
}

.service-item > p {
  font-size: 1.1rem;
  font-weight: 300;
  color: #b8b6b0;
  margin-bottom: 24px;
  font-style: italic;
  text-align: center;
}

.service-details {
  margin-top: 32px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.service-details ul li {
  margin-bottom: 20px;
  position: relative;
  padding: 16px 16px 16px 40px;
  background: linear-gradient(135deg, rgba(96, 165, 250, 0.08) 0%, rgba(147, 197, 253, 0.05) 100%);
  border-radius: 12px;
  border: 1px solid rgba(96, 165, 250, 0.15);
}

.service-details ul li::before {
  content: '●';
  position: absolute;
  left: 12px;
  top: 15px;
  color: #60a5fa;
  font-weight: 600;
  font-size: 1.1em;
}

.service-details ul li strong {
  color: #ffffff;
  font-size: 1.05em;
  display: block;
  margin-bottom: 4px;
}

/* Contact Section */
#contact {
  text-align: center;
}

#contact form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

#contact form input,
#contact form textarea {
  padding: 20px 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  font-size: 16px;
  background: rgba(30, 30, 30, 0.8);
  color: #ffffff;
  font-family: inherit;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

#contact form input:focus,
#contact form textarea:focus {
  outline: none;
  border-color: #60a5fa;
  box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.1);
  background: rgba(30, 30, 30, 0.95);
}

#contact form input::placeholder,
#contact form textarea::placeholder {
  color: #888;
}

#contact form button {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: #ffffff;
  border: none;
  padding: 20px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 12px;
  transition: all 0.3s ease;
  font-family: inherit;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

#contact form button:hover {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  transform: translateY(-2px);
}

/* Portrait orientation */
@media (orientation: portrait) {
  header {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6)), url('../img/sign.png') no-repeat center center/cover;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  header {
    min-height: 100vh;
    padding: 60px 16px 40px;
    background-attachment: scroll;
  }
  
  header h1 {
    font-size: 2.2em;
  }
  
  .services-list {
    max-width: 100%;
  }
  
  .service-item {
    padding: 24px;
    backdrop-filter: blur(5px);
  }
  
  .service-item h3 {
    font-size: 1.5rem;
  }
  
  #about p {
    font-size: 1.1rem;
  }
}

/* Landscape mobile */
@media (max-width: 768px) and (orientation: landscape) {
  header {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6)), url('../img/sign.jpg') no-repeat center center/cover !important;
    width: 100vw;
    margin-left: calc(50% - 50vw);
  }
  
  section {
    width: 100vw;
    margin-left: calc(50% - 50vw);
  }
}
