/* Main styles for MyCarPark website */
:root {
  --primary-color: #2d6268;
  --secondary-color: #fee22e;
  --accent-color: #f4765d;
  --text-color: #333;
  --light-bg: #f5f5f5;
  --white: #ffffff;
}

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

body {
  font-family: 'PT Sans', Helvetica, Arial, sans-serif;
  color: var(--text-color);
  background-color: var(--light-bg);
  line-height: 1.6;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: var(--accent-color);
}

img {
  max-width: 100%;
  height: auto;
}

/* Layout */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.nav-logo {
  width: 150px;
}

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

.nav-links li {
  margin-left: 30px;
}

.nav-links a {
  font-weight: bold;
  text-transform: uppercase;
}

/* Hero section */
.hero {
  background-color: var(--secondary-color);
  padding: 100px 0 70px;
  text-align: center;
}

.logo {
  width: 288px;
  margin: 0 auto;
  padding-bottom: 20px;
}

/* Info container */
.info-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px;
  background-color: var(--white);
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
  border-radius: 8px;
  margin-top: -30px;
  position: relative;
  z-index: 10;
}

.title {
  font-size: 22px;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Features */
.features {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 40px;
}

.feature {
  flex-basis: 30%;
  text-align: center;
  margin-bottom: 30px;
}

.feature i {
  font-size: 40px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.feature h3 {
  color: var(--accent-color);
  margin-bottom: 10px;
}

/* Buttons */
.btn {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: #1a4a50;
  color: var(--white);
}

/* Platforms section */
.platforms {
  background-image: linear-gradient(to bottom, var(--white), var(--white) 60%, var(--secondary-color) 40%);
  background-attachment: fixed;
  background-repeat: no-repeat;
  padding: 40px 0;
}

/* Footer */
.footer {
  background-color: var(--primary-color);
  color: var(--white);
  text-align: center;
  padding: 20px 0;
  margin-top: 60px;
}

/* Responsive */
@media (max-width: 768px) {
  .features {
    flex-direction: column;
  }
  
  .feature {
    flex-basis: 100%;
  }
  
  .info-container {
    margin-left: 20px;
    margin-right: 20px;
  }
}