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

body {
  font-family: "Inter", sans-serif;
  background: #fff;
  color: #000;
  line-height: 1.7;
}

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

.logo1 {
    height: 100px;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ===== NAVBAR ===== */
.navbar {
  background: #fff;
  border-bottom: 1px solid #ddd;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.nav-links a {
  font-weight: 400;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #666;
}

/* ===== HERO ===== */
.hero {
  background: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?auto=format&fit=crop&w=1920&q=80") center/cover no-repeat;
  color: #000;
  text-align: center;
  padding: 6rem 1rem;
  background-blend-mode: lighten;
}

.hero-content {
  background: rgba(255,255,255,0.85);
  padding: 2rem;
  border-radius: 8px;
  display: inline-block;
}

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

.hero p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn {
  background: #000;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 4px;
  transition: 0.3s;
  font-weight: 500;
}

.btn:hover {
  opacity: 0.8;
}

.btn-outline {
  background: transparent;
  color: #000;
  border: 1px solid #000;
}

.btn-outline:hover {
  background: #000;
  color: #fff;
}

/* ===== SECTIONS ===== */
.section {
  padding: 4rem 0;
}

.bg-light {
  background: #f9f9f9;
}

.section h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.section p {
  margin-bottom: 1rem;
  font-size: 1rem;
}

/* ===== GRID / CARDS ===== */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.card {
  background: #fff;
  padding: 1.5rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: start;
}

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

input, textarea {
  padding: 0.8rem;
  border: 1px solid #000;
  border-radius: 4px;
  font-family: inherit;
}

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

.contact-info p {
  margin-bottom: 0.5rem;
}

.socials {
  margin-top: 1rem;
}

.socials a {
  margin-right: 1rem;
  text-decoration: underline;
  font-weight: 500;
}

/* ===== FOOTER ===== */
footer {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.9rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero h2 {
    font-size: 1.5rem;
  }

  .nav-links {
    display: none;
  }
}
