body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  color: #5C4033;
  -ms-overflow-style: none; /* Hide scrollbar IE/Edge */
}

body::-webkit-scrollbar {
  display: none;           /* Chrome, Safari, Opera */
}

a {
  text-decoration: none;
  color: inherit;
}

.header {
  height: 80px;
  padding: 0 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 240, 224, 0.9);
  position: sticky;
  top: 0;
  z-index: 10;
}

.logo {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 600;
}

nav a {
  margin-left: 20px;
  font-weight: bold;
  color: #8B5E3C;
}

nav a:hover {
  color: #FF7C7C;
}

.hero {
  height: 100vh;
  background: url('../images/hero-bg-2.jpg') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero .overlay {
  background: rgba(255, 248, 242, 0.8);
  padding: 50px;
  border-radius: 20px;
  text-align: center;
}

.hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 48px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 20px;
  margin-bottom: 40px;
}

.cta-buttons .btn {
  display: inline-block;
  background: #FF7C7C;
  color: white;
  padding: 15px 30px;
  margin: 0 10px;
  border-radius: 30px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-buttons .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 124, 124, 0.4);
}

.portfolio {
  padding: 80px 40px;
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.portfolio h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 40px;
  margin-bottom: 40px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.gallery img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.gallery img:hover {
  transform: scale(1.05);
}

footer {
  text-align: center;
  padding: 40px 20px;
  background: #FFF0E0;
  margin-top: 80px;
}

.frame {
  aspect-ratio: 1 / 1;
  width: 100%;
  display: block;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}

.frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s ease;
  display: block;
}

.frame img[data-loaded="false"] {
  opacity: 0;
}