html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, #111 0%, #222 100%);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  overflow-x: hidden;
}

.container.modern {
  max-width: 380px;
  margin: 70px auto 0 auto;
  background: rgba(20,20,20,0.97);
  border-radius: 22px;
  box-shadow: 0 6px 32px rgba(0,0,0,0.45);
  padding: 48px 32px 36px 32px;
  text-align: center;
  position: relative;
}

.logo-modern {
  width: 120px;
  height: 120px;
  margin: 0 auto 18px auto;
  background: linear-gradient(135deg, #fff 0%, #111 100%);
  color: #111;
  font-size: 2.3rem;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 2px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.18);
  border: 3px solid #fff;
  overflow: hidden;
}

.logo-modern img{
    width: 100%;
    height: 100%;
    border-radius: 50%;
}
.modern-title {
  font-size: 1.7rem;
  font-weight: 800;
  margin: 0 0 12px 0;
  letter-spacing: 1px;
  color: #fff;
}

.modern-desc {
  color: #e0e0e0;
  font-size: 1.08rem;
  margin-bottom: 32px;
  line-height: 1.5;
}

.btn-modern.whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(90deg, #25D366 0%, #128C7E 100%);
  color: #fff;
  font-weight: 700;
  font-size: 1.08rem;
  border: none;
  border-radius: 10px;
  padding: 15px 0;
  margin-bottom: 22px;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(37,211,102,0.10);
  transition: background 0.2s, transform 0.2s;
}
.btn-modern.whatsapp:hover {
  background: linear-gradient(90deg, #128C7E 0%, #25D366 100%);
  transform: translateY(-2px) scale(1.03);
}

.gallery-btn-modern {
  display: inline-block;
  width: 100%;
  background: #fff;
  color: #111;
  border-radius: 10px;
  font-weight: 800;
  font-size: 1.05rem;
  padding: 13px 0;
  margin-top: 2px;
  text-decoration: none;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.10);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.gallery-btn-modern:hover {
  background: #222;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
}

@media (max-width: 500px) {
  .container.modern {
    max-width: 98vw;
    padding: 32px 8vw 24px 8vw;
  }
  .logo-modern {
    width: 80px;
    height: 80px;
    font-size: 1.5rem;
  }
}

.container.modern.expanded {
  flex: 1 0 auto;
  max-width: 600px;
  min-height: 350px;
  margin: 5vh auto 0 auto;
  padding: 48px 40px 32px 40px;
  background: none;
  border-radius: 22px;
  box-shadow: 0 6px 32px rgba(0,0,0,0.45);
  text-align: center;
  position: relative;
  box-sizing: border-box;
}

.gallery-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: #fff;
  margin: 40px 0 18px 0;
}

@media (max-width: 700px) {
  .container.modern.expanded {
    max-width: 98vw;
    padding: 32px 4vw 24px 4vw;
  }
}

.banner-area {
  width: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 32px auto 24px auto;
  padding: 0;
  background: none;
  position: static;
  box-sizing: border-box;
}
.banner-area img {
  max-width: 100%;
  height: auto;
  display: block;
}

.modern-footer {
  margin-top: 0;
  padding: 36px 0 16px 0;
  text-align: center;
  color: #888;
  font-size: 1rem;
  letter-spacing: 0.5px;
}

.gallery {
  width: 100%;
  max-width: 1100px;
  margin: 40px auto 24px auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  justify-items: center;
  align-items: start;
  box-sizing: border-box;
}

.gallery-img {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.10);
  background: #fff;
  transition: transform 0.25s cubic-bezier(.4,2,.6,1), box-shadow 0.2s;
  display: block;
  z-index: 1;
  position: relative;
}
.gallery-img:hover {
  transform: scale(1.45) translateY(-24px);
  box-shadow: 0 20px 80px rgba(0,0,0,0.28);
  z-index: 10;
} 