/* Root Color Palette */
:root {
  --primary: #d3b686;
  --accent: #52374a;
  --highlight: #7c4433;
  --light-bg: #fdf8f2;
  --contact-bg: #fbeee8;
  --deep-maroon: #763929;
}

/* Base Styling */
body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  background-color: var(--light-bg);
  color: var(--accent);
}

h1, h2 {
  font-family: 'DM Sans', sans-serif;
}

header {
  background: linear-gradient(to right, #393945, #26232e);
  color: white;
  text-align: center;
  padding: 100px 20px;
}

header .logo {
  width: 250px;
  height: auto;
}

header p {
  font-size: 1.3rem;
  max-width: 700px;
  margin: 0 auto;
}

.section {
  padding: 60px 20px;

}
.container{
      max-width: 900px;
  margin: auto;
}
.section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--highlight);
  display: flex;
  align-items: center;
  gap: 10px;
}

.section p {
  font-size: 1.1rem;
  line-height: 1.6;
}

/* About Us Enhancements */
.about-section {
  background-color: #fffdf8;
  border-left: 6px solid var(--highlight);
  padding: 60px 30px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

/* App Highlight Section with Background */
.app-highlight-wrapper {
  background: linear-gradient(to right, #f7f2ec, #fef9f4);
  padding: 80px 0;
}

.app-section {
  text-align: center;
}

.app-section h2 {
  color: var(--accent);
}

.app-logo {
  width: 220px;
  margin-bottom: 20px;
}

.app-screenshot {
  width: 100%;
  max-width: 420px;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  margin: 20px 0;
}

.button {
  background-color: var(--highlight);
  color: white;
  padding: 12px 24px;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.button:hover {
  background-color: #5a2e25;
}

/* Contact Section */
.contact-wrapper {
  text-align: center;
  background-color: var(--contact-bg);
  padding: 80px 20px;
  border-top: 4px solid var(--deep-maroon);
}

.contact-title {
  font-size: 2rem;
  color: var(--deep-maroon);
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.contact-section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
}

.contact-icon {
  background-color: var(--deep-maroon);
  color: #fff;
  border-radius: 50%;
  padding: 10px;
  font-size: 24px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-item a {
  color: var(--deep-maroon);
  text-decoration: none;
  font-weight: bold;
}

.contact-item a:hover {
  text-decoration: underline;
}

/* Footer */
footer {
  background-color: var(--accent);
  color: white;
  text-align: center;
  padding: 40px 20px;
}

footer p {
  margin: 0;
}

/* Responsive Design */
@media (max-width: 900px) {
  .app-highlight-wrapper {
    padding: 60px 0;
  }

  .section h2 {
    font-size: 1.7rem;
  }

  .contact-section {
    flex-direction: column;
    gap: 30px;
  }

  .app-screenshot {
    max-width: 90%;
  }
}

@media (max-width: 600px) {
  header h1 {
    font-size: 2.2rem;
  }

  .section h2 {
    font-size: 1.5rem;
  }

  header p {
    font-size: 1.1rem;
  }

  .contact-title {
    font-size: 1.6rem;
  }
}
