/* =========================
   GLOBAL STYLES
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, serif;
  background: white;
  color: #111;
  line-height: 1.0;
}

header {
  padding: 24px 20px 10px;
  border-bottom: 1px solid #e9e9e9;
}

/* =========================
   LOGO (CENTERED)
========================= */
.logo-container {
  text-align: center;
  padding: 0 0 8px;
}

.logo-image {
  display: inline-block;
  width: min(380px, 78vw);
  height: auto;
}

/* =========================
   SIDE NAVIGATION
========================= */
.side-nav {
  position: static;
  margin-top: 0;
}

.side-nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.side-nav ul li {
  margin-bottom: 0;
}

.side-nav ul li a {
  display: inline-block;
  padding: 10px 18px;
  text-decoration: none;
  font-size: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #111;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: background-color 0.3s, border-color 0.3s, color 0.3s;
}

.side-nav ul li a:hover {
  background: #111;
  border-color: #111;
  color: white;
}

/* =========================
   HERO SECTION
========================= */
.hero {
  text-align: center;
  padding: 100px 20px;
}

.hero h1 {
  font-size: 30px;
}

.hero p {
  font-size: 18px;
  margin: 10px 0 20px;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  background: black;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  transition: 0.3s;
}

.btn:hover {
  background: #333;
}

/* =========================
   PORTFOLIO GRID
========================= */
.portfolio {
  padding: 48px 20px 90px;
  text-align: center;
}

.portfolio h2 {
  margin-bottom: 36px;
  font-size: clamp(28px, 3.4vw, 44px);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  max-width: 1200px;
  margin: 0 auto;
}

.card {
  background: linear-gradient(180deg, #ffffff 0%, #f7f7f7 100%);
  border: 1px solid #e3e3e3;
  padding: 32px 26px;
  border-radius: 18px;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  text-decoration: none;
  color: inherit;
  text-align: left;
  box-shadow: 0 10px 30px rgba(17, 17, 17, 0.04);
}

.card h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

.card p {
  font-size: 16px;
  line-height: 1.5;
  color: #555;
}

.card:hover {
  transform: translateY(-10px);
  border-color: #111;
  box-shadow: 0 18px 40px rgba(17, 17, 17, 0.12);
}

/* =========================
   BRANDS SECTION
========================= */
.brands {
  padding: 90px 20px;
  text-align: center;
}

.brands h2 {
  margin-bottom: 20px;
  font-size: clamp(28px, 3.4vw, 44px);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.brands p {
  max-width: 720px;
  margin: 0 auto;
  padding: 28px 30px;
  border: 1px solid #e3e3e3;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f7f7 100%);
  color: #555;
  font-size: 18px;
  line-height: 1.7;
  box-shadow: 0 10px 30px rgba(17, 17, 17, 0.04);
}

/* =========================
   CONTACT SECTION
========================= */
.contact {
  padding: 90px 20px;
  text-align: center;
}

.contact h2 {
  margin-bottom: 30px;
  font-size: clamp(28px, 3.4vw, 44px);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-method {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 14px;
}

.contact-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border: 1px solid #111;
  border-radius: 50%;
  color: #111;
  flex-shrink: 0;
}

.contact-icon {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.contact-link {
  display: inline-block;
  padding: 14px 22px;
  border: 1px solid #111;
  border-radius: 999px;
  color: #111;
  font-size: 18px;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
}

.contact-link:hover {
  background: #111;
  color: #fff;
}

/* =========================
   FOOTER
========================= */
footer {
  text-align: center;
  padding: 20px;
  background: #f5f5f5;
  margin-top: 100px;
}

/* =========================
   RESPONSIVE DESIGN
========================= */

/* TABLETS */
@media (max-width: 900px) {
  .side-nav {
    position: static;
    text-align: center;
    margin-bottom: 20px;
  }

  .side-nav ul {
    gap: 15px;
  }

  .side-nav ul li {
    margin-bottom: 0;
  }
}

/* MOBILE */
@media (max-width: 600px) {
  header {
    padding: 20px 14px 10px;
  }

  .hero h1 {
    font-size: 30px;
  }

  .logo-image {
    width: min(260px, 82vw);
  }

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

  .side-nav ul {
    gap: 10px;
  }

  .side-nav ul li a {
    padding: 9px 14px;
    font-size: 14px;
  }
}


/* =========================
   HERO GRID
========================= */

.hero {
  padding: 56px 50px 150px;
  text-align: center;
}

.hero h1 {
  margin-bottom: 10px;
  font-size: 40px;
}

.hero .btn {
  margin-bottom: 50px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  max-width: 3000px;
  margin:0;
}

.hero-grid img {
  width: 100%;
  height: auto;        /* allows full image */
  object-fit: contain; /* prevents cropping */
  border-radius: 2px;
  transition: 0.4s ease;
}
.hero-grid img:hover {
  transform: scale(1.05);
}
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   ABOUT SECTION
========================= */

.back-home {
  position: absolute;
  top: 28px;
  left: 28px;
  display: inline-block;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 999px;
  color: white;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background-color 0.3s, color 0.3s;
}

.back-home:hover {
  background: white;
  color: #111;
}

.subpage-logo {
  display: block;
  width: min(260px, 56vw);
  height: auto;
  margin: -18px auto 40px;
}

.about {
  position: relative;
  background-color: #111;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 180px 100px 140px;
}

.about-container {
  max-width: 1000px;
  margin: 0 auto;
}

.about-container,
.connect-box,
.services > h2,
.shop > h2 {
  position: relative;
  z-index: 1;
}

.about h2 {
  font-size: 36px;
  margin-bottom: 0 auto;
}

.about p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 0 auto;
}

/* =========================
   CONNECT PAGE
========================= */

.connect-page {
  position: relative;
  height: 100vh;
  background-color: #111;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  text-align: center;
  color: white;
  padding: 72px 100px 100px;
}

.connect-box {
  max-width: 1000px;
  margin-top: 28px;
}

.coneect-box h1 {
  font-size: 40px;
  margin-bottom: 50px;
}

.connect-box p {
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 1.6;
}

.connect-form {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.connect-form input {
  padding: 12px;
  width: 70%;
  border: none;
  border-radius: 4px;
}

.connect-form button {
  padding: 12px 20px;
  border: none;
  background: black;
  color: white;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.3s;
}

.connect-form button:hover {
  background: #d4a24f;
}

@media (max-width: 600px) {
  .newsletter-form {
    flex-direction: column;
  }

  .connect-form input {
    width: 100%;
  }
}

/* =========================
   SERVICES SECTION
========================= */

.services {
  position: relative;
  padding: 72px 10% 100px;
  background-color: #111;
  color: white;
  text-align: center;
}

.services h2 {
  font-size: 40px;
  margin-bottom: 50px;
}

.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.service-card {
  background-color: #1c1c1c;
  padding: 30px;
  border-radius: 10px;
  transition: 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  background-color: #222;
}

.service-card h3 {
  margin-bottom: 15px;
  font-size: 22px;
}

.booking-section {
  padding: 80px 20px;
  background: #111;
  color: white;
  text-align: center;
}

.booking-section h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.booking-section p {
  color: #bbb;
  margin-bottom: 30px;
}

.contact-form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: none;
  background: #1c1c1c;
  color: white;
  border-radius: 4px;
}

.contact-form button {
  padding: 12px;
  background: #5a3825; /* your brown tone */
  color: white;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #7a4a30;
}

.shop {
  position: relative;
  padding: 72px 10% 100px;
  background-color: #111;
  color: white;
  text-align: center;
}

.merch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.merch-item img {
  width: 100%;
  border-radius: 10px;
  transition: 0.3s ease;
}

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

.merch-item h3 {
  margin-top: 15px;
}

.photography {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #111;
  color: white;
  text-align: center;
  font-family: Arial, sans-serif;
}

.photography h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.photography p {
  font-size: 1.2rem;
  color: #ccc;
}

@media (max-width: 600px) {
  .back-home {
    top: 18px;
    left: 18px;
    padding: 9px 13px;
    font-size: 12px;
  }

  .subpage-logo {
    width: min(210px, 62vw);
    margin: -8px auto 28px;
  }
}
