/* Global styles */
:root {
  --primary-color: #0a3d62; /* dark blue */
  --secondary-color: #2aa384; /* teal */
  --accent-color: #f4a261; /* soft orange */
  --text-color: #333333;
  --light-bg: #f5f5f5;
  --white: #ffffff;
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--white);
}

.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
}

/* Header and Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 100;
}

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

.logo img {
  max-height: 50px;
  width: auto;
}

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

nav ul li a {
  text-decoration: none;
  color: var(--primary-color);
  font-weight: 500;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: var(--secondary-color);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary-color);
  cursor: pointer;
}

@media (max-width: 768px) {
  nav ul {
    position: absolute;
    top: 60px;
    right: 0;
    background-color: var(--white);
    flex-direction: column;
    gap: 0;
    padding: 1rem;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: none;
  }
  nav ul.open {
    display: flex;
  }
  nav ul li {
    margin-bottom: 0.5rem;
  }
  .menu-toggle {
    display: block;
  }
}

/* Hero Section */
.hero {
  position: relative;
  height: 90vh;
  background-image: url('../images/coworking_interior.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.btn-primary {
  background-color: var(--secondary-color);
  color: var(--white);
}
.btn-primary:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

/* Section Titles */
section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--primary-color);
}

/* Why Section */
.why-section {
  padding: 4rem 0;
  background-color: var(--light-bg);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}
.why-item {
  text-align: center;
  padding: 1rem;
}
.why-item i {
  font-size: 2rem;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}
.why-item h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}
.why-item p {
  font-size: 0.9rem;
}

/* Services Section */
.services-section {
  padding: 4rem 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.service-card {
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.service-content {
  padding: 1rem;
}
.service-content h3 {
  font-size: 1.25rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}
.service-content p {
  font-size: 0.9rem;
}

/* Pricing Section */
.pricing-section {
  padding: 4rem 0;
  background-color: var(--light-bg);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}
.pricing-card {
  background-color: var(--white);
  border: 2px solid var(--secondary-color);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
}
.pricing-card h3 {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}
.pricing-card .price {
  font-size: 1.5rem;
  color: var(--secondary-color);
  font-weight: 700;
  margin: 0.5rem 0 1rem;
}
.pricing-card ul {
  list-style: none;
  font-size: 0.9rem;
  color: var(--text-color);
}
.pricing-card ul li {
  margin-bottom: 0.5rem;
}

/* Benefits Section */
.benefits-section {
  padding: 4rem 0;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}
.benefit-item {
  text-align: center;
  padding: 1rem;
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}
.benefit-item i {
  font-size: 2rem;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}
.benefit-item h3 {
  font-size: 1.25rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}
.benefit-item p {
  font-size: 0.9rem;
}

/* Community Section */
.community-section {
  padding: 4rem 0;
  background-color: var(--light-bg);
  text-align: center;
}
.community-section p {
  max-width: 700px;
  margin: 0.5rem auto;
  font-size: 1rem;
}

/* Locations Section */
.locations-section {
  padding: 4rem 0;
}
.locations-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
.location-item h3 {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 0.25rem;
}
.location-item p {
  font-size: 0.9rem;
}
.location-image img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

/* Contact Section */
.contact-section {
  padding: 4rem 0;
  background-color: var(--light-bg);
}
.contact-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  align-items: start;
}
.contact-info h2 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}
.contact-info p {
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}
.contact-info a {
  color: var(--secondary-color);
  text-decoration: none;
}
.contact-form {
  display: flex;
  flex-direction: column;
}
.contact-form label {
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
  color: var(--primary-color);
}
.contact-form input,
.contact-form textarea {
  padding: 0.5rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: inherit;
}
.contact-form button {
  align-self: flex-start;
}

/* Footer */
.footer {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 1rem 0;
  text-align: center;
  font-size: 0.85rem;
}
.footer-container p {
  margin: 0.25rem 0;
}