/* Reset & Overflow Fix */
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* Color Variables */
:root {
  --primary-teal: #00a8a8;
  --secondary-yellow: #ffda2d;
  --light-grey: #f5f5f5;
  --dark-text: #333;
  --white: #fff;
}

/* Custom Fonts */
@font-face {
  font-family: glacial-r;
  src: url(Fonts/glacial-indifference/GlacialIndifference-Regular.otf);
}
@font-face {
  font-family: league-r;
  src: url(Fonts/league-spartan/LeagueSpartan-Bold.otf);
}

/* Top Contact Info */
.contact-info {
  font-family: glacial-r;
  font-size: 16px;
  color: #4d4d4d;
  gap: 30px;
  padding: 10px;
}

/* Navbar */
.logo {
  width: 100px;
}
.brand-name {
  font-family: glacial-r;
  font-size: 22px;
  color: #000;
}
.navbar-nav .nav-link {
  font-family: glacial-r;
  font-size: 18px;
  color: #4d4d4d;
  margin: 0 10px;
}
.navbar-nav .nav-link:hover {
  color: var(--primary-teal);
}
.btn-teal {
  font-family: glacial-r;
  background-color: var(--primary-teal) !important;
  color: #fff !important;
  border-radius: 50px !important;
  padding: 4px 24px !important;
  font-size: 18px !important;
  margin-left: 20px;
}
.btn-teal:hover {
  background-color: #00796b !important;
}

/* Page Title */
.page-title-section {
  padding: 60px 0;
  text-align: center;
}
.page-title-section h1 {
  font-family: league-r;
  font-size: 38px;
  color: #4d4d4d;
}

/* Product Grid Section */
.product-grid-section {
  background: var(--light-grey);
  padding: 40px 0;
}
.section-heading {
  font-family: league-r;
  font-size: 38px;
  text-align: center;
  color: #4d4d4d;
  margin-bottom: 10px;
}

/* Product Card */
.product-card {
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.3s, box-shadow 0.3s;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
}
.product-image {
  position: relative;
  padding-top: 75%;
  overflow: hidden;
}
.product-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-pa {
  font-size: 18px;
  color: #555;
  max-width: 800px;
  margin: 10px auto 40px;
  text-align: center;
  line-height: 1.6;
  font-family: glacial-r;
}

/* Row spacing */
.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

/* Reusable Container */
.container-contact {
  width: 100%;
  max-width: 1200px;
  padding: 0 15px;
  margin: 0 auto;
}

/* Footer */
.perfection-section {
  background-color: #857f6d;
  padding: 80px 0;
  color: white;
}
.section1-title,
.contact-title {
  font-family: league-r;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
}
.contact-title {
  margin-top: 15px;
  margin-left: 100px;
}
.section1-text {
  font-family: glacial-r;
  font-size: 18px;
  font-weight: 400;
  max-width: 600px;
  line-height: 1.6;
}
.contact-info {
  border-left: 2px solid rgba(255, 255, 255, 0.4);
  padding-left: 40px;
}
.contact-details {
  list-style: none;
  padding: 0;
  margin-left: 100px;
  text-align: left;
}
.contact-details li {
  font-family: glacial-r;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  margin-bottom: 10px;
  color: #ffffff;
}
.contact-details i {
  font-size: 18px;
  color: #ffffff;
  width: 24px;
  text-align: left;
}
.footer {
  font-family: glacial-r;
  padding: 20px 0;
  background-color: white;
  font-size: 14px;
}
.footer p {
  margin: 0;
  color: black;
}

/* Responsive Design */
@media (max-width: 768px) {
  .row {
    flex-direction: column;
    text-align: center;
  }
  .contact-title {
    text-align: center;
    margin: 0;
  }
  .text-content {
    margin-bottom: 30px;
  }
  .contact-details li {
    text-align: left;
    margin-left: 30px;
  }
  .contact-info {
    border-left: none;
    padding-left: 0;
    margin-top: 20px;
  }
  .contact-details {
    margin-left: 0;
  }
}
