/* Durrës Vacation Photographer Website */

:root {
  --sand: #f7efe2;
  --cream: #fffaf1;
  --ink: #17201d;
  --muted: #6b746f;
  --gold: #c78346;
  --gold-dark: #8c562e;
  --sea: #1e5965;
  --red: #b42318;
  --green: #247047;
  --line: rgba(23, 32, 29, .13);
  --white: #ffffff;
  --shadow: 0 28px 80px rgba(30, 25, 18, .16);
  --soft-shadow: 0 18px 45px rgba(30, 25, 18, .08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--sand);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
button { font: inherit; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 239, 226, .9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.nav {
  max-width: 1220px;
  margin: auto;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.logo { display: flex; align-items: center; gap: 11px; font-weight: 900; letter-spacing: -.04em; }
.logo-dot {
  width: 34px; height: 34px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--sea));
  box-shadow: 0 12px 26px rgba(199, 131, 70, .28);
}

.nav-links { display: flex; gap: 20px; font-size: .92rem; font-weight: 800; color: var(--muted); }
.nav-links a:hover { color: var(--ink); }

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 13px 22px;
  background: var(--ink);
  color: var(--white);
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(23, 32, 29, .18);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); box-shadow: 0 20px 42px rgba(23, 32, 29, .22); }
.btn.gold { background: var(--gold); }
.btn.sea { background: var(--sea); }
.btn.light { background: var(--white); color: var(--ink); border: 1px solid var(--line); box-shadow: none; }
.btn[disabled] { opacity: .55; cursor: not-allowed; transform: none; }

.section {
  max-width: 1220px;
  margin: auto;
  padding: 88px 22px;
}

.hero {
  min-height: 92vh;
  display: grid;
  grid-template-columns: 1fr .96fr;
  align-items: center;
  gap: 46px;
  padding-top: 64px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 13px;
  background: rgba(255,255,255,.48);
  color: var(--sea);
  font-size: .78rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
}

h1, h2, h3 { margin: 0; line-height: 1.03; letter-spacing: -.055em; }
h1, h2 { font-family: Georgia, "Times New Roman", serif; font-weight: 700; }
h1 { margin-top: 22px; font-size: clamp(3.1rem, 7vw, 7rem); }
h2 { font-size: clamp(2.15rem, 4.2vw, 4.45rem); max-width: 890px; }
h3 { font-size: clamp(1.55rem, 2vw, 2.1rem); letter-spacing: -.04em; }

.lead {
  max-width: 650px;
  margin: 24px 0 30px;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.7vw, 1.28rem);
}

.hero-actions, .package-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }

.hero-visual {
  position: relative;
  min-height: 640px;
  border-radius: 44px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #ddd;
}

.floating-card {
  position: absolute;
  left: 24px; right: 24px; bottom: 24px;
  padding: 24px;
  border-radius: 30px;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 60px rgba(0,0,0,.12);
}

.floating-card strong { display: block; font-size: 1.12rem; margin-bottom: 6px; }
.muted { color: var(--muted); }

.quick-prices {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 34px;
  max-width: 840px;
}

.quick-price {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,.58);
}

.quick-price b { display: block; font-size: 1.55rem; letter-spacing: -.05em; }

.intro-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 40px; align-items: start; }
.mini-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 28px; }
.mini-card { background: rgba(255,255,255,.68); border: 1px solid var(--line); border-radius: 24px; padding: 18px; box-shadow: var(--soft-shadow); }
.mini-card b { display: block; margin-bottom: 4px; }

.package-section { padding-top: 70px; padding-bottom: 70px; }

.package-showcase {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 30px;
  align-items: stretch;
  border-radius: 42px;
  overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.package-showcase.reverse { grid-template-columns: .95fr 1.05fr; }
.package-copy { padding: clamp(28px, 4vw, 54px); display: flex; flex-direction: column; justify-content: center; }
.package-copy .eyebrow { margin-bottom: 18px; width: fit-content; }
.package-kicker { color: var(--gold-dark); font-weight: 900; text-transform: uppercase; letter-spacing: .08em; font-size: .8rem; margin-bottom: 10px; }

.price-line { display: flex; flex-wrap: wrap; align-items: flex-end; gap: 12px; margin: 22px 0; }
.price { font-size: clamp(3.1rem, 6vw, 5rem); font-weight: 950; letter-spacing: -.08em; line-height: .9; }
.price-note { color: var(--muted); font-weight: 800; padding-bottom: 8px; }

.included { display: grid; gap: 10px; margin: 24px 0 28px; }
.included div { display: flex; gap: 10px; align-items: flex-start; color: var(--muted); }
.included div::before {
  content: "✓";
  flex: 0 0 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(199, 131, 70, .14);
  color: var(--gold-dark);
  font-weight: 950;
  font-size: .82rem;
  margin-top: 1px;
}

.package-media {
  min-height: 640px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  padding: 12px;
  background: rgba(23,32,29,.035);
}

.package-media .main { grid-column: span 2; border-radius: 30px 30px 18px 18px; overflow: hidden; }
.package-media .small { border-radius: 18px; overflow: hidden; }

.image-button, .gallery-card {
  position: relative;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: zoom-in;
  text-align: left;
  color: inherit;
}

.image-button img, .gallery-card img { transition: transform .35s ease; }
.image-button:hover img, .gallery-card:hover img { transform: scale(1.045); }

.media-label span, .gallery-card span {
  position: absolute;
  left: 16px;
  bottom: 16px;
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255,255,255,.88);
  color: var(--ink);
  font-size: .82rem;
  font-weight: 900;
}

.dark-feature { background: var(--ink); color: white; max-width: 100%; }
.dark-feature .package-showcase { max-width: 1220px; margin: auto; background: #111815; border-color: rgba(255,255,255,.13); }
.dark-feature .muted, .dark-feature .included div, .dark-feature .price-note { color: rgba(255,255,255,.72); }
.dark-feature .eyebrow { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.16); color: #f3d6b5; }
.dark-feature .package-kicker { color: #f3d6b5; }

.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 230px; gap: 14px; margin-top: 34px; }
.gallery-card { overflow: hidden; border-radius: 26px; box-shadow: var(--soft-shadow); }
.gallery-card.large { grid-column: span 2; grid-row: span 2; }
.gallery-card.wide { grid-column: span 2; }

.booking-card {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 28px;
  background: var(--sea);
  color: white;
  border-radius: 42px;
  padding: clamp(22px, 4vw, 42px);
  box-shadow: var(--shadow);
  align-items: start;
}

.booking-card .muted, .booking-card .lead { color: rgba(255,255,255,.74); }
.cash-box { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.16); border-radius: 26px; padding: 20px; margin-top: 22px; }

form {
  display: grid;
  gap: 14px;
  background: white;
  color: var(--ink);
  border-radius: 30px;
  padding: 26px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: grid; gap: 7px; }
label { font-weight: 900; font-size: .9rem; }

input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 15px;
  font: inherit;
  color: var(--ink);
  background: white;
  outline: none;
}

input:focus, select:focus, textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(199, 131, 70, .14); }
textarea { min-height: 112px; resize: vertical; }

.form-buttons { display: flex; flex-wrap: wrap; gap: 12px; }
.form-buttons .btn { flex: 1; min-width: 180px; }
.note { margin: 0; color: var(--muted); font-size: .9rem; }
.hidden-field { position: absolute; left: -9999px; }

.availability-message {
  padding: 13px 15px;
  border-radius: 16px;
  background: rgba(30, 89, 101, .08);
  color: var(--sea);
  border: 1px solid rgba(30, 89, 101, .15);
  font-weight: 800;
  font-size: .92rem;
}

.availability-message.error {
  color: var(--red);
  background: rgba(180, 35, 24, .08);
  border-color: rgba(180, 35, 24, .18);
}

.availability-message.success {
  color: var(--green);
  background: rgba(36, 112, 71, .08);
  border-color: rgba(36, 112, 71, .18);
}

.album-lightbox {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: none;
  background: rgba(0, 0, 0, .9);
  padding: 24px;
}

.album-lightbox.active { display: flex; align-items: center; justify-content: center; }
.album-shell { width: min(1160px, 96vw); max-height: 94vh; display: grid; gap: 16px; color: white; }
.album-header { display: flex; justify-content: space-between; gap: 20px; align-items: end; }
.album-header h3 { margin-top: 10px; }
.album-count { font-weight: 900; color: rgba(255,255,255,.72); }

.album-viewer {
  position: relative;
  height: min(68vh, 720px);
  border-radius: 26px;
  overflow: hidden;
  background: #0f0f0f;
  box-shadow: 0 30px 90px rgba(0,0,0,.55);
}

.album-viewer img { object-fit: contain; }
.album-arrow, .album-close { border: 0; cursor: pointer; background: white; color: var(--ink); }

.album-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 56px;
  border-radius: 999px;
  z-index: 2;
  font-size: 42px;
  line-height: .5;
}

.album-arrow.prev { left: 16px; }
.album-arrow.next { right: 16px; }

.album-close {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 28px;
}

.album-thumbs { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 4px; }

.album-thumbs button {
  width: 96px;
  height: 70px;
  flex: 0 0 auto;
  border-radius: 14px;
  border: 2px solid transparent;
  overflow: hidden;
  padding: 0;
  background: transparent;
  cursor: pointer;
  opacity: .7;
}

.album-thumbs button.active { border-color: var(--gold); opacity: 1; }

footer {
  text-align: center;
  padding: 34px 22px 54px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

/* Admin */
.admin-body { background: #f7efe2; }
.admin-shell { max-width: 1180px; margin: auto; padding: 32px 18px; }
.admin-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 24px;
  box-shadow: var(--soft-shadow);
}
.admin-table { width: 100%; border-collapse: collapse; margin-top: 18px; background: white; overflow: hidden; border-radius: 18px; }
.admin-table th, .admin-table td { padding: 12px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; font-size: .92rem; }
.admin-table th { background: var(--cream); font-weight: 900; }
.badge { display: inline-flex; padding: 6px 10px; border-radius: 999px; font-weight: 900; font-size: .78rem; }
.badge.pending { background: rgba(199,131,70,.13); color: var(--gold-dark); }
.badge.confirmed { background: rgba(36,112,71,.13); color: var(--green); }
.badge.cancelled { background: rgba(180,35,24,.13); color: var(--red); }
.admin-actions { display: flex; gap: 8px; flex-wrap: wrap; }

@media (max-width: 980px) {
  .hero, .intro-grid, .package-showcase, .package-showcase.reverse, .booking-card { grid-template-columns: 1fr; }
  .hero-visual { min-height: 500px; }
  .quick-prices, .mini-grid { grid-template-columns: repeat(2, 1fr); }
  .package-media { min-height: 520px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-card.large, .gallery-card.wide { grid-column: span 2; }
  .nav-links { display: none; }
}

@media (max-width: 620px) {
  .section { padding: 58px 18px; }
  .hero { padding-top: 34px; }
  .quick-prices, .mini-grid, .form-row { grid-template-columns: 1fr; }
  .package-section { padding-top: 34px; padding-bottom: 34px; }
  .package-media { min-height: auto; grid-template-columns: 1fr; grid-template-rows: 280px 200px 200px; }
  .package-media .main { grid-column: span 1; }
  .gallery-grid { grid-auto-rows: 190px; }
  .gallery-card.large, .gallery-card.wide, .gallery-card { grid-column: span 2; grid-row: span 1; }
  .floating-card { left: 14px; right: 14px; bottom: 14px; padding: 18px; }
  .booking-card { border-radius: 30px; }
  form { padding: 20px; }
  .album-lightbox { padding: 14px; }
  .album-viewer { height: 58vh; }
  .album-header { padding-right: 48px; }
  .album-arrow { width: 42px; height: 50px; }
  .admin-table { display: block; overflow-x: auto; }
}
