/* styles.css - A1omads Main Stylesheet */ 

/* Reset and Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body { font-family: Arial, sans-serif; line-height: 1.6; color: #333; background: #fff; }

h1 { font-size: 2rem; }

.container { width: 90%; max-width: 1200px; margin: 0 auto; padding: 1rem; }

/* Header */
.header { background: #fff; border-bottom: 1px solid #ddd; position: sticky; top: 0; z-index: 1000; padding: 1rem 0; }

/* Logo */
.logo-area { display: flex; flex-direction: column; }
.logo { font-size: 1.5rem; font-weight: bold; color: #0073e6; }
.slogan { font-size: 1rem; color: #555; margin-top: 4px; }
.underline { text-decoration: underline; text-underline-offset: 2px; }

/* Navbar */
.navbar { display: flex; justify-content: space-between; align-items: center; }
.nav-links { list-style: none; display: flex; gap: 1rem; }
.nav-links a { text-decoration: none; color: #333; font-weight: 500; }

/* Responsive Navbar Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  height: 3px;
  width: 25px;
  background-color: #333;
  margin: 4px 0;
}

/* Hero Section */
.hero { background: #f4f4f4; padding: 4rem 0; text-align: center; }

/* Main Sections */
.services,
.about,
.contact { padding: 4rem 0; background: #fff; }

/* Grid Layout */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1rem; margin-top: 2rem; }

/* Service Cards */
.service-card { background: #f9f9f9; padding: 2rem; border: 1px solid #ddd; text-align: center; }

/* Forms */
form {display: flex; flex-direction: column; gap: 1rem; }

input,
textarea { padding: 0.75rem; border: 1px solid #ccc; border-radius: 4px; font-size: 1rem; }
button { padding: 0.75rem; background-color: #0073e6; color: white; border: none; border-radius: 4px; cursor: pointer; }

/* Footer */
.footer { text-align: center; padding: 2rem 0; background: #f4f4f4; }
.footer-columns { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1.5rem; margin-bottom: 2rem; }
.footer-col h4 { font-size: 1rem; color: #004A99; margin-bottom: 0.5rem; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a { text-decoration: none; color: #333; font-size: 0.95rem; }
.footer-col ul li a:hover { text-decoration: underline; }

/* Responsive Styles */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: white;
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }
}

/* ========================== */
/* Store Button Styles        */
/* ========================== */

.store-buttons {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.store-btn {
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.9rem;
  text-decoration: none;
  color: white;
  background-color: #444;
  transition: background-color 0.3s ease;
  display: inline-block;
}

.store-btn:hover {
  background-color: #222;
}

.store-btn.google { background-color: #34A853; }
.store-btn.apple { background-color: #000; }
.store-btn.windows { background-color: #0078D7; }
.store-btn.amazon { background-color: #FF9900; }
