/* Smooth scrolling when clicking navigation links */
html {
  scroll-behavior: smooth;
}

/* Main page settings */
body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  background-color: #efc4d0;
  color: #000000;
}

/* Fixed navigation bar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 40px;
  background-color: #dca8b8;
  z-index: 1000;
  box-sizing: border-box;
}

/* Logo / name on the left */
.logo {
  font-size: 24px;
  font-weight: 600;
  font-style: normal;
  color: #000000;
  font-family: Arial, Helvetica, sans-serif;
}

/* Navigation list on the right */
.nav-links {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
}

/* Navigation links */
.nav-links a {
  text-decoration: none;
  color: #000000;
  font-size: 16px;
  font-weight: 600;
  font-family: Arial, Helvetica, sans-serif;
}

/* Hover effect */
.nav-links a:hover {
  text-decoration: underline;
}

/* General section styling */
.section {
  min-height: 100vh;
  padding: 80px 60px 80px 60px;
  box-sizing: border-box;
}

/* Home section */
.home-section {
  padding: 70px 0 0 0; /* leave space for navbar */
  height: 100vh;
  overflow: hidden;
}

/* Home banner image */
.home-section img {
  width: 100vw;
  height: calc(100vh - 70px); /* full screen height minus navbar */
  object-fit: cover; /* fill the area tightly */
  display: block;
}

/* Section headings */
.section h2 {
  font-size: 48px;
  margin-bottom: 20px;
  color: #000000;
}

/* Paragraph text */
.section p {
  font-size: 22px;
  line-height: 1.8;
  max-width: 850px;
  color: #000000;
}
/* About section */
.about-section {
  padding: 100px 60px;
}

.about-section h2 {
  font-size: 48px;
  margin-bottom: 40px;
  text-align: left;
  color: #000000;
  font-family: Arial, Helvetica, sans-serif;
}

/* About content layout */
.about-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

/* Left image */
.about-image {
  flex: 1;
  min-width: 260px;
  max-width: 380px;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
}

/* Right text */
.about-text {
  flex: 2;
  min-width: 300px;
}

.about-text p {
  font-size: 28px;
  line-height: 1.8;
  color: #000000;
  max-width: 700px;
  font-family: Arial, Helvetica, sans-serif;
}
.portfolio-section {
  padding: 100px 60px;
}

.portfolio-section h2 {
  font-size: 48px;
  margin-bottom: 40px;
  color: #000000;
  font-family: Arial, Helvetica, sans-serif;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.portfolio-item {
  text-decoration: none;
  color: #000000;
  display: block;
}

.portfolio-item img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  border: 8px solid #dca8b8;
  box-sizing: border-box;
}

.portfolio-item h3 {
  margin-top: 16px;
  font-size: 28px;
  font-family: Arial, Helvetica, sans-serif;
}

.coming-soon p {
  margin-top: 8px;
  font-size: 18px;
}
/* Contact section */
.contact-section {
  padding: 100px 40px 120px 40px;
  background-color: #efc4d0;
}

.contact-section h2 {
  font-size: 48px;
  font-weight: 300;
  margin-bottom: 40px;
  color: #000000;
  font-family: Arial, Helvetica, sans-serif;
}

/* Form layout */
.contact-form {
  max-width: 760px;
  margin: 0 auto;
}

/* Two input boxes in one row */
.name-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.name-row .form-group {
  flex: 1;
}

/* Each form group */
.form-group {
  margin-bottom: 20px;
}

/* Labels */
.form-group label {
  display: block;
  font-size: 16px;
  margin-bottom: 8px;
  color: #000000;
  font-family: Arial, Helvetica, sans-serif;
}

/* Inputs and textarea */
.form-group input,
.form-group textarea {
  width: 100%;
  border: 2px solid #000000;
  background-color: transparent;
  padding: 12px;
  font-size: 16px;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

/* Textarea height */
.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

/* Send button */
.send-button {
  display: block;
  margin-left: auto;
  padding: 12px 36px;
  border: 2px solid #000000;
  border-radius: 999px;
  background-color: transparent;
  color: #000000;
  font-size: 18px;
  cursor: pointer;
  font-family: Arial, Helvetica, sans-serif;
}

.send-button:hover {
  background-color: #dca8b8;
}