/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BODY */
body {
    background: #000;
    font-family: 'Inter', sans-serif;
    color: #eaeaea;
    line-height: 1.6;
}

/* CENTERED PAGE */
.page-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    background: #111;
}

/* HERO */
.hero {
    position: relative;
}

.hero-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1rem;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    margin-bottom: 0.5rem;
}

.hero-tagline {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* NAV */
.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    border-bottom: 1px solid #222;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.main-nav a {
    color: #eaeaea;
    text-decoration: none;
    font-weight: 500;
}

.main-nav a:hover {
    color: #cfa85c;
}

.language-switcher button {
    background: none;
    border: 1px solid #333;
    color: #eaeaea;
    padding: 0.3rem 0.6rem;
    cursor: pointer;
}

.language-switcher button:hover {
    border-color: #cfa85c;
}

/* CONTENT */
.content-section {
    padding: 3rem 2rem;
}

.content-section h2 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.content-section p {
    max-width: 1200px;
}

.text-filled {
  max-width: 680px;
  text-align: justify;
  line-height: 1.65;
  hyphens: auto;
}


/* ABOUT SECTION LAYOUT */
.about-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
}

.about-text p {
    max-width: 700px;
}

.about-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border: 1px solid #222;
}

/* METHODS SECTION */
/* METHODS INTRO */
.methods-intro {
    max-width: 1200px;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

/*.methods-intro p {
    font-size: 1.05rem;
    opacity: 0.9;
}*/
.methods-section {
    background: #141414;
}

.methods-grid {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.method {
    background: #101010;
    border: 1px solid #222;
    overflow: hidden;
}

.method img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
}

.method h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin: 1rem 1rem 0.4rem;
}

.method p {
    font-size: 0.95rem;
    opacity: 0.85;
    padding: 0 1rem 1.2rem;
}


/* HIGHLIGHTS / FEATURED WORK */
.highlights-section {
  padding: 2rem 2rem;
}

.belt {
  overflow: hidden;
  border: 1px solid #222;
  background: #0f0f0f;
  padding: 1rem 0;
}

.belt-track {
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform;
  transform: translateZ(0);
}

.belt img {
  width: 320px;
  height: 200px;
  object-fit: cover;
  margin-right: 1rem;
  border: 1px solid #222;
  border-radius: 4px;
}

.belt:hover .belt-track {
  transition: none;
}
/* GALLERY */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.brand-card {
  display: block;
  text-decoration: none;
  color: #eaeaea;
  border: 1px solid #222;
  background: #101010;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.brand-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.brand-card span {
  display: block;
  padding: 0.8rem 1rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
}

.brand-card:hover {
  transform: translateY(-3px);
  border-color: #cfa85c;
}

/* FOOTER */
.footer {
    border-top: 1px solid #222;
    padding: 3rem 2rem 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-block h3 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.6rem;
    font-size: 1.2rem;
}

.footer-block p {
    font-size: 0.95rem;
    opacity: 0.85;
}

.footer a {
    color: #cfa85c;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.6;
}





@media (max-width: 900px) {
    .about-layout {
        grid-template-columns: 1fr;
    }

    .about-image img {
        height: 300px;
    }
}

/* GALLERY BRAND PAGE*/
.model-block {
  margin-top: 3rem;
}

.model-block h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}


/* ==============================
   MODEL GROUPING
   ============================== */

.model-block {
    margin-top: 3rem;
}

.model-block h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #eaeaea;
    border-bottom: 1px solid #222;
    padding-bottom: 0.4rem;
}

/* Reuse your existing grid */
.model-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.2rem;
}

/* .model-gallery img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border: 1px solid #222;
    cursor: pointer;
    transition: transform 0.25s ease, border-color 0.25s ease;
} */
.model-gallery img {
  cursor: pointer;
  width: 100%;
  max-width: 350px;   /* <-- set your preferred maximum size */
  margin: 0 auto;     /* centers single image */
  aspect-ratio: 4 / 3;
  object-fit: cover;
}


.model-gallery img:hover {
    transform: scale(1.03);
    border-color: #cfa85c;
}


/* ==============================
   IMAGE MODAL
   ============================== */

.image-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
}

.image-modal.active {
    display: block;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.85);
}

.modal-content {
    position: relative;
    max-width: 1100px;
    margin: 5vh auto;
    background: #0f0f0f;
    border: 1px solid #222;
    padding: 2rem;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: #eaeaea;
    font-size: 2rem;
    cursor: pointer;
}

.modal-close:hover {
    color: #cfa85c;
}

/* Layout */
.modal-layout {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 2rem;
    align-items: center;
}

/* Image */
.modal-image-wrapper img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: contain;
    background: #000;
}

/* Text */
.modal-text h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 0.6rem;
}

/* Responsive */
@media (max-width: 900px) {
    .modal-layout {
        grid-template-columns: 1fr;
    }
}

.modal-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.55);
    border: 1px solid #333;
    color: #eaeaea;
    width: 45px;
    height: 45px;
    font-size: 2rem;
    cursor: pointer;
    z-index: 5;
}

.modal-arrow.left {
    left: 10px;
}

.modal-arrow.right {
    right: 10px;
}

.modal-arrow:hover {
    background: rgba(0,0,0,0.75);
    border-color: #cfa85c;
}

