/* ================= BASE ================= */
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #FFEBED;
  color: #27153D;
}

h1, h2 {
  font-family: 'Playfair Display', serif;
}

h1 { margin: 0; }
h2 { font-weight: 400; margin-bottom: 20px; }

/* ================= HEADER ================= */
header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 30px 50px;
}

header p {
  margin: 4px 0 0;
  color: #3E2E4A;
}

nav a {
  margin-left: 30px;
  text-decoration: none;
  color: #27153D;
  transition: 0.2s;
  display: inline-block;
}

nav a:hover {
  transform: scale(1.08);
  opacity: 0.7;
}

nav a:active {
  transform: scale(1.2);
}

/* ================= HERO ================= */
.hero {
  position: relative;
  height: 80vh;
  overflow: hidden;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-text {
  position: absolute;
  bottom: 60px;
  left: 60px;
  color: white;
}

/* ================= SECTIONS ================= */
section {
  padding: 100px 50px;
  opacity: 0;
  transform: translateY(30px);
  transition: 0.8s;
}

section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================= ABOUT ================= */
.about-container {
  display: flex;
  gap: 60px;
  align-items: center;
  max-width: 1000px;
}

.about-container img {
  width: 300px;
  height: 400px;
  object-fit: cover;
  border-radius: 16px;
}

.about-text {
  max-width: 500px;
  line-height: 1.6;
}

/* ================= WORKS ================= */
.works-grid {
  display: flex;
  gap: 60px;
  justify-content: center;
  flex-wrap: wrap;
}

.work-item {
  text-align: center;
}

.work-item img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 10px;
  transition: 0.4s;
}

.work-item img:hover {
  transform: scale(1.05);
}

/* ================= SOCIAL ================= */
.social-section {
  padding: 80px 20px 120px;
}

.social-header {
  text-align: center;
  margin-bottom: 40px;
}

.social-header a {
  text-decoration: none;
  color: #27153D;
  font-size: 14px;
  opacity: 0.7;
}

.social-feed {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 10px 40px;
  scroll-snap-type: x mandatory;
}

.social-feed::-webkit-scrollbar {
  display: none;
}

.social-item {
  min-width: 220px;
  height: 280px;
  border-radius: 16px;
  overflow: hidden;
  scroll-snap-align: start;
  position: relative;
}

.social-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}

.social-item:hover img {
  transform: scale(1.06);
}

.social-item a {
  position: absolute;
  inset: 0;
}

/* ================= FOOTER ================= */
footer {
  padding: 50px;
  text-align: center;
  background: #F6B6B7;
}

/* ================= PAGE-SPECIFIC ================= */

/* Photography page */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 40px;
    background: #FFEBED;
  color: #27153D;
}

.gallery img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
}

/* Video page */
.videos {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 40px;
    background: #FFEBED;
  color: #27153D;
}

iframe {
  width: 100%;
  height: 400px;
  border-radius: 12px;
}

/* Other works page */
.container {
  padding: 40px;
  max-width: 800px;
    background: #FFEBED;
  color: #27153D;
}

.work {
  margin-bottom: 40px;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
  }

  .about-container img {
    width: 100%;
    height: auto;
  }

  .hero-text {
    left: 30px;
    bottom: 30px;
  }
}
