/* styles.css */

/* 1. Reset & base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
}

body {
  background: #f9f9f9;
  min-height: 100vh;
}


/* 2. Utility containers */
.container {
  width: 90%;
  max-width: 960px;
  margin: 0 auto;
}

/* 3. Header & Nav */
.site-header {
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
  padding: 1rem 0;
}
.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-header .logo {
  width: 100px;
    height: 100px;
}

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

.site-nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}
.site-nav a:hover {
  color: #0077cc;
}

/* 4. Hero */
.hero {
  background: url('assets/hero-bg.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 6rem 0;
  min-height: 60vh;
  position: relative;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}
.hero .container {
  position: relative;
  z-index: 1;
}
.hero h1 {
  font-size: 2.75rem;
  margin-bottom: 1rem;
}
.hero p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}
.btn-primary {
  display: inline-block;
  background: #0077cc;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
}
.btn-primary:hover {
  background: #005fa3;
}
.btn-login {
  display: inline-block;
  background: transparent;
  color: #0077cc;
  border: 1px solid #0077cc;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
}
.btn-login:hover {
  background: #0077cc;
  color: #fff;
}

/* 5. Features */
.features {
  padding: 3rem 0;
  background: #fff;
}

/* 5.5. Pricing Section */
.pricing {
  padding: 3rem 0;
  background: #fff;
}
.pricing h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: #0077cc;
  font-size: 2rem;
}
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 1.5rem;
}
.pricing-card {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  background: #fafafa;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.pricing-card h3 {
  margin-bottom: 1rem;
  color: #0077cc;
  font-size: 1.25rem;
}
.pricing-card .price {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.pricing-card .price span {
  font-size: 1rem;
  color: #666;
}
.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}
.pricing-card ul li {
  margin: 0.5rem 0;
}
.pricing-card a.btn-primary {
  margin-top: auto;
}

/* 6. About */
.about {
  padding: 3rem 0;
  line-height: 1.6;
}

/* 7. Contact Form */
.contact {
  padding: 3rem 0;
  background: #fff;
}
.contact form {
  display: grid;
  gap: 1rem;
  max-width: 500px;
  margin-top: 1.5rem;
}
.contact label {
  font-weight: 500;
}
.contact input,
.contact textarea {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.contact input:focus,
.contact textarea:focus {
  border-color: #0077cc;
  outline: none;
}
.btn-secondary {
  background: #eee;
  color: #333;
  padding: 0.75rem 1.25rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
}
.btn-secondary:hover {
  background: #ddd;
}

/* 7.5. Open Meet Section */
.open-meet {
  padding: 3rem 0;
  background: #f1faff;
}
.open-meet h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  color: #0077cc;
  font-size: 1.75rem;
}
.open-meet-form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  max-width: 400px;
  margin: 0 auto;
}
.open-meet-form label {
  position: absolute;
  left: -9999px;
}
.open-meet-form input {
  width: 120px;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  text-align: center;
  font-size: 1rem;
}
.open-meet-form input:focus {
  border-color: #0077cc;
  outline: none;
}
.open-meet-form button {
  background: #0077cc;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
}
.open-meet-form button:hover {
  background: #005fa3;
}

/* 8. Footer */
.site-footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 2rem 0;
  font-size: 0.875rem;
}
.site-footer a {
  color: #fff;
  text-decoration: underline;
}

/* 9. Responsive tweaks */
@media (max-width: 600px) {
  .site-nav ul {
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
  }
}
/* Mobile menu toggle */
.menu-toggle {
  font-size: 1.5rem;
  background: none;
  border: none;
  color: #333;
  cursor: pointer;
}
@media (max-width: 600px) {
  .site-nav {
    display: none;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
  }
  .site-header.open .site-nav {
    display: flex;
  }
  .menu-toggle {
    display: inline-block;
  }
}