html {
    scroll-behavior: smooth;
}

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    margin: 0;
    background-color: #f7f1e8;
    color: #111111;
    font-family: 'Inter', sans-serif;
}

body {
    padding-top: 80px;
}

/* NAVBAR */
/* NAVBAR */
nav {
    position: fixed; /* changed from absolute */
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;

    background-color: rgba(247, 241, 232, 0.9); /* beige */
    backdrop-filter: blur(6px); /* luxury glass effect */
}

/* LOGO */
.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 600;
    color: #111; /* changed to dark */
    margin: 0;
    letter-spacing: 1px;
}

/* NAV LINKS */
nav ul {
    display: flex;
    gap: 35px;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li a {
    text-decoration: none;
    color: #111; /* changed to dark */
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* HOVER EFFECT */
nav ul li a:hover {
    opacity: 0.6;
}

/* HERO */
.hero {
    position: relative;
    min-height: 95vh;
    background-image: url("cellentialsN1image.JPG");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 80px;
}

.hero-text {
    max-width: 500px;
    color: #f7f1e8;
}

.small-text {
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 108px;
    line-height: 0.9;
    margin: 0 0 20px;
}

.description {
    font-size: 18px;
    line-height: 1.8;
    max-width: 420px;
    margin-bottom: 30px;
}

.hero-button {
    display: inline-block;
    padding: 16px 32px;
    background-color: #e7dccd;
    color: #111;
    text-decoration: none;
}

/* FEATURES */
.features {
    background-color: #efe5d8;
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 40px 30px;
    flex-wrap: wrap;
}

.feature {
    text-align: center;
    max-width: 260px;
}

.feature h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
}

.feature p {
    color: #4c433b;
}

/* PRODUCT */
.product {
    padding: 100px 70px;
}

.product-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 70px;
    flex-wrap: wrap;
}

.product-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 6px;
}

.product-info {
    max-width: 450px;
}

.product-info h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 72px;
}

.price {
    font-size: 24px;
}

.product-description {
    color: #4c433b;
}

/* ABOUT */
.about {
    text-align: center;
    padding: 110px 30px;
}

.about h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 72px;
}

/* ORDER */
.order {
    background-color: #111;
    color: #f7f1e8;
    text-align: center;
    padding: 60px 20px;
}

form {
    max-width: 460px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

input {
    padding: 16px;
    border: 1px solid #8e7f70;
    background: transparent;
    color: #f7f1e8;
}

input::placeholder {
    color: #b8ab9b;
}

button {
    padding: 16px;
    background-color: #e7dccd;
    color: #111;
    border: none;
}

/* FOOTER */
.footer {
    background: #111;
    color: #eee;
    padding: 60px 40px;
}

.footer {
  background-color: #111;
  color: #eee;
  padding: 80px 60px;
}

.footer-container {
  display: flex;
  justify-content: space-between; /* spreads columns like Coursera */
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-column {
  flex: 1;
  min-width: 180px;
}

.footer-column h3,
.footer-column h4 {
  margin-bottom: 15px;
  font-weight: 500;
}

.footer-column p {
  color: #aaa;
  line-height: 1.6;
  margin: 0;
}

.footer-column a {
  display: block;
  color: #bbb;
  text-decoration: none;
  margin-bottom: 8px;
  font-size: 14px;
}

.footer-column a:hover {
  color: #fff;
}

/* bottom text */
.footer-bottom {
  margin-top: 60px;
  text-align: center;
  font-size: 13px;
  color: #777;
}
.footer-column a {
  display: block;
}

/* CONTACT PAGE */
.contact {
    max-width: 700px;
    margin: 120px auto;
    padding: 0 20px;
    text-align: left;
}

.contact h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid #cfc6bb;
    background: transparent;
    color: #111;
}

.contact-form textarea {
    height: 140px;
}

.contact-form button {
    background: #111;
    color: #f7f1e8;
}
.order-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 16px 40px;
  background-color: #e7dccd;
  color: #111111;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  transition: 0.3s ease;
}

.order-btn:hover {
  background-color: transparent;
  color: #e7dccd;
  border: 1px solid #e7dccd;

}
.whatsapp-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 16px 40px;
  background-color: transparent;
  color: #111;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid #111;
  transition: 0.3s ease;
}

.whatsapp-btn:hover {
  background-color: #111;
  color: #f7f1e8;
}

.contact-info {
  margin-top: 20px;
}

.contact p {
  color: #5c5146;
  line-height: 1.8;
}
.policy {
  padding: 140px 20px 100px;
  background-color: #f7f1e8;
}

.policy-container {
  max-width: 700px;
  margin: 0 auto;
}

.policy h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  margin-bottom: 50px;
}

.policy-block {
  border-top: 1px solid #ddd;
  padding: 25px 0;
}

.policy-block h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.policy-block p {
  font-size: 16px;
  line-height: 1.9;
  color: #4c433b;
}
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 55px;
  height: 55px;
  z-index: 1000;
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: 0.3s ease;
}

.whatsapp-float img:hover {
  transform: scale(1.1);
}

/* MOBILE */
@media (max-width: 768px) {

    nav {
        padding: 20px;
        flex-direction: column;
    }

    .hero-content {
        padding: 0 20px;
        text-align: center;
    }

    .hero h1 {
        font-size: 60px;
    }

    .product {
        padding: 50px 20px;
    }

    .product-container {
        flex-direction: column;
        text-align: center;
    }

    .product-info h2 {
        font-size: 42px;
    }

    .about h2,
    .order h2 {
        font-size: 40px;
    }

    .features {
        flex-direction: column;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    
}
