/* ====== Base Fonts & Colors ====== */
body {
  margin: 0;
  font-family: 'Quicksand', sans-serif;
  background: #FFF9F0;
  color: #444;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 10px;
  color: #C8323E;
}

a {
  text-decoration: none;
  color: #C8323E;
}

/* ====== Sidebar ====== */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 220px;
  height: 100vh;
  background-color: #FADADD;
  padding: 30px 20px;
  box-shadow: 2px 0 8px rgba(0,0,0,0.05);
  text-align: center;
  z-index: 1000;
}

.sidebar h2 {
  font-size: 1.8em;
  margin-bottom: 40px;
}

.sidebar nav ul {
  list-style: none;
  padding: 0;
}

.sidebar nav li {
  margin: 20px 0;
}

.sidebar nav a {
  font-weight: bold;
  transition: color 0.3s;
}

.sidebar nav a:hover {
  color: #a82630;
}

/* ====== Main Content ====== */
.main-content {
  margin-left: 240px;
  padding: 20px;
}

/* ====== Hero Section ====== */
.hero {
  background: linear-gradient(to bottom right, #FADADD, #FFF9F0);
  text-align: center;
  padding: 100px 20px;
}

.hero-text h1 {
  font-size: 3em;
  margin: 0;
}

.hero-text p {
  font-size: 1.2em;
  margin-bottom: 20px;
}

.btn {
  background-color: #C8323E;
  color: white;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: bold;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: #a82630;
}

/* ====== Sections ====== */
.section {
  padding: 60px 20px;
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.alt {
  background-color: #D4F4DD;
  border-radius: 12px;
}

.about {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.profile {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #FADADD;
}

/* ====== Portfolio Grid ====== */
.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}

.card {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* ====== Contact Form ====== */
form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 400px;
  margin: auto;
}

input, textarea {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

button {
  background-color: #C8323E;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
}

button:hover {
  background-color: #a82630;
}

/* ====== Footer ====== */
footer {
  background-color: #FADADD;
  text-align: center;
  padding: 20px;
  font-size: 0.9em;
  margin-top: 40px;
}
