/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(180deg, #eef3f2 0%, #f7faf9 100%);
  color: #1e2d30;
  line-height: 1.7;
}

/* HERO */
.hero {
  width: 100%;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.hero img {
  width: 100%;
  display: block;
  height: auto;
}

/* HAMBURGER NOW ATTACHED TO HERO */
.home-menu-trigger {
  position: absolute;
  top: 25px;
  right: 25px;
  z-index: 10;
  margin: 0;
  display: block;
}

/* HAMBURGER */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  padding: 10px;
  transition: 0.3s;
}

.hamburger:hover {
  transform: translateY(-3px);
}

.hamburger span {
  display: block;
  height: 3px;
  width: 28px;
  margin: 5px 0;
  background-color: #1e2d30;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100%;
  background: #1f2f33;
  padding-top: 120px;
  display: flex;
  flex-direction: column;
  transition: right 0.3s ease;
  z-index: 999;
}

.mobile-menu a {
  color: #ffffff;
  text-decoration: none;
  padding: 22px 40px;
  font-size: 18px;
  letter-spacing: 1px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: 0.3s;
}

.mobile-menu a:hover {
  background: #2e4c52;
}

.mobile-menu.active {
  right: 0;
}

/* CONTENT SECTIONS */
.content {
  padding: 40px 20px;
  flex: 1;
}

.container {
  max-width: 900px;
  margin: auto;
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  margin-bottom: 30px;
  color: #2e4c52;
}

p {
  margin-bottom: 22px;
  font-size: 18px;
  color: #32484d;
}

/* BUTTON */
.btn {
  display: inline-block;
  padding: 15px 34px;
  background: linear-gradient(135deg, #5f8f8a, #2e4c52);
  color: white;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 1px;
  border-radius: 30px;
  box-shadow: 0 8px 20px rgba(46,76,82,0.3);
  transition: 0.3s;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(46,76,82,0.35);
}

/* FORM */
input,
textarea {
  border-radius: 6px;
  border: 1px solid #ccd6d4;
  background: #ffffff;
  transition: 0.2s;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #5f8f8a;
  box-shadow: 0 0 0 2px rgba(95,143,138,0.15);
}

.site-footer {
  background: #1f3439;
  text-align: center;
  padding: 40px 20px;
}

.site-footer p {
  color: #ffffff;
  font-size: 15px;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
  opacity: 0.95;
}
.instagram-link img {
  width: 36px;
  height: 36px;
  transition: transform 0.2s ease;
}

.instagram-link img:hover {
  transform: scale(1.1);
}

/* FLOATING WHATSAPP BUTTON */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  z-index: 1001;
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  transition: 0.3s;
}

.whatsapp-float img:hover {
  transform: scale(1.08);
}

/* DESKTOP */
@media(min-width: 768px) {

  .content {
    padding: 60px 20px;
  }

  h1 {
    font-size: 52px;
  }

  .mobile-menu {
    width: 350px;
    right: -350px;
  }
}

/* STICKY FOOTER STRUCTURE */
html, body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}