/* ========================
   CSS RESET & VARIABLES
   ======================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #fb5315;
  --primary-dark: #d94410;
  --secondary: #ffcec8;
  --secondary-light: #fff0ee;
  --white: #ffffff;
  --black: #1a1a1a;
  --gray: #666666;
  --gray-light: #f5f5f5;

  --font-heading: "Playfair Display", Georgia, serif;
  --font-body: "Inter", -apple-system, sans-serif;

  --nav-height: 80px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font-body);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
  background: var(--white);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ========================
   ANIMATIONS
   ======================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================
   NAVIGATION
   ======================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1000;
  transition: box-shadow 0.3s ease;
  display: flex;
  align-items: center;
}

.nav.scrolled {
  box-shadow: 0 2px 30px rgba(251, 83, 21, 0.1);
}

.nav__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav__logo img {
  height: 48px;
  width: 48px;
}

.nav__logo span {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
}

.nav__links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav__links a {
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--black);
  position: relative;
  transition: color 0.3s ease;
}

.nav__links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.nav__links a:hover {
  color: var(--primary);
}

.nav__links a:hover::after {
  width: 100%;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav__hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ========================
   HERO SECTION
   ======================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(
    135deg,
    var(--secondary-light) 0%,
    var(--secondary) 50%,
    var(--white) 100%
  );
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero__decoration {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
}

.hero__decoration--1 {
  width: 500px;
  height: 500px;
  background: var(--primary);
  top: -100px;
  right: -150px;
  animation: float 8s ease-in-out infinite;
}

.hero__decoration--2 {
  width: 300px;
  height: 300px;
  background: var(--primary);
  bottom: -80px;
  left: -100px;
  animation: float 6s ease-in-out infinite 1s;
}

.hero__decoration--3 {
  width: 150px;
  height: 150px;
  background: var(--primary);
  top: 30%;
  left: 10%;
  animation: float 7s ease-in-out infinite 2s;
}

.hero__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__content {
  animation: fadeInUp 1s ease forwards;
}

.hero__tag {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.15;
  color: var(--black);
  margin-bottom: 1.5rem;
}

.hero__title span {
  color: var(--primary);
  font-style: italic;
}

.hero__description {
  font-size: 1.125rem;
  color: var(--gray);
  margin-bottom: 2.5rem;
  max-width: 480px;
  line-height: 1.7;
}

.hero__buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__logo {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: scaleIn 1s ease 0.3s forwards;
  opacity: 0;
}

.hero__logo img {
  width: 100%;
  max-width: 420px;
  filter: drop-shadow(0 20px 60px rgba(251, 83, 21, 0.2));
  animation: float 6s ease-in-out infinite;
}

/* ========================
   BUTTONS
   ======================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn--primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.btn--primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(251, 83, 21, 0.35);
}

.btn--outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn--outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

/* ========================
   SECTION SHARED
   ======================== */
.section {
  padding: 6rem 2rem;
}

.section__container {
  max-width: 1200px;
  margin: 0 auto;
}

.section__header {
  text-align: center;
  margin-bottom: 4rem;
}

.section__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--primary);
  margin-bottom: 1rem;
}

.section__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--black);
  margin-bottom: 1rem;
}

.section__subtitle {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
}

/* ========================
   ABOUT SECTION
   ======================== */
.about {
  background: var(--white);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about__image-wrapper {
  position: relative;
}

.about__image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 20px;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gray);
  overflow: hidden;
}

.about__image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--secondary) 0%,
    var(--secondary-light) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  font-size: 1rem;
  color: var(--gray);
  text-align: center;
  padding: 2rem;
}

.about__image-accent {
  position: absolute;
  width: 120px;
  height: 120px;
  background: var(--primary);
  border-radius: 20px;
  bottom: -20px;
  right: -20px;
  z-index: -1;
}

.about__content h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  color: var(--black);
}

.about__content p {
  color: var(--gray);
  margin-bottom: 1.25rem;
  line-height: 1.8;
}

.about__highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}

.about__highlight {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.about__highlight-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--secondary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.about__highlight-text {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--black);
  line-height: 1.4;
}

/* ========================
   GALLERY SECTION
   ======================== */
.gallery {
  background: var(--secondary-light);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.gallery__item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
  background: var(--secondary);
}

.gallery__item:nth-child(1) {
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery__item-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--secondary) 0%,
    var(--secondary-light) 50%,
    var(--secondary) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--gray);
  text-align: center;
  padding: 1rem;
}

.gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(251, 83, 21, 0.7) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery__item:hover::after {
  opacity: 1;
}

.gallery__item-label {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  z-index: 1;
  transform: translateY(10px);
  opacity: 0;
  transition: all 0.4s ease;
}

.gallery__item:hover .gallery__item-label {
  transform: translateY(0);
  opacity: 1;
}

/* ========================
   CONTACT SECTION
   ======================== */
.contact {
  background: var(--black);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.contact .section__tag {
  color: var(--secondary);
}

.contact .section__title {
  color: var(--white);
}

.contact .section__subtitle {
  color: rgba(255, 255, 255, 0.6);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact__info h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.contact__info p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.contact__socials {
  display: flex;
  gap: 1rem;
}

.contact__social {
  width: 50px;
  height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.contact__social:hover {
  border-color: var(--primary);
  background: var(--primary);
  transform: translateY(-3px);
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact__form input,
.contact__form textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
  outline: none;
}

.contact__form input::placeholder,
.contact__form textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.contact__form input:focus,
.contact__form textarea:focus {
  border-color: var(--primary);
}

.contact__form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact__form .btn {
  align-self: flex-start;
}

.contact__decoration {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(251, 83, 21, 0.15);
  top: -150px;
  right: -100px;
}

.contact__decoration--2 {
  width: 250px;
  height: 250px;
  bottom: -80px;
  left: -80px;
  top: auto;
  right: auto;
}

/* ========================
   FOOTER
   ======================== */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2rem;
  text-align: center;
}

.footer p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
}

.footer a {
  color: var(--primary);
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--secondary);
}

/* ========================
   MOBILE MENU
   ======================== */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  font-size: 1.5rem;
  font-family: var(--font-heading);
  color: var(--black);
  transition: color 0.3s ease;
}

.mobile-menu a:hover {
  color: var(--primary);
}

/* ========================
   RESPONSIVE
   ======================== */
@media (max-width: 968px) {
  .nav__links {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .hero__container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .hero__description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__buttons {
    justify-content: center;
  }

  .hero__logo {
    order: -1;
  }

  .hero__logo img {
    max-width: 280px;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery__item:nth-child(1) {
    grid-row: span 1;
    aspect-ratio: 1;
  }

  .contact__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 600px) {
  .section {
    padding: 4rem 1.25rem;
  }

  .hero__tag {
    font-size: 0.7rem;
  }

  .gallery__grid {
    grid-template-columns: 1fr;
  }

  .about__highlights {
    grid-template-columns: 1fr;
  }

  .hero__decoration--1 {
    width: 300px;
    height: 300px;
  }

  .hero__decoration--3 {
    display: none;
  }
}