/* Base Styles */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #c1ab96;
  color: #4e342e;
  line-height: 1.8;
  font-size: 26px; /* much bigger base font */
}

/* Header & Navigation */
header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  background: hsl(14, 35%, 36%);
  padding: 3rem 5rem; /* increased padding for balance */
  gap: 1rem;
  box-shadow: 0 4px 8px rgba(195, 166, 166, 0.15);
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-img {
  width: 130px; /* bigger logo */
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.logo-img:hover {
  transform: scale(1.1);
}

.logo-wrap h1 {
  font-family: 'Great Vibes', cursive;
  font-size: 8rem; /* much bigger title */
  color: #ffe082;
  margin: 0;
  text-decoration: underline;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
}
nav a {
  color: #fff;
  font-size: 2rem; /* bigger nav links */
  font-weight: 600;
  text-decoration: none;
  position: relative;
  transition: all 0.3s;
}
nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 3px;
  background: #ac985e;
  left: 50%;
  bottom: -5px;
  transition: width 0.3s ease, left 0.3s ease;
}
nav a:hover::after {
  width: 100%;
  left: 0;
}

/* Hero Section */
.hero {
  background: url('https://images.unsplash.com/photo-1525351484163-7529414344d8') no-repeat center/cover;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  position: relative;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}
.hero-text {
  position: relative;
  z-index: 1;
  max-width: 900px;
}
.hero-text h2 {
  font-size: 12rem; /* much bigger hero heading */
  margin-bottom: 1rem;
  font-weight: 700;
}
.hero-text p {
  font-size: 2.5rem; /* bigger hero paragraph */
  font-weight: 400;
}

/* Section Layout */
.section {
  padding: 6rem 3rem;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

/* Section Title */
.section-title {
  font-size: 8rem; /* huge section titles */
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
  color: #5d4037;
  font-weight: 700;
  text-decoration: underline;
}
.section-title::after {
  content: '';
  position: absolute;
  width: 80%;
  height: 4px;
  background: #d7ccc8;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
}

/* Buttons */
.button {
  display: inline-block;
  margin-top: 1rem;
  padding: 1.5rem 3rem;
  background: #795548;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.8rem; /* bigger buttons */
  transition: background 0.3s ease, transform 0.2s;
}
.button:hover {
  background: #6d4c41;
  transform: scale(1.05);
}

/* Button Positioning */
.section-button {
  margin-bottom: 2.5rem;
}

/* Paragraphs */
.section p {
  font-size: 2rem; /* bigger paragraphs */
  margin: 1.5rem 0;
  line-height: 1.9;
}

/* Footer */
footer {
  background: #4e342e;
  color: #fff;
  padding: 5rem 3rem;
  text-align: center;
}
footer .info {
  margin-bottom: 3rem;
  font-size: 1.8rem; /* bigger footer text */
  line-height: 2;
}
