/* ===== VARIABLE DECLARATIONS ===== */
:root {
  --color-primary: #3b2417;
  --color-secondary: #5a3825;
  --accent-primary: #c8a27a;
  --accent-secondary: #e7d4be;
  --bg-color: #f8f5f1;
  --text-color: #4a403a;
  --white: #fff;

  --font-heading: "Cormorant Garamond", serif;
  --font-body: "Inter", sans-serif;
}

/* ===== GLOBAL RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ===== RE-USABLE STYLES ===== */
.container {
  width: 100%;
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 3rem;
}

.small-container {
  max-width: 75rem;
}

.section-subtitle {
  display: block;
  font-size: 1.5rem;
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.4rem;
  color: var(--accent-primary);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 4.5rem;
  font-weight: 500;
  letter-spacing: 0.1rem;
  line-height: 1.2;
  margin-bottom: 3rem;
}

.section-title.left-align {
  text-align: left;
}

/* ===== HERO SECTION ===== */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 100dvh;
  background: url("/images/hero-des.jpg") no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(248, 245, 241, 0.65);
  backdrop-filter: blur(0.3rem);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 120rem;
  padding: 2rem;
  backface-visibility: hidden;
}

.logo-container {
  margin-bottom: 2rem;
}

.logo {
  width: 35rem;
  height: auto;
}

.announcement {
  display: block;
  font-size: 2rem;
  font-style: italic;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: 1rem;
}

.heading-primary {
  font-family: var(--font-heading);
  font-size: 6rem;
  text-transform: capitalize;
  letter-spacing: 0.12rem;
  color: var(--color-primary);
  line-height: 1.1;
}

.cta-container {
  margin-top: 4rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.btn {
  display: inline-block;
  padding: 1.4rem 2.8rem;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 0.2rem;
  transition: all 0.6s ease;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--bg-color);
  border: 0.1rem solid var(--color-primary);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--color-primary);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-primary);
  border: 0.1rem solid var(--color-secondary);
}

.btn-secondary:hover {
  background-color: rgba(59, 36, 23, 0.1);
  color: var(--text-color);
  border: 0.1rem solid var(--color-primary);
}

/* ===== BRAND STORY SECTION ===== */
.brand-story {
  padding: 12rem 0;
  text-align: center;
  border-bottom: 0.1rem solid var(--accent-secondary);
}

.story-paragraph {
  font-size: 1.7rem;
  margin-bottom: 2.5rem;
  font-weight: 300;
  line-height: 1.9;
}

.values-section {
  background-color: var(--color-primary);
  color: var(--bg-color);
  padding: 12rem 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
}

.value-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

.value-icon-wrapper {
  width: 5rem;
  height: 5rem;
  margin-bottom: 2rem;

  display: flex;
  align-items: center;
  justify-content: center;
}

.icon {
  width: 100%;
  height: auto;
}

.value-card h3 {
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.value-card p {
  font-size: 1.3rem;
  font-weight: 300;
}

/* ===== SHOWCASE GALLERY SECTION ===== */
.showcase-section {
  width: 100%;
  padding: 12rem 2rem;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: minmax(32rem, auto);
  gap: 2rem;
  max-width: 140rem;
  margin: 0 auto;
}

.showcase-item {
  position: relative;
  overflow: hidden;
  border-radius: 0.7rem;
}

.showcase-item.large {
  grid-row: span 2;
}

.showcase-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.showcase-img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(74, 64, 58, 0.6);
  display: flex;
  align-items: flex-end;
  padding: 3rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.showcase-img-overlay span {
  font-size: 1.2rem;
  letter-spacing: 0.3rem;
  text-transform: uppercase;
  color: var(--bg-color);
}

.showcase-item:hover .showcase-img {
  transform: scale(1.04);
}

.showcase-item:hover .showcase-img-overlay {
  opacity: 1;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  padding: 12rem 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 8rem;
}

.contact-links-list {
  font-style: normal;
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-bottom: 3rem;
}

.contact-link-item {
  display: flex;
  align-items: center;
  gap: 2rem;
  text-decoration: none;
  color: inherit;
}

.contact-icon {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  border: 0.1rem solid var(--color-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon img {
  width: 50%;
  height: auto;
}

.contact-label {
  color: var(--color-secondary);
  display: block;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.2rem;
  margin-bottom: 0.4rem;
}

.contact-value {
  font-size: 1.3rem;
  font-weight: 300;
}

.social-engagement-block {
  background-color: var(--white);
  padding: 4rem;
  border: 0.1rem solid var(--accent-secondary);
  color: var(--color-primary);
  border-radius: 0.7rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 1rem 3rem rgba(59, 36, 23, 0.08);
}

.social-engagement-block h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
}

.social-engagement-block p {
  font-size: 1.3rem;
  margin-bottom: 3rem;
  font-weight: 400;
}

.social-circle-wrapper {
  display: flex;
  gap: 1.5rem;
}

.social-circle-wrapper a {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-icon {
  width: 100%;
  height: auto;
  opacity: 75%;
  transition: opacity 0.3s ease;
}

.social-icon:hover {
  opacity: 100%;
}

/* ===== FOOTER ===== */
.footer {
  padding: 2rem 0;
  background-color: var(--color-primary);
  color: var(--accent-secondary);
  font-weight: 300;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.copyright {
  font-size: 1.1rem;
  letter-spacing: 0.1rem;
  text-transform: capitalize;
}

.footer-tagline {
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
}

/* ===== HERO FADE-UP ANIMATION ===== */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translate3d(0, 2rem, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.fade-up {
  opacity: 0;
  will-change: transform, opacity;
  animation: fadeUp 1s ease forwards;
}

/* ===== ANIMATION DELAYS ===== */

.delay-200 {
  animation-delay: 0.2s;
}

.delay-400 {
  animation-delay: 0.4s;
}

.delay-600 {
  animation-delay: 0.6s;
}

.delay-800 {
  animation-delay: 0.8s;
}
