/* =========================
   CAMDEN CASKET
   RED & WHITE THEME
========================= */

:root {

  --red: #c91d25;
  --red-dark: #a9151c;
  --red-light: #e52b32;

  --cream: #fffaf5;
  --white: #ffffff;

  --dark: #202020;
  --dark-soft: #343434;

  --text: #292929;
  --muted: #707070;

  --border: #e9e3df;

  --max-width: 1180px;
}


/* =========================
   RESET
========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}


body {

  font-family:
    Arial,
    Helvetica,
    sans-serif;

  color: var(--text);

  background: var(--white);

  line-height: 1.6;
}


a {
  color: inherit;
  text-decoration: none;
}


img {
  max-width: 100%;
  display: block;
}


.container {

  width: min(92%, var(--max-width));

  margin: 0 auto;
}


.section {
  padding: 95px 0;
}


/* =========================
   TOP BAR
========================= */

.top-bar {

  background: var(--red);

  color: white;

  font-size: 0.86rem;

  font-weight: 600;
}


.top-bar-content {

  min-height: 44px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 20px;
}


.top-location {
  white-space: nowrap;
}


.top-stock {

  text-align: center;

  flex: 1;

  letter-spacing: 0.2px;
}


.facebook-top {

  width: 25px;
  height: 25px;

  border: 1px solid rgba(255,255,255,0.7);

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  font-weight: 800;

  font-family: Arial;

  transition: 0.2s ease;
}


.facebook-top:hover {

  background: white;

  color: var(--red);
}


/* =========================
   HEADER
========================= */

.header {

  position: sticky;

  top: 0;

  z-index: 1000;

  background: white;

  border-bottom: 1px solid var(--border);

  box-shadow: 0 3px 15px rgba(0,0,0,0.05);
}


.nav {

  min-height: 92px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 35px;
}


/* =========================
   LOGO
========================= */

.logo {

  display: flex;

  align-items: center;

  gap: 12px;

  color: var(--red);

  flex-shrink: 0;
}


.logo-mark {

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: 2.8rem;

  font-weight: 900;

  line-height: 0.8;

  letter-spacing: -8px;

  width: 55px;
}


.logo-text {

  display: flex;

  flex-direction: column;

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: 1.55rem;

  line-height: 0.9;

  letter-spacing: 0.5px;
}


/* =========================
   NAVIGATION
========================= */

nav {

  display: flex;

  align-items: center;

  gap: 38px;
}


nav a {

  position: relative;

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-weight: 700;

  font-size: 1rem;

  color: var(--dark);

  padding: 10px 0;

  transition: color 0.2s ease;
}


nav a::after {

  content: "";

  position: absolute;

  left: 0;
  right: 0;
  bottom: 0;

  height: 3px;

  background: var(--red);

  transform: scaleX(0);

  transition: transform 0.2s ease;
}


nav a:hover {

  color: var(--red);
}


nav a:hover::after {

  transform: scaleX(1);
}


.facebook-icon {

  width: 34px;
  height: 34px;

  border: 2px solid var(--red);

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  color: var(--red);

  font-weight: 900;

  font-family: Arial;

  transition: 0.2s ease;

  flex-shrink: 0;
}


.facebook-icon:hover {

  background: var(--red);

  color: white;
}


.menu-toggle {

  display: none;

  border: none;

  background: transparent;

  color: var(--red);

  font-size: 1.8rem;

  cursor: pointer;
}


/* =========================
   HERO
========================= */

.hero {

  background:
    linear-gradient(
      90deg,
      #fffaf7 0%,
      #fffaf7 42%,
      #f7eee9 60%,
      #ffffff 100%
    );

  overflow: hidden;
}


.hero-content {

  min-height: 480px;

  display: grid;

  grid-template-columns: 0.9fr 1.1fr;

  align-items: stretch;

  gap: 0;
}


.hero-text {

  display: flex;

  flex-direction: column;

  justify-content: center;

  padding: 70px 40px 70px 0;

  position: relative;

  z-index: 2;
}


.hero-text::before {

  content: "";

  position: absolute;

  width: 190px;
  height: 190px;

  background: var(--red);

  border-radius: 0 100% 0 0;

  left: -150px;
  bottom: -110px;

  z-index: -1;
}


.eyebrow {

  color: var(--red);

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: 0.82rem;

  font-weight: 800;

  letter-spacing: 2.5px;

  text-transform: uppercase;

  margin-bottom: 14px;
}


.hero h1 {

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: clamp(3rem, 5vw, 5.2rem);

  line-height: 0.95;

  letter-spacing: 1px;

  color: var(--red);

  margin-bottom: 25px;

  text-transform: uppercase;
}


.hero h1 span {

  display: block;

  color: var(--red);
}


.hero-description {

  max-width: 550px;

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: 1.25rem;

  line-height: 1.55;

  color: #383838;

  margin-bottom: 32px;
}


/* =========================
   HERO IMAGE
========================= */

.hero-image {

  min-height: 480px;

  overflow: hidden;

  position: relative;
}


.hero-image::before {

  content: "";

  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      90deg,
      #fffaf7 0%,
      rgba(255,250,247,0.4) 12%,
      transparent 30%
    );

  z-index: 1;

  pointer-events: none;
}


.hero-image img {

  width: 100%;

  height: 100%;

  object-fit: cover;

  object-position: center;

  transition: transform 0.5s ease;
}


.hero-image:hover img {

  transform: scale(1.02);
}


/* =========================
   BUTTONS
========================= */

.button {

  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 18px;

  width: fit-content;

  padding: 15px 28px;

  border-radius: 4px;

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: 1rem;

  font-weight: 700;

  transition:
    transform 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}


.button:hover {

  transform: translateY(-2px);

  box-shadow:
    0 8px 20px rgba(0,0,0,0.12);
}


.button.primary {

  background: var(--red);

  color: white;
}


.button.primary:hover {

  background: var(--red-dark);
}


.button.light {

  background: white;

  color: var(--red);
}


/* =========================
   FEATURES
========================= */

.features {

  background: white;

  border-bottom: 1px solid var(--border);
}


.features-grid {

  display: grid;

  grid-template-columns:
    repeat(4, 1fr);
}


.feature {

  display: flex;

  align-items: center;

  gap: 18px;

  padding: 30px 25px;

  border-right: 1px solid var(--border);
}


.feature:first-child {

  padding-left: 0;
}


.feature:last-child {

  border-right: none;
}


.feature-icon {

  color: var(--red);

  font-size: 2rem;

  width: 45px;

  flex-shrink: 0;

  text-align: center;
}


.feature h3 {

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: 1.05rem;

  margin-bottom: 2px;
}


.feature p {

  color: var(--muted);

  font-size: 0.85rem;
}


/* =========================
   SECTION HEADINGS
========================= */

.section-heading {

  max-width: 700px;

  margin-bottom: 50px;
}


.section-heading.centered {

  text-align: center;

  margin-left: auto;

  margin-right: auto;
}


.section-heading h2,
.about h2,
.contact h2 {

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  color: var(--red);

  font-size: clamp(2.3rem, 4vw, 3.4rem);

  line-height: 1.05;

  letter-spacing: -1px;

  margin-bottom: 18px;
}


.section-heading.centered h2 {

  display: inline-flex;

  align-items: center;

  gap: 25px;
}


.section-heading.centered h2::before,
.section-heading.centered h2::after {

  content: "";

  width: 100px;

  height: 2px;

  background: var(--red);
}


.section-heading > p:last-child {

  color: var(--muted);

  font-size: 1.05rem;
}


/* =========================
   PRODUCTS
========================= */

.products {

  background: var(--white);
}


.product-grid {

  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  gap: 25px;
}


.product-card {

  background: white;

  border: 1px solid var(--border);

  border-radius: 7px;

  overflow: hidden;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;

  cursor: pointer;
}


.product-card:hover {

  transform: translateY(-5px);

  box-shadow:
    0 14px 35px rgba(0,0,0,0.10);
}


.category-image {

  height: 175px;

  display: flex;

  align-items: center;

  justify-content: center;

  background: #f8f5f2;

  font-size: 4.5rem;

  border-bottom: 1px solid var(--border);
}


.product-card-content {

  position: relative;

  padding: 18px 20px 22px;
}


.product-card h3 {

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: 1.15rem;

  color: var(--dark);

  margin-bottom: 6px;
}


.product-card p {

  color: var(--muted);

  font-size: 0.9rem;

  padding-right: 20px;
}


.card-arrow {

  position: absolute;

  right: 20px;

  bottom: 21px;

  color: var(--red);

  font-size: 1.4rem;

  font-weight: 700;
}


/* =========================
   ABOUT
========================= */

.about {

  background: var(--cream);
}


.about-grid {

  display: grid;

  grid-template-columns: 0.9fr 1.1fr;

  gap: 90px;

  align-items: start;
}


.about h2 {

  color: var(--dark);

  max-width: 500px;
}


.about-text {

  color: #555;

  font-size: 1.05rem;
}


.about-text p {

  margin-bottom: 20px;
}


/* =========================
   CONTACT
========================= */

.contact {

  background: white;
}


.contact-grid {

  display: grid;

  grid-template-columns: 0.8fr 1.2fr;

  gap: 80px;

  align-items: start;
}


.contact-intro h2 {

  color: var(--dark);
}


.contact-intro > p:not(.eyebrow) {

  color: var(--muted);

  font-size: 1.05rem;
}


.contact-details {

  margin-top: 35px;

  display: flex;

  flex-direction: column;

  gap: 22px;
}


.contact-details > div {

  display: flex;

  align-items: flex-start;

  gap: 14px;
}


.contact-details span {

  color: var(--red);

  font-size: 1.3rem;
}


.contact-details p,
.contact-details a {

  color: #555;

  font-size: 0.95rem;
}


.contact-details a:hover {

  color: var(--red);
}


/* =========================
   FORM
========================= */

.contact-form {

  background: var(--cream);

  border: 1px solid var(--border);

  border-radius: 10px;

  padding: 38px;

  box-shadow:
    0 12px 35px rgba(0,0,0,0.05);
}


.form-group {

  margin-bottom: 22px;
}


.form-group label {

  display: block;

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-weight: 700;

  margin-bottom: 8px;

  color: var(--dark);
}


.form-group input,
.form-group textarea {

  width: 100%;

  border: 1px solid #d8d0cb;

  background: white;

  border-radius: 5px;

  padding: 13px 15px;

  font-family: Arial, Helvetica, sans-serif;

  font-size: 0.95rem;

  color: var(--dark);

  outline: none;

  transition:
    border 0.2s ease,
    box-shadow 0.2s ease;
}


.form-group input:focus,
.form-group textarea:focus {

  border-color: var(--red);

  box-shadow:
    0 0 0 3px rgba(201,29,37,0.10);
}


.form-group textarea {

  resize: vertical;

  min-height: 140px;
}


.form-group input::placeholder,
.form-group textarea::placeholder {

  color: #aaa;
}


.form-button {

  border: none;

  cursor: pointer;
}


/* =========================
   VISIT
========================= */

.visit {

  background: #f7f7f7;
}


.visit-grid {

  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 22px;
}


.info-card {

  background: white;

  padding: 30px;

  border-radius: 8px;

  border: 1px solid var(--border);
}


.info-icon {

  display: block;

  color: var(--red);

  font-size: 2rem;

  margin-bottom: 15px;
}


.info-card h3 {

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  color: var(--dark);

  font-size: 1.2rem;

  margin-bottom: 10px;
}


.info-card p {

  color: var(--muted);
}


.text-link {

  display: inline-block;

  color: var(--red);

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-weight: 700;

  margin-top: 15px;
}


.text-link:hover {

  color: var(--red-dark);
}


.hours > div {

  display: flex;

  flex-direction: column;

  padding: 10px 0;

  border-bottom: 1px solid var(--border);
}


.hours > div:last-child {

  border-bottom: none;
}


.hours span {

  color: var(--muted);

  font-size: 0.9rem;
}


.hours strong {

  color: var(--dark);
}


/* =========================
   CTA
========================= */

.cta {

  background: var(--red);

  color: white;

  text-align: center;

  padding: 80px 0;
}


.cta .eyebrow {

  color: white;

  opacity: 0.85;
}


.cta h2 {

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: clamp(2.2rem, 5vw, 3.5rem);

  line-height: 1.1;

  margin-bottom: 12px;
}


.cta p:not(.eyebrow) {

  margin-bottom: 28px;

  color: #ffe8e8;
}


/* =========================
   FOOTER
========================= */

.footer {

  background: var(--dark);

  color: white;

  padding: 50px 0 20px;
}


.footer-content {

  display: grid;

  grid-template-columns:
    1fr 1fr auto;

  align-items: center;

  gap: 30px;

  padding-bottom: 35px;

  border-bottom: 1px solid #444;
}


.footer-logo {

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  color: white;

  font-size: 1.5rem;

  font-weight: 800;

  margin-bottom: 5px;
}


.footer p {

  color: #aaa;
}


.footer-social {

  display: flex;

  justify-content: flex-end;
}


.facebook-footer {

  width: 38px;
  height: 38px;

  border: 2px solid var(--red);

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  color: var(--red);

  font-weight: 900;

  font-family: Arial;

  transition: 0.2s ease;
}


.facebook-footer:hover {

  background: var(--red);

  color: white;
}


.copyright {

  text-align: center;

  color: #777;

  font-size: 0.85rem;

  padding-top: 20px;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 950px) {

  nav {

    gap: 20px;
  }


  .product-grid {

    grid-template-columns:
      repeat(2, 1fr);
  }


  .hero-content {

    grid-template-columns:
      1fr 1fr;
  }

}


@media (max-width: 800px) {

  html {

    scroll-padding-top: 80px;
  }


  .top-stock {

    display: none;
  }


  .top-bar-content {

    justify-content: space-between;
  }


  .nav {

    min-height: 75px;
  }


  .logo-text {

    font-size: 1.25rem;
  }


  .logo-mark {

    font-size: 2.2rem;

    width: 45px;
  }


  .menu-toggle {

    display: block;

    order: 3;
  }


  .facebook-icon {

    margin-left: auto;
  }


  nav {

    position: absolute;

    top: 75px;

    left: 0;

    right: 0;

    display: none;

    flex-direction: column;

    align-items: stretch;

    gap: 0;

    background: white;

    border-bottom: 1px solid var(--border);

    box-shadow:
      0 10px 20px rgba(0,0,0,0.08);
  }


  nav.active {

    display: flex;
  }


  nav a {

    padding: 16px 5%;

    border-bottom: 1px solid var(--border);
  }


  nav a::after {

    display: none;
  }


  .hero-content {

    grid-template-columns: 1fr;
  }


  .hero-text {

    padding:
      75px 0 50px;
  }


  .hero h1 {

    font-size: 3.8rem;
  }


  .hero-image {

    min-height: 350px;

    margin-left: -4.2%;

    margin-right: -4.2%;
  }


  .hero-image::before {

    display: none;
  }


  .features-grid {

    grid-template-columns:
      1fr 1fr;
  }


  .feature {

    border-bottom: 1px solid var(--border);
  }


  .feature:nth-child(2) {

    border-right: none;
  }


  .feature:nth-child(3) {

    padding-left: 0;
  }


  .product-grid {

    grid-template-columns:
      1fr 1fr;
  }


  .about-grid,
  .contact-grid {

    grid-template-columns: 1fr;

    gap: 45px;
  }


  .visit-grid {

    grid-template-columns: 1fr;
  }


  .footer-content {

    grid-template-columns: 1fr;
  }


  .footer-social {

    justify-content: flex-start;
  }

}


@media (max-width: 520px) {

  .section {

    padding: 70px 0;
  }


  .logo-mark {

    display: none;
  }


  .logo-text {

    font-size: 1.15rem;
  }


  .facebook-icon {

    width: 30px;
    height: 30px;

    font-size: 0.9rem;
  }


  .hero h1 {

    font-size: 3.1rem;
  }


  .hero-description {

    font-size: 1.1rem;
  }


  .features-grid {

    grid-template-columns: 1fr;
  }


  .feature,
  .feature:first-child,
  .feature:nth-child(3) {

    padding-left: 0;

    padding-right: 0;

    border-right: none;
  }


  .product-grid {

    grid-template-columns: 1fr;
  }


  .section-heading.centered h2 {

    display: block;
  }


  .section-heading.centered h2::before,
  .section-heading.centered h2::after {

    display: none;
  }


  .contact-form {

    padding: 25px;
  }

}
