/* assets/css/style.css */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #FFF8F5;
  color: #333;
  line-height: 1.6;
}

/* Header */
header {
  width: 100%;
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 1px solid #eee;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  font-weight: bold;
  font-size: 20px;
  color: #FF6B6B;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav ul li a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
  position: relative;
}

nav ul li a.active,
nav ul li a:hover {
  color: #FF6B6B;
}

.cta-btn {
  background: #FF6B6B;
  color: #fff;
  padding: 10px 16px;
  text-decoration: none;
  border-radius: 30px;
  font-size: 13px;
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  font-size: 22px;
  cursor: pointer;
}

@media (max-width: 768px) {
  nav ul {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    display: none;
  }

  nav ul.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}

/* Sections */
section {
  padding: 60px 0;
}

.hero {
  position: relative;
  height: 80vh;
  background: #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-text {
  position: absolute;
  background: rgba(255, 255, 255, 0.7);
  padding: 30px;
  max-width: 500px;
}

.hero-text h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.hero-text p {
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background: #6C5CE7;
  color: #fff;
  text-decoration: none;
  border-radius: 25px;
}

/* Grid */
.grid {
  display: grid;
  gap: 30px;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 768px) {
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

/* Image placeholder */
.img-box {
  background: #ccc;
  width: 100%;
  height: 250px;
  position: relative;
}

.img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Footer */
footer {
  background: #222;
  color: #fff;
  padding: 50px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.footer-grid h4 {
  margin-bottom: 15px;
}

.footer-grid ul {
  list-style: none;
}

.footer-grid ul li {
  margin-bottom: 10px;
}

.footer-grid ul li a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 13px;
  border-top: 1px solid #444;
  padding-top: 15px;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}