/* giyim.ai dark theme styles */

* {
  box-sizing: border-box;
}

body, html {
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  background-color: #0B0D17;
  color: #E5E5E5;
}

/* Navigation */
nav {
  background-color: #0D101E;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}

nav .logo {
  font-weight: bold;
  font-size: 1.5rem;
  color: #FDBB30;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 2rem;
}

nav ul li a {
  color: #E5E5E5;
  text-decoration: none;
  transition: color 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
  color: #FDBB30;
}

/* Hero Section */
.hero {
  height: 100vh;
  background-image: url('hero.png');
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 4rem;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 1rem;
}

.hero h1 {
  font-size: 2.5rem;
  color: #FDBB30;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.1rem;
  color: #C7C7C7;
  margin-bottom: 2rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-primary {
  background-color: #FDBB30;
  color: #0B0D17;
}

.btn-primary:hover {
  background-color: #D89A13;
  color: #0B0D17;
}

.btn-outline {
  border: 2px solid #FDBB30;
  color: #FDBB30;
  background: transparent;
}

.btn-outline:hover {
  background-color: #FDBB30;
  color: #0B0D17;
}

/* Sections */
.section {
  padding: 4rem 2rem;
}

.section.dark {
  background-color: #0D101E;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  color: #FDBB30;
  margin-bottom: 2rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature {
  background-color: #0B0D17;
  border: 1px solid #222435;
  padding: 2rem;
  border-radius: 8px;
}

.feature h3 {
  color: #FDBB30;
  margin-bottom: 1rem;
}

.feature p {
  color: #C7C7C7;
  font-size: 0.95rem;
}

/* Call to action section */
.cta-section {
  text-align: center;
}

.cta-section h2 {
  color: #FDBB30;
  margin-bottom: 1rem;
}

.cta-section p {
  color: #C7C7C7;
  margin-bottom: 2rem;
}

/* Page Headers */
.page-header {
  height: 40vh;
  background-image: url('hero.png');
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
}

.page-header h1 {
  position: relative;
  z-index: 2;
  font-size: 2.5rem;
  color: #FDBB30;
}

/* Footer */
footer {
  background-color: #0D101E;
  color: #9F9F9F;
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
}

/* Forms */
form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

form input, form textarea {
  padding: 0.75rem 1rem;
  border: 1px solid #222435;
  border-radius: 4px;
  background-color: #0B0D17;
  color: #E5E5E5;
  font-size: 1rem;
  width: 100%;
}

form input:focus, form textarea:focus {
  outline: none;
  border-color: #FDBB30;
}

label {
  font-size: 0.9rem;
  color: #C7C7C7;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    gap: 1rem;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1rem;
  }
}