@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Poppins:wght@300;400;500;600&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background: #fff;
  color: #333;
  overflow-x: hidden;
}

/* Animated Background */
.animated-bg {
  position: relative;
  /* top: 0;
  left: 0; */
  width: 100%;
  height: 100vh;
  z-index: -1;
  background: linear-gradient(-45deg, #ffc3e1, #ffd4f4, #e4c9ff, #ffc9e8);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Floating decorations */
.float-decoration {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

.butterfly {
  font-size: 50px;
  animation: float 6s ease-in-out infinite;
}

.butterfly img {
  width: 40%;
}

.butterfly:nth-child(2) {
  animation-delay: 1s;
}
.butterfly:nth-child(3) {
  animation-delay: 2s;
}
.butterfly:nth-child(4) {
  animation-delay: 3s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-30px) rotate(10deg);
  }
  50% {
    transform: translateY(-15px) rotate(-5deg);
  }
  75% {
    transform: translateY(-25px) rotate(8deg);
  }
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 0 13%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

.header-left {
  display: flex;
  align-items: center;
  gap: 50px;
  flex: 1;
}

.logo {
  width: 10%;
  font-weight: 700;
  background: linear-gradient(135deg, #ff6ec7, #b46ce8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: "Playfair Display", serif;
  white-space: nowrap;
  img {
    width: 100%;
  }
}

.nav {
  display: flex;
  justify-content: center;
  width: 100%;
  gap: 40px;
}

.nav a {
  text-decoration: none;
  color: #5c4d4d;
  font-weight: bold;
  font-size: 12px;
  letter-spacing: 1px;
  transition: all 0.3s;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #ff6ec7, #b46ce8);
  transition: width 0.3s;
}

.nav a:hover {
  color: #ff6ec7;
}
.nav a:hover::after {
  width: 100%;
}

.contact-btn {
  padding: 12px 30px;
  background: linear-gradient(135deg, #ff6ec7, #b46ce8);
  color: white;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 5px 20px rgba(255, 110, 199, 0.3);
  white-space: nowrap;
}

.contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 110, 199, 0.5);
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #ff6ec7;
  padding: 4px;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 65px;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  padding: 20px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  z-index: 999;
}

.mobile-nav.active {
  display: block;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-nav a {
  display: block;
  padding: 14px 0;
  text-decoration: none;
  color: #666;
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid rgba(255, 110, 199, 0.1);
}

.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover {
  color: #ff6ec7;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 50px 50px;
  position: relative;
}

.hero-content {
  text-align: center;
  max-width: 900px;
  position: relative;
  z-index: 1;
}

.hero-subtitle {
  font-size: 16px;
  color: #ff6ec7;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 80px;
  font-weight: 700;
  font-family: "Playfair Display", serif;
  background: linear-gradient(135deg, #ff6ec7, #b46ce8, #ff8dd7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 25px;
  line-height: 1.1;
}

.hero-description {
  font-size: 20px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 40px;
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  padding: 18px 45px;
  background: linear-gradient(135deg, #ff6ec7, #b46ce8);
  color: white;
  border: none;
  border-radius: 35px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 8px 25px rgba(255, 110, 199, 0.4);
  font-size: 16px;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 110, 199, 0.6);
}

.btn-secondary {
  padding: 18px 45px;
  background: white;
  color: #ff6ec7;
  border: 2px solid #ff6ec7;
  border-radius: 35px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 16px;
}

.btn-secondary:hover {
  background: #ff6ec7;
  color: white;
  transform: translateY(-3px);
}

/* ===== ABOUT SECTION ===== */
.about-section {
  padding: 120px 13%;
  background: white;
  position: relative;
  z-index: 1;
}

.section-container {
  max-width: 1400px;
  margin: 0 auto;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  width: 100%;
  height: 600px;
  background: linear-gradient(135deg, #ffc3e1, #e4c9ff);
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  /* height: 100%; */
  /* object-fit: cover; */
}

.about-image::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.3) 0%,
    transparent 70%
  );
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.about-content h2 {
  font-size: 40px;
  font-family: "Playfair Display", serif;
  background: linear-gradient(135deg, #ff6ec7, #b46ce8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 25px;
}

.about-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.9;
  margin-bottom: 20px;
}

.skills {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 30px;
}

.skill-tag {
  padding: 10px 25px;
  background: linear-gradient(135deg, #ffc3e1, #e4c9ff);
  color: #fff;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 5px 15px rgba(255, 110, 199, 0.2);
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
  padding: 120px 13%;
  background: linear-gradient(180deg, #fff 0%, #fef9ff 100%);
  position: relative;
  z-index: 1;
}

.gallery-section h2 {
  text-align: center;
  font-size: 40px;
  font-family: "Playfair Display", serif;
  background: linear-gradient(135deg, #ff6ec7, #b46ce8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 60px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-item {
  background: white;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
}

.gallery-item:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 70px rgba(255, 110, 199, 0.3);
}

.gallery-image {
  width: 100%;
  height: 300px;
  background: linear-gradient(135deg, #ffc3e1, #e4c9ff, #ffd4f4);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.gallery-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 110, 199, 0.9);
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover .gallery-image::after {
  opacity: 0.15;
}

.gallery-info {
  padding: 28px;
}

.gallery-category {
  font-size: 12px;
  color: #ff6ec7;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.gallery-title {
  font-size: 22px;
  font-family: "Playfair Display", serif;
  color: #333;
  margin-bottom: 10px;
  font-weight: 600;
}

.gallery-description {
  font-size: 14px;
  color: #888;
  line-height: 1.7;
}

/* ===== COLLECTIONS SECTION ===== */
.collections-section {
  padding: 120px 13%;
  background: #fafafa;
  position: relative;
  z-index: 1;
}

/* Section header */
.collections-header {
  text-align: center;
  margin-bottom: 52px;
}

.collections-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #b46ce8;
  background: #f3e8ff;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 18px;
}

.collections-section h2 {
  text-align: center;
  font-size: 40px;
  font-family: "Playfair Display", serif;
  background: linear-gradient(135deg, #ff6ec7, #b46ce8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.collections-subtitle {
  font-size: 15px;
  color: #999;
  font-weight: 400;
  letter-spacing: 0.2px;
  text-align: center;
  margin-bottom: 20px;
}

/* ── Tab bar ── */
.collection-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 40px;
  background: white;
  border: 1.5px solid #ede9f4;
  border-radius: 16px;
  padding: 6px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.col-tab {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 26px;
  border-radius: 11px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  color: #999;
  transition: all 0.25s ease;
  position: relative;
}

.col-tab:hover {
  color: #555;
  background: #f7f3fc;
}

/* Active sketch */
.col-tab[data-tab="sketch"].active {
  background: #bebab5;
  color: #2e2e2e;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

/* Active craft */
.col-tab[data-tab="craft"].active {
  background: #fcf6a7;
  color: #92400e;
  box-shadow: 0 2px 10px rgba(217, 119, 6, 0.12);
}

/* Active painting */
.col-tab[data-tab="painting"].active {
  background: #f5caec;
  color: #9d174d;
  box-shadow: 0 2px 10px rgba(255, 110, 199, 0.15);
}

.tab-icon-wrap {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  transition: background 0.25s;
}

.col-tab[data-tab="sketch"] .tab-icon-wrap {
  background: #e8e6e3;
  color: #4b4b4b;
}
.col-tab[data-tab="craft"] .tab-icon-wrap {
  background: #fde68a;
  color: #92400e;
}
.col-tab[data-tab="painting"] .tab-icon-wrap {
  background: #fbc8e6;
  color: #9d174d;
}

.col-tab[data-tab="sketch"].active .tab-icon-wrap {
  background: #d1ceca;
}
.col-tab[data-tab="craft"].active .tab-icon-wrap {
  background: #f59e0b;
  color: white;
}
.col-tab[data-tab="painting"].active .tab-icon-wrap {
  background: #ff6ec7;
  color: white;
}

.tab-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
}

.tab-label {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.3px;
}

.tab-sub {
  font-size: 10.5px;
  font-weight: 400;
  opacity: 0.65;
  line-height: 1.2;
}

/* ── Panels ── */
.col-panel {
  display: none;
  animation: panelIn 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.col-panel.active {
  display: block;
}

@keyframes panelIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Panel header */
.panel-header {
  border-radius: 16px;
  padding: 24px 28px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  border: 1.5px solid transparent;
}

.sketch-header {
  background: #f7f6f5;
  border-color: #e0dbd5;
}
.craft-header {
  background: #fffbf0;
  border-color: #fde68a;
}
.painting-header {
  background: #fff5fb;
  border-color: #fbc8e6;
}

.panel-header-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.sketch-icon {
  background: #e8e6e3;
  color: #3d3d3d;
}
.craft-icon {
  background: #f59e0b;
  color: white;
}
.painting-icon {
  background: linear-gradient(135deg, #ff6ec7, #b46ce8);
  color: white;
}

.panel-header-text {
  flex: 1;
  min-width: 160px;
}

.panel-header-text h3 {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 700;
  color: #2e2e2e;
  margin-bottom: 4px;
}

.panel-header-text p {
  font-size: 13px;
  color: #888;
  line-height: 1.6;
  font-style: italic;
  margin: 0;
}

.panel-header-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: right;
}

.panel-header-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #aaa;
  font-weight: 500;
  justify-content: flex-end;
}

.panel-header-meta i {
  font-size: 11px;
}

/* ── Thumbnail Grid ── */
.collections-section .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-thumb {
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  border: 1.5px solid #eee;
  transition:
    transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.3s ease,
    border-color 0.3s;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-thumb:hover img {
  transform: scale(1.06);
}

/* Thumb overlay */
.thumb-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.28s ease;
}

.thumb-overlay i {
  font-size: 26px;
  color: white;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
}

.thumb-overlay span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: white;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.gallery-thumb:hover .thumb-overlay {
  opacity: 1;
}

/* Per-category hover tints */
.sketch-thumb:hover {
  border-color: #9ca3af;
  box-shadow: 0 10px 32px rgba(100, 100, 100, 0.18);
  transform: scale(1.03);
}
.sketch-thumb .thumb-overlay {
  background: rgba(40, 40, 40, 0.52);
  backdrop-filter: blur(3px);
}

.craft-thumb:hover {
  border-color: #f59e0b;
  box-shadow: 0 10px 32px rgba(217, 119, 6, 0.22);
  transform: scale(1.03);
}
.craft-thumb .thumb-overlay {
  background: rgba(146, 64, 14, 0.52);
  backdrop-filter: blur(3px);
}

.painting-thumb:hover {
  border-color: #ff6ec7;
  box-shadow: 0 10px 32px rgba(255, 110, 199, 0.22);
  transform: scale(1.03);
}
.painting-thumb .thumb-overlay {
  background: rgba(180, 108, 232, 0.52);
  backdrop-filter: blur(3px);
}

/* ===== LIGHTBOX ===== */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10, 6, 16, 0.94);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 70px 80px 110px;
}

.lightbox-img-wrap {
  max-width: 82vw;
  max-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img-wrap img {
  max-width: 82vw;
  max-height: 76vh;
  width: auto;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
  transition:
    opacity 0.22s ease,
    transform 0.22s ease;
  display: block;
}

.lightbox-img-wrap img.fade-out {
  opacity: 0;
  transform: scale(0.97);
}

/* Counter */
.lightbox-counter {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.7);
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2.5px;
  padding: 6px 18px;
  border-radius: 30px;
  backdrop-filter: blur(10px);
}

/* Category badge */
.lightbox-category-badge {
  position: absolute;
  top: 18px;
  left: 22px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 7px 14px;
  border-radius: 8px;
  color: white;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: background 0.3s;
}

/* Close */
.lightbox-close {
  position: absolute;
  top: 16px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s,
    transform 0.2s,
    color 0.2s;
  z-index: 10;
}

.lightbox-close:hover {
  background: rgba(255, 110, 199, 0.4);
  color: white;
  transform: rotate(90deg);
}

/* Arrows */
.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.22s,
    transform 0.22s;
  backdrop-filter: blur(10px);
  z-index: 10;
}

.lightbox-arrow:hover {
  background: rgba(255, 110, 199, 0.35);
  color: white;
}
.lightbox-prev:hover {
  transform: translateY(-50%) translateX(-3px);
}
.lightbox-next:hover {
  transform: translateY(-50%) translateX(3px);
}
.lightbox-prev {
  left: 18px;
}
.lightbox-next {
  right: 18px;
}

/* Filmstrip */
.lightbox-filmstrip {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  backdrop-filter: blur(14px);
  max-width: 90vw;
  overflow-x: auto;
  scrollbar-width: none;
}

.lightbox-filmstrip::-webkit-scrollbar {
  display: none;
}

.filmstrip-thumb {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  flex-shrink: 0;
  border: 2px solid transparent;
  opacity: 0.5;
  transition: all 0.22s ease;
}

.filmstrip-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.filmstrip-thumb:hover {
  opacity: 0.8;
  transform: scale(1.05);
}
.filmstrip-thumb.active {
  border-color: #ff6ec7;
  opacity: 1;
  transform: scale(1.08);
  box-shadow: 0 0 10px rgba(255, 110, 199, 0.5);
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  padding: 20px 50px;
  background: linear-gradient(135deg, #ffc3e1, #e4c9ff, #ffd4f4);
  position: relative;
  z-index: 1;
  text-align: center;
}

.contact-section h2 {
  font-size: 50px;
  font-family: "Playfair Display", serif;
  color: white;
  text-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-section > p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 50px;
}

.contact-info {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

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

.contact-icon {
  width: 70px;
  height: 70px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-item h4 {
  font-size: 16px;
  color: white;
  margin-bottom: 5px;
  font-weight: 600;
}

.contact-item p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

/* ===== FOOTER ===== */
.footer {
  padding: 8px;
  background: white;
  text-align: center;
  position: relative;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-icon {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, #ca3e84, #590ba7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: all 0.3s;
  cursor: pointer;
  text-decoration: none;
}

.social-icon:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 30px rgba(255, 110, 199, 0.4);
}

.footer p {
  color: #999;
  font-size: 14px;
}

/* =====================
   RESPONSIVE — TABLET
   ===================== */
@media (max-width: 1024px) {
  .header {
    padding: 15px 5%;
  }

  .header-left {
    gap: 25px;
  }

  .nav {
    gap: 20px;
  }

  .nav a {
    font-size: 11px;
  }

  .contact-btn {
    padding: 10px 20px;
    font-size: 13px;
  }

  .hero {
    padding: 100px 5% 50px;
  }

  .hero-title {
    font-size: 60px;
  }

  .about-section,
  .gallery-section,
  .collections-section {
    padding: 80px 5%;
  }

  .contact-section {
    padding: 10px 5%;
  }

  .about-grid {
    gap: 50px;
  }

  .about-image {
    height: 450px;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
  }

  .collections-section .grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .collection-tabs {
    gap: 10px;
  }
  .col-tab {
    padding: 12px 20px;
    font-size: 13px;
  }
  .tab-count {
    display: none;
  }

  .lightbox-arrow {
    width: 44px;
    height: 44px;
    font-size: 20px;
  }
  .lightbox-prev {
    left: 10px;
  }
  .lightbox-next {
    right: 10px;
  }
}

/* ========================
   RESPONSIVE — MOBILE (768)
   ======================== */
@media (max-width: 768px) {
  /* Header */
  .header {
    padding: 15px 5%;
  }

  .header-left {
    gap: 0;
    flex: 1;
  }

  .logo {
    width: 20%;
  }

  .nav {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
    order: 2;
  }

  .contact-btn {
    display: none;
  }

  /* Float deco hidden on mobile */
  .float-decoration {
    display: none;
  }

  /* Hero */
  .hero {
    padding: 100px 6% 60px;
    min-height: 90vh;
  }

  .hero-title {
    font-size: 42px;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 13px;
    letter-spacing: 2px;
  }

  .hero-description {
    font-size: 16px;
    line-height: 1.6;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  s .about-btrfly {
    position: absolute;
    top: 80% !important;
    right: 0% !important;
    img {
      width: 200px;
    }
  }
  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 320px;
    padding: 16px 30px;
    font-size: 15px;
  }

  /* About */
  .about-section {
    padding: 60px 6%;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about-image {
    height: 320px;
  }

  .about-content h2 {
    font-size: 32px;
  }

  .about-content p {
    font-size: 15px;
  }

  .skills {
    gap: 10px;
  }

  .skill-tag {
    padding: 8px 16px;
    font-size: 13px;
  }

  /* Gallery */
  .gallery-section {
    padding: 60px 6%;
  }

  .gallery-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .gallery-image {
    height: 260px;
  }

  .gallery-info {
    padding: 22px;
  }

  .gallery-title {
    font-size: 20px;
  }

  .gallery-description {
    font-size: 14px;
  }

  /* Collections */
  .collections-section {
    padding: 60px 6%;
  }
  .collections-section h2 {
    font-size: 32px;
    margin-bottom: 10px;
  }
  .collections-subtitle {
    font-size: 13px;
    margin-bottom: 0;
  }

  .collection-tabs {
    flex-wrap: wrap;
    width: 100%;
    border-radius: 14px;
    gap: 4px;
    padding: 5px;
    margin-bottom: 28px;
  }

  .col-tab {
    flex: 1;
    min-width: 0;
    padding: 10px 12px;
    gap: 8px;
    justify-content: center;
  }

  .tab-sub {
    display: none;
  }
  .tab-icon-wrap {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }
  .tab-label {
    font-size: 12px;
  }

  .panel-header {
    padding: 16px 18px;
    gap: 12px;
  }
  .panel-header-icon {
    width: 42px;
    height: 42px;
    font-size: 16px;
    border-radius: 10px;
  }
  .panel-header-text h3 {
    font-size: 17px;
  }
  .panel-header-text p {
    font-size: 12px;
  }
  .panel-header-meta {
    display: none;
  }

  .collections-section .grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  /* Lightbox */
  .lightbox-stage {
    padding: 60px 16px 100px;
  }
  .lightbox-img-wrap img {
    max-width: 96vw;
    max-height: 65vh;
  }
  .lightbox-category-badge {
    font-size: 11px;
    padding: 5px 10px;
  }
  .filmstrip-thumb {
    width: 44px;
    height: 44px;
  }
  .lightbox-prev {
    left: 6px;
  }
  .lightbox-next {
    right: 6px;
  }

  /* Contact */
  .contact-section {
    padding: 60px 6%;
  }

  .contact-section h2 {
    font-size: 36px;
  }

  .contact-section > p {
    font-size: 16px;
  }

  .contact-info {
    flex-direction: row;
    align-items: center;
    gap: 30px;
  }

  .contact-icon {
    width: 60px;
    height: 60px;
    font-size: 26px;
  }

  /* Footer */
  .footer {
    padding: 10px 6%;
  }

  .social-icons {
    gap: 12px;
  }

  .social-icon {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }
}

/* ==========================
   RESPONSIVE — SMALL MOBILE
   ========================== */
@media (max-width: 480px) {
  .hero-title {
    font-size: 34px;
  }

  .hero-description {
    font-size: 15px;
  }

  .about-content h2,
  .gallery-section h2,
  .collections-section h2,
  .contact-section h2 {
    font-size: 28px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 14px 24px;
    font-size: 14px;
  }

  .gallery-image {
    height: 230px;
  }

  .collections-section .grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .contact-section {
    padding: 50px 5%;
  }

  /* .footer {
    padding: 32px 5%;
  } */
}

/* ==========================
   RESPONSIVE — TINY SCREENS
   ========================== */
@media (max-width: 360px) {
  .hero-title {
    font-size: 28px;
  }

  .logo {
    width: 40%;
  }

  .collections-section .grid {
    grid-template-columns: 1fr;
  }
}
.social-icons a {
  color: inherit;
  text-decoration: none;
}

.social-icons a i {
  color: #f0e3ea;
}

.social-icons a:visited {
  color: #e754a6;
}
