body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: #f4f4f2;
    color: #2e2e2e;
    line-height: 1.7;
}

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

.narrow {
    max-width: 700px;
}

/* Header */
header {
    background: rgba(244, 244, 242, 0.9);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
    padding: 0;
    margin: 0;
}

nav a {
    text-decoration: none;
    color: #444;
    font-size: 14px;
}

/* Sections */
.section {
    padding: 90px 0;
}

.section.alt {
    background-color: #ecebe8;
}

/* Typography */
h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    margin-bottom: 25px;
}

.intro {
    font-size: 20px;
    margin-bottom: 20px;
}

/* Grid */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

/* Cards */
.card {
    padding: 20px;
    border-radius: 10px;
    background: rgba(255,255,255,0.6);
    border: 1px solid rgba(0,0,0,0.05);
    transition: transform 0.2s ease;
}

.card:hover {
    transform: translateY(-3px);
}

.price {
    margin-top: 10px;
    font-weight: 500;
}

/* Projects */
.project {
    margin-bottom: 40px;
}

/* Button */
button {
    padding: 10px 18px;
    border: none;
    background: #2e2e2e;
    color: white;
    border-radius: 6px;
    cursor: pointer;
}

button:hover {
    opacity: 0.8;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

input, textarea {
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-family: 'Inter', sans-serif;
}

label {
    font-size: 14px;
    color: #555;
}
.back-link {
    display: inline-block;
    margin-top: 20px;
    text-decoration: none;
    color: #2e2e2e;
    border-bottom: 1px solid #2e2e2e;
}
.project-card {
    margin-bottom: 40px;
}

.project-card img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
}

.project-card a {
    text-decoration: none;
    border-bottom: 1px solid #333;
    color: #333;
    font-size: 14px;
}

.project-item {
    margin-bottom: 80px;
}

.project-item img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
}

.project-text {
    max-width: 500px;
}

.project-text h3 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 10px;
}

.project-text p {
    margin-bottom: 10px;
    color: #555;
}

.project-text a {
    text-decoration: none;
    border-bottom: 1px solid #333;
    color: #333;
    font-size: 14px;
}
.project-item:nth-child(even) {
    margin-left: 60px;
}
.service-item {
  margin-bottom: 50px;
  max-width: 500px;
}

.service-item h3 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 10px;
}

.service-item p {
  color: #555;
  margin-bottom: 8px;
}

.price {
  font-weight: 500;
  margin-top: 10px;
  color: #2e2e2e;
}

.card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}
/* ✨ soft background feeling */
body {
  background: #f7f6f3;
}

/* ✨ softer sections */
.section {
  padding: 4rem 1.5rem;
}

/* ✨ breathing space */
.container.narrow {
  max-width: 620px;
}

/* ✨ elegant headings */
h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* ✨ subtle hover feeling */
a {
  transition: all 0.3s ease;
}

a:hover {
  opacity: 0.6;
}

/* ✨ cards feel less “boxy” */
.card {
  background: #ffffff;
  border-radius: 12px;
  padding: 25px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}
/* Footer */
footer {
    text-align: center;
    padding: 30px;
    font-size: 14px;
    color: #777;
}