*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:Arial, Helvetica, sans-serif;
  background:#f8f4ef;
  color:#2d2d2d;
}

a{
  text-decoration:none;
}

header{
  position:fixed;
  width:100%;
  top:0;
  z-index:100;
  background:rgba(255,255,255,0.85);
  backdrop-filter:blur(10px);
}

.navbar{
  width:90%;
  max-width:1200px;
  margin:auto;
  height:80px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.logo{
  font-family:'Georgia', serif;
  font-size:24px;
  font-weight:700;
  color:#b88b5d;
}

.nav-links{
  display:flex;
  align-items:center;
  list-style:none;
  gap:30px;
}

.nav-links a{
  color:#333;
  transition:0.2s;
}

.nav-links a:hover{
  color:#b88b5d;
}

.fa-instagram{
  font-size:20px;
  color:#333;
}

.hero{
  height:100vh;
  position:relative;
  background:url('img/Instagram_files/creation2.jpg') center/cover;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
}

.overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.35);
}

.hero-content{
  position:relative;
  z-index:2;
  max-width:800px;
  color:white;
  padding:20px;
}

.hero h1{
  font-family:'Georgia', serif;
  font-size:clamp(48px,7vw,80px);
  line-height:1;
  margin-bottom:25px;
}

.hero p{
  font-size:18px;
  line-height:1.8;
}

.btn{
  display:inline-block;
  padding:16px 30px;
  border-radius:999px;
  background:#b88b5d;
  color:white;
  font-weight:700;
  transition:0.2s;
}

.btn:hover{
  transform:translateY(-3px);
}

section{
  padding:100px 10%;
}

.about span,
.section-title span,
.contact-box span{
  color:#b88b5d;
  text-transform:uppercase;
  letter-spacing:2px;
  font-size:13px;
}

.divider{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:60px;
  margin:45px 0 100px;
}

.divider.reverse{
  flex-direction:row-reverse;
}

.text-content{
  flex:1;
}

.text-content h2,
.section-title h2,
.contact-box h2{
  font-family:'Georgia', serif;
  font-size:48px;
  margin:15px 0;
}

.text-content p,
.contact-box p{
  color:#666;
  line-height:1.8;
  font-size:17px;
}

.about-image{
  width:45%;
  height:620px;
  object-fit:cover;
  border-radius:30px;
  box-shadow:0 15px 40px rgba(0,0,0,0.12);
}

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
  margin-top:50px;
}

.card{
  min-height:350px;
  border-radius:25px;
  background:center/cover;
  box-shadow:0 15px 40px rgba(0,0,0,0.10);
}

.card1{
  background-image:url('img/instagram_files/creation8.jpg');
}

.card2{
  background-image:url('img/instagram_files/creation1.jpg');
}

.card3{
  background-image:url('img/instagram_files/creation3.jpg');
}

.card4{
  background-image:url('img/instagram_files/creation9.jpg');
}

.card5{
  background-image:url('img/instagram_files/creation5.jpg');
}

.card6{
  background-image:url('img/instagram_files/creation6.jpg');
}

.card7{
  background-image:url('img/instagram_files/7.jpeg');
}

.card8{
  background-image:url('img/instagram_files/2.jpeg');
}

.card9{
  background-image:url('img/instagram_files/3.jpeg');
}

.card10{
  background-image:url('img/instagram_files/4.jpeg');
}

.card11{
  background-image:url('img/instagram_files/5.jpeg');
}

.card12{
  background-image:url('img/instagram_files/8.jpeg');
}

.contact{
  text-align:center;
}

.contact-box{
  max-width:700px;
  margin:auto;
  background:white;
  padding:60px;
  border-radius:30px;
  box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

.contact-box p{
  margin-bottom:30px;
}

footer{
  padding:30px;
  text-align:center;
  color:#777;
}

@media(max-width:850px){
  .nav-links{
    display:none;
  }

  .divider,
  .divider.reverse{
    display:flex;
    flex-direction:column;
    text-align:center;
    gap:30px;
  }

  .divider .text-content,
  .divider.reverse .text-content{
    order:1;
  }

  .divider .about-image,
  .divider.reverse .about-image{
    order:2;
    width:100%;
    max-width:450px;
    height:auto;
    margin:25px auto 0;
  }

  .marina .about-image{
    order:1;
    margin:0 auto 25px;
  }

  .marina .text-content{
    order:2;
  }

  .gallery-grid{
    grid-template-columns:1fr;
  }

  .hero h1{
    font-size:54px;
  }

  .text-content h2,
  .section-title h2,
  .contact-box h2{
    font-size:38px;
  }

  section{
    padding:80px 7%;
  }
}