/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body */
body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #FFD700;
    flex-wrap: wrap;
}

header .logo img {
    height: 180px; /* Bigger logo */
    width: auto;
}

nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

@media(max-width:768px){
    header {
        justify-content: center;
        flex-direction: column;
        text-align: center;
    }
    nav {
        margin-top: 15px;
    }
}

/* Hero Section */
.hero {
    background-image: url('../images/banner.jpg');
    background-size: cover;
    background-position: center;
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
    padding: 0 20px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.4);
}

.hero-text {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero h2 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 30px;
}

/* Button */
.btn {
    background: #FF9900;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.btn:hover {
    background: #e68a00;
    transform: scale(1.05);
}

/* Sections */
section {
    padding: 60px 20px;
    text-align: center;
}

/* Products */
.products {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Product Card Layout */
.product-card {
    width: 250px;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 10px;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* evenly space content */
    align-items: center; /* center all elements */
    text-align: center;
}

.product-card h3,
.product-card p {
    margin: 10px 0; /* small spacing between title and price */
}

.product-card a.btn {
    margin-top: 15px; /* space above button */
}

.product-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.product-card img {
    width: 100%;
    border-radius: 10px;
}

/* Tables */
/* PREMIUM NUTRITION TABLE */

table {
    width: 90%;
    max-width: 850px;
    margin: 40px auto;
    border-collapse: collapse;
    overflow: hidden;

    border-radius: 20px;

    background: rgba(255,255,255,0.95);

    box-shadow:
        0 10px 30px rgba(0,0,0,0.12);

    backdrop-filter: blur(10px);
}

/* Table Header */

th {
    background: linear-gradient(
        to right,
        #ffcc00,
        #ff9900
    );

    color: white;

    font-size: 1.1rem;

    letter-spacing: 1px;

    padding: 18px;

    text-transform: uppercase;
}

/* Table Cells */

td {
    padding: 18px;

    font-size: 1rem;

    color: #444;

    border-bottom: 1px solid #eee;

    transition: 0.3s;
}

/* Alternate Rows */

tr:nth-child(even) {
    background: #fffaf0;
}

/* Hover Effect */

tr:hover td {
    background: #fff3d4;

    transform: scale(1.01);
}

/* First Column */

td:first-child {
    font-weight: 600;
    color: #222;
}

/* Last Row */

tr:last-child td {
    border-bottom: none;
}

/* Mobile Responsive */

@media(max-width:768px){

    table {
        width: 100%;
    }

    th,
    td {
        padding: 12px;
        font-size: 0.9rem;
    }

}
}
/* Contact Section */
#contact {
    padding: 60px 20px;
    text-align: center;
    background-color: #f9f9f9; /* light background for contrast */
}

#contact h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

#contact p {
    margin-bottom: 20px; /* space between paragraphs */
    font-size: 1.1rem;
    color: #555;
}

#contact a.btn {
    display: inline-block;
    margin: 20px auto 0 auto; /* space above button and center it */
    padding: 12px 30px;
    background: #FF9900;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

#contact a.btn:hover {
    background: #e68a00;
    transform: scale(1.05);
}

#contact a {
    color: #FF9900; /* link color for email/social links */
    text-decoration: none;
}
/* TRUST SECTION */
.trust-section {
    background: #fff8e6;
}

.trust-container {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.trust-card {
    width: 280px;
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.trust-card:hover {
    transform: translateY(-10px);
}

.trust-card img {
    width: 80px;
    margin-bottom: 20px;
}

.trust-card h3 {
    margin-bottom: 15px;
    color: #333;
}

.contact-box {
    max-width: 700px;
    margin: auto;
}

.contact-box p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* PROCESS SECTION */
.process-section {
    background: #fff;
}

.process-container {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.process-box {
    width: 300px;
    background: #fff8e6;
    padding: 30px 20px;
    border-radius: 15px;
    transition: 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.process-box:hover {
    transform: translateY(-10px);
}

.process-box h3 {
    margin-bottom: 15px;
    color: #ff8800;
}

/* PREMIUM GOLD HERO TEXT */

.hero h2 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;

    background: linear-gradient(
        to right,
        #fff8c5 0%,
        #ffd700 35%,
        #ffb300 70%,
        #fff3a0 100%
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    text-shadow:
        2px 2px 15px rgba(0,0,0,0.35);

    margin-bottom: 20px;
}

.hero p {
    font-size: 1.3rem;
    color: #ffe082;

    text-shadow:
        1px 1px 10px rgba(0,0,0,0.75);

    max-width: 800px;
    margin: auto auto 30px auto;
}

/* Mobile Responsive */
@media(max-width:768px){

    .hero h2{
        font-size: 2.4rem;
    }

    .hero p{
        font-size: 1rem;
    }

}

/* NUTRITION BOX */

.nutrition-box {
    background: linear-gradient(
        to bottom right,
        #fffdf7,
        #fff3cc
    );

    padding: 50px 20px;

    border-radius: 25px;

    max-width: 1000px;

    margin: auto;

    box-shadow:
        0 10px 35px rgba(0,0,0,0.08);
}

.nutrition-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 35px;
    background: linear-gradient(to right, #FFD700, #ffb300);
    color: #111;
    font-weight: bold;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s;
    box-shadow:
                0 5px 20px rgba(255,215,0,0.35),
                0 0 15px rgba(255,215,0,0.18);
}

.nutrition-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255,215,0,0.5);
}

/* =========================
   MOBILE RESPONSIVE DESIGN
========================= */

@media screen and (max-width: 992px){

    header{
        padding:15px 25px;
    }

    .logo img{
        height:70px;
    }

    nav a{
        margin-left:16px;
        font-size:0.95rem;
    }

    .hero h1{
        font-size:3.2rem;
    }

    .hero p{
        font-size:1.1rem;
    }

}

/* MOBILE */

@media screen and (max-width:768px){

    body{
        overflow-x:hidden;
    }

    header{

        flex-direction:column;

        justify-content:center;

        padding:15px 15px;

        text-align:center;
    }

    .logo img{
        height:65px;
        margin-bottom:10px;
    }

    nav{

        display:flex;

        flex-wrap:wrap;

        justify-content:center;

        gap:12px;

        margin-top:10px;
    }

    nav a{

        margin-left:0;

        font-size:0.9rem;
    }

    /* HERO */

    .hero{

        height:auto;

        min-height:100vh;

        padding-top:180px;

        padding-bottom:80px;
    }

    .hero-text{
        width:100%;
    }

    .hero h1{

        font-size:2.5rem;

        line-height:1.2;

        margin-bottom:18px;
    }

    .hero p{

        font-size:1rem;

        line-height:1.8;

        margin-bottom:30px;
    }

    .btn{

        width:100%;

        max-width:320px;

        text-align:center;

        padding:15px 20px;

        font-size:1rem;
    }

    /* SECTIONS */

    section{
        padding:70px 18px;
    }

    .section-title{
        margin-bottom:40px;
    }

    .section-title h2{

        font-size:2rem;

        line-height:1.3;
    }

    .section-title p{
        font-size:0.95rem;
    }

    /* ABOUT */

    .about-container p{
        font-size:1rem;
    }

    /* GRIDS */

    .process-grid,
    .trust-grid,
    .products-grid,
    .nutrition-grid{

        grid-template-columns:1fr;

        gap:25px;
    }

    /* CARDS */

    .process-card,
    .trust-card,
    .product-card,
    .nutrition-card{

        border-radius:22px;
    }

    .product-card img,
    .nutrition-card img{

        height:220px;
    }

    .product-content,
    .nutrition-content{

        padding:24px;
    }

    .product-content h3,
    .nutrition-content h3{

        font-size:1.5rem;
    }

    .price{
        font-size:1.3rem;
    }

    /* TRUST */

    .trust-card img{
        width:90px;
    }

    /* CONTACT */

    .contact-box{

        padding:35px 20px;

        border-radius:22px;
    }

    .contact-box p{

        font-size:1rem;

        line-height:1.8;
    }

    /* FOOTER */

    footer{

        padding:25px 15px;

        font-size:0.95rem;
    }

}

/* SMALL DEVICES */

@media screen and (max-width:480px){

    .hero h1{
        font-size:2rem;
    }

    .hero p{
        font-size:0.95rem;
    }

    .section-title h2{
        font-size:1.8rem;
    }

    .btn{

        font-size:0.95rem;

        padding:14px 18px;
    }

    .product-card img,
    .nutrition-card img{
        height:200px;
    }

}