/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: #1a1a1a;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: bold;
    color: #b8860b; /* Gold color */
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #b8860b;
}

/* Hero Section */
.hero {
    height: 80vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1504674900247-0877df9cc836?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #fff;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: #b8860b;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: background 0.3s, transform 0.3s;
}

.btn:hover {
    background-color: #966d09;
    transform: translateY(-3px);
}

/* About Section */
.about {
    padding: 100px 0;
    text-align: center;
    background-color: #fff;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

.about h2::after {
    content: '';
    width: 80px;
    height: 3px;
    background: #b8860b;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.about p {
    max-width: 800px;
    margin: 0 auto 20px;
    font-size: 1.1rem;
    color: #666;
}

/* Products Section */
.products {
    padding: 100px 0;
    background-color: #f4f4f4;
}

.products h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.product-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-info {
    padding: 25px;
}

.product-info h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #b8860b;
}

.specs {
    font-size: 0.9rem;
    font-weight: 600;
    color: #888;
    margin-bottom: 5px;
}

.shelf-life {
    font-size: 0.9rem;
    color: #b8860b;
    margin-bottom: 15px;
    font-style: italic;
}

.description {
    font-size: 0.95rem;
    color: #555;
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

footer p {
    margin-bottom: 10px;
}

.footer-note {
    font-size: 0.8rem;
    color: #888;
    margin-top: 20px;
}
/* Responsive Design */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        padding: 15px 20px;
    }

    .logo {
        margin-bottom: 15px;
        text-align: center;
        width: 100%;
    }

    .nav-links {
        display: flex;
        justify-content: center;
        width: 100%;
        padding: 0;
    }

    .nav-links li {
        margin: 0 10px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
}




/* Read More Button */
.read-more-btn{
    margin-top:15px;
    background:#b8860b;
    color:#fff;
    border:none;
    padding:10px 20px;
    border-radius:30px;
    cursor:pointer;
    font-weight:600;
    transition:.3s;
}

.read-more-btn:hover{
    background:#966d09;
}

/* Modal */
.modal{
    display:none;
    position:fixed;
    z-index:9999;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.75);
    overflow-y:auto;
}

.modal-content{
    background:#fff;
    margin:5% auto;
    padding:40px;
    width:90%;
    max-width:800px;
    border-radius:15px;
    position:relative;
    animation:fadeIn .3s ease;
}

.modal-content h2{
    color:#b8860b;
    margin-bottom:20px;
}

.modal-content p{
    line-height:1.9;
    color:#555;
}

.close-modal{
    position:absolute;
    right:20px;
    top:15px;
    font-size:35px;
    cursor:pointer;
}

@keyframes fadeIn{
    from{
        opacity:0;
        transform:translateY(20px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@media(max-width:768px){
    .modal-content{
        padding:25px;
        margin:15% auto;
    }
}



footer p strong{
    color:#b8860b;
}

footer hr{
    opacity:0.2;
}

footer a{
    color:#b8860b;
    text-decoration:none;
}