* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

:root {
    --primary-color: #e74c3c;
    --secondary-color: #2c3e50;
    --text-color: #333;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #f5f5f5;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: white;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: 'Playfair Display', serif;
    color: var(--text-color);
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.p-icon {
    width: 2.5rem;
    height: 2.5rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.logo:hover .p-icon {
    transform: translateY(-3px);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
    position: relative;
    padding-left: 1rem;
}

.logo-text::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    height: 80%;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-color) 30%, transparent 100%);
    transform: translateY(-50%);
}

.brand-name {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    background: linear-gradient(to right, var(--primary-color), #5a4132);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.sub-brand {
    font-size: 0.9rem;
    letter-spacing: 4px;
    color: var(--primary-color);
    margin-top: -3px;
}
/* Optional: Add if using Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&display=swap');
.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    transition: color 0.3s;
}

.menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 1rem;
    position: relative;
    z-index: 1000;
}

.menu-btn .close {
    display: none;
}

.nav-links a:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .menu-btn {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        background: var(--primary-color); 
        flex-direction: column;
        padding: 2rem;
        transition: right 0.3s ease-in-out;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
        z-index: 999;
        gap: 1.5rem; 
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        color: white; 
        padding: 1rem;
        border-radius: 4px;
        transition: all 0.3s ease;
    }
    
    .nav-links a:hover {
        background: rgba(255,255,255,0.1);
        color: white;
    }
    
    .menu-btn.active .hamburger {
        display: none;
    }
    
    .menu-btn.active .close {
        display: block;
        color: white;
    }
    
    .menu-btn svg {
        color: var(--primary-color); 
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                url('images/hero-image.avif');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 5%;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: slideUp 1s ease;
}

.hero_btn{
        padding: 1em 2rem;
        border: 2px solid #c0392b;
        border-radius: 5px;
        cursor: pointer;
        transition: 0.3s;
        background: transparent;
        color: white;
}

.hero_btn:hover{
    background: var(--primary-color);
    border: 2px solid #c0392b;
    border-radius: 5px;

    
}

/* Features Section */
.features {
    padding: 5rem 5%;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: 10px;
    transition: transform 0.3s;
}



.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Products Section */
.products {
    padding: 5rem 5%;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    text-align: center;
}

.product-title {
font-size: 1.2rem;
color: var(--secondary-color);
margin-bottom: 0.5rem;
font-weight: 600;
}

.product-price {
color: var(--primary-color);
font-size: 1.1rem;
font-weight: bold;
margin-bottom: 1rem;
}

.add-to-cart {
background-color: var(--primary-color);
color: white;
border: none;
padding: 0.8rem 1.5rem;
border-radius: 5px;
cursor: pointer;
width: 100%;
transition: background-color 0.3s ease;
}

.add-to-cart:hover {
background-color: #c0392b;
}

@media (max-width: 768px) {
.product-info {
padding: 1rem;
}

.product-title {
font-size: 1rem;
}

.product-price {
font-size: 0.9rem;
}

.add-to-cart {
padding: 0.6rem 1rem;
font-size: 0.9rem;
}
}



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



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


/* Testimonials Section */
.testimonial-card {
background: white;
padding: 2rem;
border-radius: 10px;
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
text-align: center;
transition: transform 0.3s ease;
position: relative;
align-items: center;

}
.testimonial-img {
width: 80px;
height: 80px;
border-radius: 50%;
object-fit: cover;
margin: 0 auto 1rem;
display: block;
border: 3px solid var(--primary-color);
}

.testimonial-card p {
font-size: 0.95rem;
line-height: 1.6;
margin-bottom: 1rem;
color: var(--text-color);
}

.testimonial-card h4 {
color: var(--secondary-color);
margin-bottom: 0.5rem;
}

.rating {
color: #f1c40f;
font-size: 1.2rem;
margin-top: 0.5rem;
}




.testimonials-grid {
display: flex;
gap: 2rem;
overflow-x: auto;
padding-bottom: 2rem;
scroll-behavior: smooth;
-webkit-overflow-scrolling: touch;
align-items: center;
justify-content: center;
}

.testimonial-card {
flex: 0 0 300px;
min-width: 300px;
margin: 0;
}


@media (max-width: 768px) {
.testimonial-card {
flex: 0 0 260px;
min-width: 260px;
}

.testimonials-grid{
display: flex;
flex-direction: column;
}
}

@media (max-width: 768px) {
.testimonial-card {
padding: 1.5rem;
}

.testimonial-img {
width: 70px;
height: 70px;
}
}

/* About Section */
.about {
padding: 5rem 5%;
background: white;
}

.about-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
align-items: center;
}

.section-title{
    font-size: 30px;
}

.about-text{
    text-align: center;
}


.about-image img {
width: 100%;
border-radius: 10px;
box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.about-description {
font-size: 1.1rem;
line-height: 1.8;
color: var(--text-color);
margin-bottom: 2rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columns */
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
    color: var(--secondary-color);
}


.feature-item i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

/* Responsive Design */
@media (min-width: 768px) {
    .about-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .about-features {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.2rem;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .about {
        padding: 5rem 5%;
    }
    
    .about-content {
        gap: 4rem;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .about-description {
        font-size: 1.1rem;
        padding: 0 2rem;
    }
    
    .about-features {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .feature-item i {
        font-size: 1.5rem;
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .about-content {
        max-width: 1400px;
        margin: 0 auto;
    }
}

/* Small devices (landscape phones, 576px and below) */
@media (max-width: 576px) {
    .about-content {
        display: flex;
        flex-direction: column;
    }
    
    .about-image {
        order: -1; /* Moves image to the top */
        margin-bottom: 2rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .feature-item {
        padding: 0.8rem;
    }
    
    .section-title {
        font-size: 24px;
    }
}


/* Contact Section */
.contact {
padding: 5rem 5%;
background: #f9f9f9;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 800px; /* Reduced width for better focus */
    margin: 0 auto;


}

.contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    cursor: pointer;
}

.info-item {
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.info-item:hover {
    transform: translateY(-5px);
}

.info-item i {
font-size: 1.8rem;
color: var(--primary-color);
margin-bottom: 1rem;
}

.info-item h3 {
color: var(--secondary-color);
margin-bottom: 0.5rem;
}

.info-item p {
color: var(--text-color);
line-height: 1.6;
text-align: center;
}

.contact-form {
    width: 100%;
    margin-top: 2rem;
    
}

.form-group {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1rem;
padding-bottom: 5px;
}

.contact-form input,
.contact-form textarea {
width: 100%;
padding: 1rem;
border: 1px solid #ddd;
border-radius: 5px;
font-size: 1rem;
margin-bottom: 10px;
}

.contact-form textarea {
resize: vertical;
min-height: 150px;
}

.contact_btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
    background: var(--primary-color);
    color: white;
}

@media (max-width: 768px) {
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .info-item {
        margin-bottom: 1rem;
    }
    
    .contact-form {
        margin-top: 1rem;
    }
}

@media (max-width: 576px) {
    .form-group {
        grid-template-columns: 1fr;
    }
    
    .contact-container {
        padding: 0 1rem;
    }
}


/* Newsletter Section */
.newsletter {
    padding: 5rem 5%;
    background: var(--secondary-color);
    color: white;
    text-align: center;
}

.newsletter-form {
    max-width: 500px;
    margin: 2rem auto;
    display: flex;
    gap: 1rem;
}

.newsletter-input {
    flex: 1;
    padding: 1rem;
    border-radius: 5px;
    outline: none;
    border: none;
   font-size: 0.9rem;
}


.news_btn{
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
    background: var(--primary-color);
    color: white;
}

/* Common Styles */
.section-title {
    text-align: center;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
    transition: 1s;
}

.section-title.active {
    opacity: 1;
    transform: translateY(0);
}

/* Animations */
@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .newsletter-form {
        flex-direction: column;
    }
}

.newsletter p i{
opacity: 0.8;
font-weight: 100;
font-size: 13px;
color: #e74c3c;

}

