body {
	margin: 0;
    font-family: Arial, sans-serif;
    background-color: #F5EFE6;
    color: #3E4E3C;
}

.navbar {
  position: sticky;
  top: 0;
  background-color: rgba(245, 239, 230, 0.95);
  padding: 0 40px;
  z-index: 1000;
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #D8C3A5;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 75px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 48px;
    width: auto;
    display: block;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
}

.nav-item a {
  text-decoration: none;
  color: #3E4E3C;
  font-size: 17px;
  padding: 10px 0;
  display: block;
  transition: 0.3s ease;
}

.nav-item a:hover {
  color: #7A8F72;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #F5EFE6;
    display: none;
    padding: 25px;
    min-width: 260px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    border: 1px solid #D8C3A5;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-section {
  margin-bottom: 18px;
}

.dropdown-section strong {
    display: block;
    margin-bottom: 8px;
    color: #8B6B4F;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.dropdown-section a {
    display: block;
    font-size: 14px;
    color: #3E4E3C;
    margin: 5px 0;
    transition: 0.3s ease;
}

.dropdown-section a:hover {
    color: #D8A7A1;
    padding-left: 5px;
}

/* HERO SECTION FOR HOMEPAGE ----------------------------------------------------------------------------------- */

.hero {
    position: relative;
    height: 90vh;
    overflow: hidden;
}

/* FULL IMAGE BACKGROUND */

.hero-image {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* CONTENT BOX */

.hero-content {
    position: relative;
    z-index: 2;

    width: 45%;
    margin-left: 70px;
	
	top: 44%;
    transform: translateY(-44%);

    background: rgba(62, 78, 60, 0.72);

    backdrop-filter: blur(6px);

    color: #F5EFE6;

    padding: 50px;

    border-radius: 24px;
}

/* HERO TEXT */

.hero-content h1 {
    font-size: 54px;
    line-height: 1.1;
    margin-bottom: 25px;
    max-width: 500px;
}

.hero-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 35px;
    max-width: 500px;
    color: #E8DED0;
}

/* BUTTONS */

.hero-buttons {
    display: flex;
    gap: 18px;
}

.btn {
    text-decoration: none;
    padding: 14px 24px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: bold;
    transition: 0.3s ease;
}

.btn.primary {
    background-color: #7A8F72;
    color: white;
}

.btn.primary:hover {
    background-color: #6A7D63;
    transform: translateY(-2px);
}

/* FOOD BY DOG AGE SECTION */


.food-categories {
    background-color: #7A8F72;

    padding: 90px 40px;

    text-align: center;
}

.food-categories h2 {
    font-size: 42px;

    color: #F5EFE6;

    margin-bottom: 60px;
}

/* ROW CONTAINER */

.category-container {
    display: flex;

    justify-content: center;

    gap: 60px;

    flex-wrap: wrap;
}

/* CLICKABLE CARD */

.category-card {
    text-decoration: none;

    transition: 0.35s ease;

    color: #F5EFE6;
}

.category-card:hover {
    transform: translateY(-10px);
}

/* CIRCLE IMAGE */

.circle-image {
    width: 180px;
    height: 180px;

    border-radius: 50%;

    background-color: #F5EFE6;

    display: flex;
    justify-content: center;
    align-items: center;

    overflow: hidden;

    margin-bottom: 20px;

    box-shadow: 0 10px 25px rgba(0,0,0,0.12);

    transition: 0.35s ease;
}

.category-card:hover .circle-image {
    background-color: #D8A7A1;

    transform: scale(1.03);
}

.circle-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;
	
}

/* LABELS */

.category-card h3 {
    font-size: 24px;

    font-weight: bold;

    margin: 0;

    letter-spacing: 0.5px;
}

/* NATURAL FOOD AD SECTION */

.natural-section {
    background-color: white;

    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 80px;

    padding: 110px 80px;

    flex-wrap: wrap;
}

/* LEFT SIDE */

.natural-content {
    flex: 1;
    min-width: 300px;
}

.natural-content h2 {
    font-size: 52px;

    line-height: 1.1;

    color: #3E4E3C;

    margin-bottom: 30px;

    max-width: 500px;
}

.natural-content p {
    font-size: 18px;

    line-height: 1.8;

    color: #6B5B4D;

    max-width: 600px;
}

/* RIGHT SIDE VIDEO */

.natural-video {
    flex: 1;
    min-width: 320px;
}

.natural-video video {
    width: 100%;

    border-radius: 24px;

    object-fit: cover;

    box-shadow: 0 12px 30px rgba(0,0,0,0.12);

    display: block;
}

/* FOOTER */

.footer {
    background-color: #F5EFE6;
    border-top: 1px solid #D8C3A5;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 30px 60px;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-logo img {
    height: 42px;
    width: auto;
    display: block;
}

.footer-left p {
    margin: 0;
    font-size: 14px;
    color: #8B6B4F;
}

.footer-right a {
    text-decoration: none;
    color: #3E4E3C;
    font-size: 15px;
    font-weight: 500;
    transition: 0.3s ease;
}

.footer-right a:hover {
    color: #7A8F72;
}

/* PRODUCT PAGE STARTS HERE ----------------------------------------------------------------------- */


.product-page {
    display: flex;
    gap: 50px;
    padding: 80px;
    background-color: #FCFAF7;
}

.add-cart-btn {
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.add-cart-btn.added {
    background-color: #D8A7A1;
    color: #3E4E3C;
    transform: scale(1.05);
}

/* LEFT SIDEBAR */

.product-sidebar {
    width: 230px;
    background-color: white;
    border: 1px solid #D8C3A5;
    border-radius: 24px;
    padding: 30px;
    height: fit-content;
    position: sticky;
    top: 110px;
}

.product-sidebar h2 {
    font-size: 24px;
    color: #3E4E3C;
    margin-bottom: 25px;
}

.product-sidebar a {
    display: block;
    text-decoration: none;
    color: #6B5B4D;
    font-size: 16px;
    margin-bottom: 16px;
    transition: 0.3s ease;
}

.product-sidebar a:hover {
    color: #7A8F72;
    padding-left: 6px;
}

.product-sidebar hr {
    border: none;
    border-top: 1px solid #D8C3A5;
    margin: 25px 0;
}

/* RIGHT CATALOG */

.product-catalog {
    flex: 1;
}

.catalog-heading {
    margin-bottom: 50px;
}

.catalog-heading h1 {
    font-size: 52px;
    color: #3E4E3C;
    margin-bottom: 15px;
}

.catalog-heading p {
    font-size: 18px;
    color: #6B5B4D;
    max-width: 650px;
    line-height: 1.7;
}

/* PRODUCT GRID */

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

/* PRODUCT CARD */

.product-card {
    background-color: white;
    border-radius: 28px;
    padding: 35px;
    text-align: center;
    border: 1px solid #D8C3A5;
    transition: 0.35s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 14px 35px rgba(0,0,0,0.10);
}

.product-card img {
    width: 75%;
    height: 260px;
    object-fit: contain;
    margin-bottom: 25px;
}

.product-card h3 {
    font-size: 24px;
    color: #3E4E3C;
    margin-bottom: 12px;
}

.product-card p {
    font-size: 15px;
    color: #6B5B4D;
    line-height: 1.6;
    margin-bottom: 18px;
}

.product-card span {
    display: block;
    font-size: 18px;
    font-weight: bold;
    color: #8B6B4F;
    margin-bottom: 20px;
}

.product-btn {
    display: inline-block;
    text-decoration: none;
    background-color: #7A8F72;
    color: white;
    padding: 12px 22px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: bold;
    transition: 0.3s ease;
}

.product-btn:hover {
    background-color: #3E4E3C;
}
/* CHECKOUT BUTTON */

.checkout-section {
    margin-top: 60px;

    display: flex;

    justify-content: flex-end;
}

.checkout-btn {
    text-decoration: none;

    background-color: #3E4E3C;

    color: #F5EFE6;

    padding: 16px 34px;

    border-radius: 40px;

    font-size: 15px;

    font-weight: bold;

    transition: 0.3s ease;
}

.checkout-btn:hover {
    background-color: #7A8F72;

    transform: translateY(-2px);
}

/* ABOUT PAGE STARTS OVER HERE ------------------------------------------------------------------------ */

.about-page {
    background-color: #FCFAF7;
    padding: 90px 80px;
}

.about-intro {
    text-align: center;
    max-width: 1100px;
    margin: 0 auto 80px auto;
}

.about-intro h1 {
    font-size: 52px;
    line-height: 1.1;
    color: #3E4E3C;
    margin-bottom: 50px;
}

.about-intro img {
    width: 100%;
    max-width: 1000px;

    display: block;

    margin: 0 auto;
}

.about-text {
    max-width: 850px;
    margin: 0 auto;
    background-color: white;
    border: 1px solid #D8C3A5;
    border-radius: 28px;
    padding: 55px;
}

.about-text h2 {
    font-size: 34px;
    color: #3E4E3C;
    margin-bottom: 25px;
}

.about-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #6B5B4D;
    margin-bottom: 22px;
}

/* ABOUT HERO SECTION */

.about-hero {
    position: relative;

    height: 60vh;

    overflow: hidden;
}

/* BACKGROUND IMAGE */

.about-hero-image {
    position: absolute;

    inset: 0;

    z-index: 1;
}

.about-hero-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;

    display: block;
}

/* GLASS BOX */

.about-hero-content {
    position: relative;

    z-index: 2;

    width: 40%;

    margin-left: 70px;

    top: 50%;

    transform: translateY(-50%);

    background: rgba(62, 78, 60, 0.72);

    backdrop-filter: blur(6px);

    color: #F5EFE6;

    padding: 45px;

    border-radius: 24px;
}

/* TEXT */

.about-hero-content h1 {
    font-size: 52px;

    line-height: 1.1;

    margin-bottom: 20px;
}

.about-hero-content p {
    font-size: 17px;

    line-height: 1.8;

    color: #E8DED0;
}

/* CONTACT PAGE STARTS OVER HERE ------------------------------------------------------------------------ */

.contact-page {
    background-color: #FCFAF7;
    padding: 100px 30px;
}

.contact-intro {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 50px auto;
}

.contact-intro h1 {
    font-size: 52px;
    color: #3E4E3C;
    margin-bottom: 25px;
}

.contact-intro p {
    font-size: 18px;
    line-height: 1.8;
    color: #6B5B4D;
}

.contact-intro strong {
    color: #3E4E3C;
}

.contact-form-section {
    max-width: 650px;
    margin: 0 auto;
}

.contact-form {
    background-color: white;
    border: 1px solid #D8C3A5;
    border-radius: 28px;
    padding: 45px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid #D8C3A5;
    border-radius: 14px;
    font-family: inherit;
    font-size: 15px;
    color: #3E4E3C;
    box-sizing: border-box;
}

.contact-form textarea {
    min-height: 160px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #7A8F72;
}

.contact-form button {
    background-color: #7A8F72;
    color: white;
    border: none;
    padding: 15px 24px;
    border-radius: 40px;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s ease;
}

.contact-form button:hover {
    background-color: #3E4E3C;
    transform: translateY(-2px);
}