
html {
  position: relative;
  max-height: 99vh;
}

body {
  overflow-y: auto;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  font-family: "Crimson Text", Georgia, serif;
  background-color: #0d0d0d;
  color: #d4c5b5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  -webkit-tap-highlight-color: rgba(201, 168, 108, 0.2);
}

/* App Container */
.app-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding-bottom: 3rem;
}

/* Header & Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #0d0d0d;
  border-bottom: 1px solid #2d1b3d;
  padding: 1.2rem 2rem;
}

.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.site-logo {
  font-family: "Cinzel", "Times New Roman", serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: #c9a86c;
  text-decoration: none;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-logo a {
  color: #c9a86c;
  text-decoration: none;
}

.site-logo:hover,
.site-logo a:hover {
  color: #e8d5a8;
  text-shadow: 0 0 8px rgba(201, 168, 108, 0.4);
}

.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2.5rem;
}

.nav-links a {
  font-family: "Cinzel", "Times New Roman", serif;
  font-size: 0.8rem;
  color: #8a7a6a;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  transition: all 0.3s ease;
  display: inline-block;
  min-height: 44px;
  line-height: 44px;
  padding: 0 0.25rem;
}

.nav-links a:hover {
  color: #c9a86c;
  text-shadow: 0 0 6px rgba(201, 168, 108, 0.3);
}

/* Main Content */
.site-main {
  flex: 1;
  padding: 2rem;
}

/* Homepage */
.home-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 200px);
  text-align: center;
  padding: 2rem 1rem;
}

.home-hero {
  max-width: 800px;
}

.home-title {
  font-family: "Cinzel", "Times New Roman", serif;
  font-size: 3.5rem;
  font-weight: 400;
  margin-bottom: 1.2rem;
  letter-spacing: 0.15em;
  color: #c9a86c;
  text-transform: uppercase;
  line-height: 1.2;
}

.home-tagline {
  font-family: "Crimson Text", Georgia, serif;
  font-size: 1.3rem;
  color: #7a6a5a;
  margin-bottom: 3rem;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.05em;
}

.home-nav-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.home-link {
  font-family: "Cinzel", "Times New Roman", serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #8a7a6a;
  text-decoration: none;
  padding: 0.8rem 1.8rem;
  border: 1px solid #3d2b4d;
  background-color: transparent;
  transition: all 0.3s ease;
  display: inline-block;
  min-height: 44px;
}

.home-link:hover {
  background-color: #1a0f1f;
  color: #c9a86c;
  border-color: #c9a86c;
  box-shadow: 0 0 12px rgba(201, 168, 108, 0.2);
}

.home-link a {
  color: inherit;
  text-decoration: none;
  display: inline-block;
  min-height: 44px;
  line-height: 44px;
}

/* Page Containers */
.page-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.page-title {
  font-family: "Cinzel", "Times New Roman", serif;
  font-size: 2.2rem;
  font-weight: 400;
  margin-bottom: 2rem;
  letter-spacing: 0.1em;
  color: #c9a86c;
  text-transform: uppercase;
  line-height: 1.2;
}

.page-content {
  font-size: 1.15rem;
  line-height: 1.9;
  color: #a09080;
}

.page-content p {
  margin-bottom: 1.5rem;
}

/* Services */
.service-item {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #2d1b3d;
}

.service-item:last-child {
  border-bottom: none;
}

.service-item h2 {
  font-family: "Cinzel", "Times New Roman", serif;
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #b8a080;
}

.service-item p {
  margin: 0;
  color: #8a7a6a;
}

/* Contact */
.contact-info {
  margin-top: 2rem;
}

.contact-info p {
  margin-bottom: 1rem;
  color: #a09080;
}

.contact-info a {
  color: #c9a86c;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
  display: inline-block;
  min-height: 44px;
  line-height: 44px;
}

.contact-info a:hover {
  color: #e8d5a8;
  border-bottom-color: #c9a86c;
}

/* Work / Shoots Grid */
.work-page .shoots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.shoot-card {
  background: #141414;
  border: 1px solid #2d1b3d;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.shoot-card:hover {
  border-color: #c9a86c;
  box-shadow: 0 0 20px rgba(201, 168, 108, 0.15);
  background: #1a0f1f;
}

.shoot-card a {
  color: #b8a080;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
  min-height: 44px;
  line-height: 44px;
}

.shoot-card:hover a {
  color: #c9a86c;
}

.shoot-title {
  font-family: "Cinzel", "Times New Roman", serif;
  font-size: 1rem;
  font-weight: 400;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

/* Gallery (horizontal scroll for shoots) */
.gallery-body {
  padding-left: 1vw;
  padding-top: 1vh;
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  gap: 0.5rem;
}

.gallery-body::-webkit-scrollbar {
  display: none;
}

.gallery-image {
  height: 85vh;
  max-width: none;
  padding-right: 1vw;
  object-fit: contain;
  overflow: hidden;
  flex-shrink: 0;
}

/* Studio (single photo view) */
.studio-body {
  padding-left: 1vw;
  padding-top: 1vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  scrollbar-width: none;
  min-height: 90vh;
}

.studio-image {
  height: 85vh;
  max-width: none;
  object-fit: contain;
  overflow: hidden;
}

.studio-description {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.95rem;
  color: #7a6a5a;
  text-transform: lowercase;
  letter-spacing: 0.1em;
  font-family: "Crimson Text", Georgia, serif;
  font-style: italic;
  padding: 0 1rem;
}

/* Footer */
.footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  white-space: nowrap;
  line-height: 2vh;
  height: 2vh;
  text-align: center;
  font-size: 0.7rem;
  color: #5a4a3a;
  background: #0d0d0d;
  border-top: 1px solid #2d1b3d;
  padding: 0.5rem 0;
  font-family: "Cinzel", "Times New Roman", serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Responsive - Tablet */
@media (max-width: 768px) {
  .site-header {
    padding: 0.8rem 1rem;
  }

  .main-nav {
    flex-direction: row;
    justify-content: space-between;
    gap: 0;
  }

  .site-logo {
    font-size: 1rem;
    letter-spacing: 0.1em;
  }

  .nav-links {
    gap: 0.6rem;
  }

  .nav-links a {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    min-height: 36px;
    line-height: 36px;
  }

  .site-main {
    padding: 1rem;
  }

  .home-page {
    min-height: calc(100vh - 160px);
    padding: 1rem;
  }

  .home-title {
    font-size: 1.8rem;
    letter-spacing: 0.1em;
  }

  .home-tagline {
    font-size: 1.05rem;
    margin-bottom: 2rem;
  }

  .home-nav-links {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }

  .home-link {
    width: 100%;
    max-width: 220px;
    padding: 0.6rem 1rem;
  }

  .page-container {
    padding: 1.5rem 1rem;
  }

  .page-title {
    font-size: 1.6rem;
    letter-spacing: 0.08em;
  }

  .page-content {
    font-size: 1rem;
  }

  .work-page .shoots-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .shoot-card {
    padding: 1.5rem;
  }

  .gallery-body {
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 1rem;
    gap: 1rem;
  }

  .gallery-image {
    height: auto;
    max-height: none;
    max-width: 100%;
    width: 100%;
    padding-right: 0;
    flex-shrink: 1;
  }

  .studio-image {
    height: auto;
    max-height: 70vh;
    max-width: 95vw;
  }

  .studio-description {
    font-size: 0.85rem;
    margin-top: 1rem;
  }

  .footer {
    position: relative;
    height: auto;
    line-height: 1.4;
    padding: 0.6rem 0;
    font-size: 0.65rem;
  }

  .app-container {
    padding-bottom: 0;
  }
}

/* Responsive - Small Phone */
@media (max-width: 480px) {
  .site-header {
    padding: 0.6rem 0.8rem;
  }

  .site-logo {
    font-size: 0.85rem;
  }

  .nav-links {
    gap: 0.4rem;
  }

  .nav-links a {
    font-size: 0.6rem;
    letter-spacing: 0.05em;
    min-height: 32px;
    line-height: 32px;
  }

  .home-title {
    font-size: 1.4rem;
  }

  .home-tagline {
    font-size: 0.95rem;
  }

  .page-title {
    font-size: 1.3rem;
  }

  .shoot-card {
    padding: 1.2rem;
  }

  .shoot-title {
    font-size: 0.9rem;
  }

  .service-item h2 {
    font-size: 0.95rem;
  }
}
