@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;700&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Montserrat', sans-serif; background-color: #ddadaf; color: #000; overflow-x: hidden; }

nav { 
  position: absolute; top: 0; left: 0; width: 100%; 
  display: flex; justify-content: space-between; 
  padding: 40px 10%; align-items: center; z-index: 100; 
}
.logo { font-size: 20px; font-weight: 700; letter-spacing: 2px; }
nav ul { display: flex; list-style: none; }
nav ul li { margin-left: 25px; }
nav a { color: #000; text-decoration: none; text-transform: uppercase; font-size: 11px; font-weight: 700; }

header {
  min-height: 100vh; display: flex; align-items: center; padding: 140px 10% 60px 10%; 
  background: linear-gradient(rgba(221, 173, 175, 0.2), rgba(221, 173, 175, 0.2)), 
              url('https://i.postimg.cc/KYm3Wrfb/photo-2026-01-29-16-18-12.jpg') center right / cover no-repeat;
  position: relative;
}
.hero-content { max-width: 700px; position: relative; z-index: 2; }
h1 { font-size: 54px; text-transform: uppercase; line-height: 1.1; margin-bottom: 25px; font-weight: 700; }
header p { font-size: 20px; margin-bottom: 40px; }

.section-title-huge {
  font-size: 54px !important;
  text-transform: uppercase !important;
  font-weight: 700 !important;
  line-height: 1.1;
  margin-bottom: 70px !important;
  display: block;
}

.btn-main {
  position: relative; overflow: hidden; display: inline-block;
  background: #000; color: #fff !important; padding: 22px 55px;
  text-decoration: none; font-weight: 700; font-size: 25px; text-transform: uppercase; letter-spacing: 2px;
  transition: all 0.3s ease; z-index: 1;
}
.btn-main:hover { transform: translateY(-3px); box-shadow: 0 10px 25px rgba(0,0,0,0.3); }
.shine-effect::after { 
  content: ''; position: absolute; top: -50%; left: -100%; width: 100%; height: 200%; 
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.4), transparent); 
  transform: rotate(45deg); 
}
.shine-effect:hover::after { left: 150%; transition: 0.8s; }

.benefits-section { padding: 100px 10%; }
.benefits-grid { display: flex !important; flex-wrap: wrap; justify-content: space-between; gap: 60px 2%; }
.benefit-item { 
  width: 31% !important; text-align: center; display: flex !important; 
  flex-direction: column; align-items: center; margin-bottom: 20px;
}
.benefit-item img { width: 60px; height: 60px; margin-bottom: 20px; filter: brightness(0); }
.benefit-item h3 { font-size: 18px; font-weight: 700; margin-bottom: 12px; line-height: 1.3; }
.benefit-item p { font-size: 15px; opacity: 0.8; }

.gallery { display: flex; gap: 30px; justify-content: center; flex-wrap: wrap; margin-top: 20px; }
.studio-card {
  width: 45%; position: relative; overflow: hidden; border-radius: 15px; 
  box-shadow: 0 10px 30px rgba(0,0,0,0.1); transition: transform 0.4s ease;
}
.studio-card img {
  width: 100%; height: 480px; object-fit: cover; display: block; transition: transform 0.6s ease;
}
.studio-card:hover { transform: translateY(-15px); }
.studio-card:hover img { transform: scale(1.05); }
.studio-info {
  position: absolute; bottom: 0; left: 0; width: 100%; padding: 25px;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: #fff; font-weight: 700; text-transform: uppercase; font-size: 13px; letter-spacing: 1px;
}

.about-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}
.about-list {
  list-style: none;
}
.about-list li {
  font-size: 20px;
  margin-bottom: 20px;
  padding-left: 40px;
  position: relative;
  line-height: 1.4;
  font-weight: 400;
}

.about-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 25px;
  height: 2px;
  background: #000;
}

.content-section { padding: 100px 10%; text-align: center; }
.grey-bg { background-color: rgba(0,0,0,0.03); }
.contact-section { padding: 120px 10%; text-align: center; }
.contact-title { font-size: 48px !important; text-transform: uppercase; margin-bottom: 30px; }

@media (max-width: 768px) {
  nav { position: relative; padding: 20px; background: #ddadaf; justify-content: center; }
  nav ul { display: none; }

  header {
    min-height: 60vh; padding: 40px 20px;
    background: #ddadaf !important; 
  }

  .hero-content { text-align: center; max-width: 100%; }
  h1 { font-size: 28px !important; }
  .section-title-huge { font-size: 28px !important; margin-bottom: 40px !important; }
  header p { font-size: 16px; }
  .btn-main { width: 100%; padding: 20px; font-size: 12px; }

  .benefits-grid { display: block !important; }
  .benefit-item { width: 100% !important; margin-bottom: 50px; }

  .studio-card { width: 100%; margin-bottom: 20px; }
  .studio-card img { height: 350px; }

  .about-list li { font-size: 16px; padding-left: 30px; }
  .about-list li::before { width: 15px; top: 11px; }

  .contact-section { padding: 60px 20px !important; }
  .contact-title { font-size: 24px !important; }
}