/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

/* Header */
header {
  background-color: #2c3e50;
  color: white;
  padding: 1.5em 1em;
  text-align: center;
}

nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 10px;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

/* Hero Section */
.hero {
  padding: 50px 20px;
  background: #ecf0f1;
  text-align: center;
}

.hero h2 {
  font-size: 2em;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.2em;
  margin-bottom: 25px;
}

.hero img {
  margin-top: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  max-width: 100%;
  height: auto;
}

/* Content */
.content {
  padding: 40px 20px;
  max-width: 900px;
  margin: auto;
}

.shop-category {
  margin-bottom: 30px;
}

.shop-category h3 {
  color: #2c3e50;
  margin-bottom: 10px;
}

.shop-category ul {
  list-style-type: square;
  margin-left: 20px;
}

/* Footer */
footer {
  background-color: #bdc3c7;
  text-align: center;
  padding: 1em;
  font-size: 0.9em;
  color: #2c3e50;
}

/* Contact Form */
.contact-form {
  margin: 30px auto;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  font-size: 1em;
  border: 1px solid #ccc;
  border-radius: 6px;
  width: 100%;
}

.contact-form button {
  padding: 12px;
  font-size: 1em;
  background-color: #2c3e50;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #34495e;
}

/* Hero Banner */
.hero-banner {
  background-image: url('images/malls_front.png');
  background-size: cover;
  background-position: center;
  height: 300px;
  position: relative;
  color: white;
}

.hero-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.hero-text {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-top: 100px;
  animation: fadeIn 2s ease-in-out;
}

.hero-text h1 {
  font-size: 2.5rem;
  color: #fff;
}

/* Navbar */
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  padding: 15px 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  background: rgba(0, 0, 0, 0.3);
}

.navbar a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

.navbar a:hover {
  text-decoration: underline;
}

/* About Page */
.about-content {
  padding: 2rem;
}

.about-content h2 {
  margin-bottom: 1rem;
}

.about-content p {
  margin-bottom: 1rem;
}

.about-content ul {
  list-style: none;
  padding-left: 0;
}

.about-content li {
  margin-bottom: 0.5rem;
}

/* Features Section */
.features {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.9);
}

.feature-box {
  flex: 1 1 250px;
  margin: 15px;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  text-align: center;
  transition: transform 0.2s ease;
}

.feature-box:hover {
  transform: scale(1.05);
}

.feature-box a {
  margin-top: 10px;
  text-decoration: none;
  color: #007bff;
  font-weight: bold;
}

/* Extras */
.vacancy-alert {
  background-color: #f2f2f2;
  text-align: center;
  padding: 40px 20px;
  border-top: 3px solid #2c3e50;
  border-bottom: 3px solid #2c3e50;
  margin-bottom: 40px;
}

.vacancy-alert h2 {
  font-size: 28px;
  color: #2c3e50;
  margin-bottom: 10px;
}

.vacancy-alert p {
  font-size: 18px;
  margin: 8px 0;
}

.rent-btn {
  display: inline-block;
  margin-top: 15px;
  background-color: #2c3e50;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.rent-btn:hover {
  background-color: #1a242f;
}

.event-card {
  background-color: #fff;
  border-left: 5px solid #2c3e50;
  padding: 20px;
  margin: 20px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
}

.event-card h3 {
  margin-top: 0;
  font-size: 22px;
  color: #2c3e50;
}

.event-card p {
  margin: 8px 0;
  font-size: 16px;
  color: #333;
}

/* Responsive Design */
@media (max-width: 768px) {
  header h1,
  .hero h2,
  .hero-text h1 {
    font-size: 1.5em;
  }

  nav {
    flex-direction: column;
    align-items: center;
  }

  nav a {
    font-size: 1em;
    margin: 5px 0;
  }

  .features {
    flex-direction: column;
    padding: 20px 10px;
  }

  .feature-box {
    width: 90%;
  }

  .contact-form {
    width: 100%;
    padding: 0 10px;
  }

  .hero-banner {
    height: 200px;
  }

  .hero-text {
    padding-top: 60px;
  }

  .vacancy-alert h2 {
    font-size: 1.3em;
  }

  .vacancy-alert p {
    font-size: 1em;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
