@import url('https://fonts.googleapis.com/css2?family=Antonio:wght@700&family=Work+Sans:wght@400;500;600&display=swap');

:root {
  --bg-color: #2b333c;
  --text-color: #f4f1ea;
  --accent-color: #ba8e63;
  --card-bg: #353e49;
  --input-bg: #222830;
  --font-title: 'Antonio', sans-serif;
  --font-body: 'Work Sans', sans-serif;
}


* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: var(--font-body);
  line-height: 1.6;
}

h1, h2, h3, h4, .brand-logo, nav a {
  font-family: var(--font-title);
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 1px;
}

a {
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.2s ease;
}


/* Header & Nav */

header {

  display: flex;

  justify-content: space-between;

  align-items: center;

  padding: 20px 8%;

  background-color: rgba(34, 40, 48, 0.95);

  position: sticky;

  top: 0;

  z-index: 100;

  border-bottom: 1px solid rgba(186, 142, 99, 0.2);

}



.brand-logo {

  font-size: 1.8rem;

  font-weight: 700;

}



nav ul {

  display: flex;

  list-style: none;

  gap: 25px;

}

nav a:hover, nav a.active {
  color: #d97742;
}



/* Base Sections */

.container {

  width: 84%;

  max-width: 1200px;

  margin: 0 auto;

  padding: 60px 0;

}



.hero {

  text-align: center;

  padding: 100px 20px;

  background: linear-gradient(rgba(43, 51, 60, 0.85), rgba(43, 51, 60, 0.85));

}



.hero h1 {

  font-size: 3.5rem;

  margin-bottom: 10px;

}



.slogan {

  font-size: 1.4rem;

  font-weight: 500;

  color: var(--text-color);

  margin-bottom: 20px;


}



.hero-description {

  max-width: 700px;

  margin: 0 auto 30px auto;

  font-size: 1.1rem;

}



/* Buttons */

.btn {

  display: inline-block;

  background-color: var(--accent-color);

  color: var(--bg-color);

  padding: 14px 28px;

  font-weight: 700;

  border-radius: 4px;

  text-transform: uppercase;

  letter-spacing: 1px;

  border: none;

  cursor: pointer;

}



.btn:hover {

  background-color: var(--text-color);

}



/* Grid & Cards */

.grid {

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

  gap: 30px;

  margin-top: 40px;

}



.card {

  background-color: var(--card-bg);

  padding: 30px;

  border-radius: 6px;

  border-top: 3px solid var(--accent-color);

}



.card h3 {

  font-size: 1.5rem;

  margin-bottom: 15px;

}



/* Contact Form */

.form-group {

  margin-bottom: 20px;

}



label {

  display: block;

  margin-bottom: 8px;

  font-weight: 500;

}



input, select, textarea {

  width: 100%;

  padding: 12px;

  background-color: var(--input-bg);

  border: 1px solid rgba(244, 241, 234, 0.2);

  color: var(--text-color);

  border-radius: 4px;

  font-family: var(--font-body);

}



input:focus, select:focus, textarea:focus {

  outline: none;

  border-color: var(--accent-color);

}



/* Footer & Socials */
footer {
  text-align: center;
  padding: 40px 20px;
  background-color: #222830;
  border-top: 1px solid rgba(244, 241, 234, 0.1);
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.social-links {
  margin-top: 0px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-links a {
  color: #d97742;
  font-weight: 600;
  transition: color 0.2s ease;
}

.social-links a:hover {
  color: var(--text-color);
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(244, 241, 234, 0.6);
}

/* Mobile Responsive */

@media (max-width: 768px) {

  header { flex-direction: column; gap: 15px; text-align: center; }

  nav ul { flex-wrap: wrap; justify-content: center; gap: 15px; }

  .hero h1 { font-size: 2.5rem; }

} 

.category-section {
  width: 100%;
  overflow: hidden;
}

.photo-row {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  gap: 20px !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  width: 100% !important;
  padding-bottom: 15px !important;
  -webkit-overflow-scrolling: touch;
}

.photo-row img {
  flex: 0 0 auto !important;
  width: 450px !important;
  height: 320px !important;
  max-width: none !important;
  object-type: cover;
  object-fit: cover !important;
  border-radius: 6px !important;
  cursor: pointer !important;
}