/* Graceful Bold Theme - style.css */

/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #FFF7F0;
  color: #2C2C2C;
  line-height: 1.6;
  padding: 0 20px;
}

/* Header Hero */
.hero {
  text-align: center;
  padding: 60px 20px;
  background-color: #4A154B;
  color: #FFF7F0;
  border-radius: 0 0 20px 20px;
}

.hero h1 {
  font-size: 2.8em;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2em;
  color: #FFB5B5;
}

/* Navigation */
.nav {
  margin-top: 20px;
}

.nav a {
  margin: 0 10px;
  color: #FF6B6B;
  text-decoration: none;
  font-weight: 600;
}

.nav a:hover {
  text-decoration: underline;
}

/* Sections */
section {
  background-color: #ffffff;
  padding: 30px;
  margin: 40px auto;
  max-width: 900px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(74, 21, 75, 0.08);
  transition: all 0.3s ease-in-out;
}

section h2 {
  color: #4A154B;
  margin-bottom: 15px;
  font-size: 1.8em;
}

ul {
  padding-left: 20px;
  margin-top: 10px;
}

ul li {
  margin-bottom: 8px;
}

/* Project Cards */
.project-card {
  background-color: #FFF0F5;
  border-left: 5px solid #FF6B6B;
  padding: 15px 20px;
  margin-bottom: 20px;
  border-radius: 8px;
}

.project-card h3 {
  color: #B83E63;
  margin-bottom: 5px;
}

/* Contact Form */
form label {
  display: block;
  margin-top: 15px;
  font-weight: 600;
}

form input, form textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border-radius: 6px;
  border: 1px solid #ccc;
  background: #fff;
}

form button {
  margin-top: 20px;
  padding: 12px 25px;
  background-color: #FF6B6B;
  border: none;
  color: #fff;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
}

form button:hover {
  background-color: #e95c5c;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  font-size: 0.9em;
  color: #888;
  margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 600px) {
  .hero h1 {
    font-size: 2em;
  }

  .hero p {
    font-size: 1em;
  }

  section {
    padding: 20px;
  }
}
