* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #FFE5B4; /* Main peach background */
}

/* Header and Navigation */
header {
    background-color: #FFCBA4; /* Darker peach for header */
    padding: 1rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: #1a1a1a; /* Black text */
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #1a1a1a; /* Black text */
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #ff6b00;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 5%;
    margin-top: 60px;
    border-radius: 0;
    overflow: hidden;
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1586190848861-99aa4a171e90?q=80&w=2080&auto=format');
    background-size: 60% auto;
    background-position: right center;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(26,26,26,1) 0%, rgba(26,26,26,1) 40%, rgba(26,26,26,0.9) 50%, rgba(26,26,26,0.7) 60%, rgba(26,26,26,0.3) 75%, rgba(26,26,26,0) 90%);
    z-index: 1;
}

.hero-content {
    max-width: 600px;
    color: #fff;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 0.8rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.btn.primary {
    background-color: #ff6b00;
    color: #fff;
}

.btn.secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn:hover {
    transform: translateY(-2px);
}

/* About Home Section */
.about-home {
    padding: 5rem 5%;
    background-color: #FFCBA4; /* Darker peach for about section */
}

.about-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-container h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
    position: relative;
    display: inline-block;
}

.about-container h2:after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: #ff6b00;
    margin: 0.5rem auto 0;
}

.about-content {
    text-align: left;
}

.about-content p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: #444;
}

.about-content ul {
    list-style-type: none;
    margin: 1.5rem 0;
    padding-left: 1rem;
}

.about-content ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    color: #444;
}

.about-content ul li:before {
    content: "•";
    color: #ff6b00;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.about-content .btn {
    display: inline-block;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .about-content {
        text-align: center;
    }
    
    .about-content ul {
        display: inline-block;
        text-align: left;
    }
}

/* Features Section */
.features {
    padding: 4rem 5%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    background-color: #FFDAB9; /* Lighter peach for features */
}

.feature-card {
    padding: 2rem;
    text-align: center;
    background-color: #FFE5B4; /* Main peach for cards */
    border-radius: 10px;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card h3 {
    color: #ff6b00;
    margin-bottom: 1rem;
}

/* Popular Items Section */
.popular-items {
    padding: 5rem 5%;
    background-color: #FFDAB9; /* Lighter peach for popular items */
    text-align: center;
}

.popular-items h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a; /* Black text */
}

.popular-container {
    max-width: 1200px;
    margin: 0 auto;
}

.popular-category {
    margin-bottom: 4rem;
}

.popular-category h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #1a1a1a; /* Black text */
    position: relative;
    display: inline-block;
}

.popular-category h3:after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: #ff6b00;
    margin: 0.5rem auto 0;
}

.items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.item-card {
    background-color: #FFE5B4; /* Main peach for cards */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.item-card:hover {
    transform: translateY(-5px);
}

.item-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.item-card h4 {
    padding: 1rem 1rem 0.5rem;
    color: #1a1a1a; /* Black text */
    font-size: 1.2rem;
}

.item-card p {
    padding: 0 1rem;
    color: #333; /* Dark gray text */
    font-size: 0.9rem;
    min-height: 60px;
}

.item-price {
    display: block;
    padding: 0.5rem 1rem 1.5rem;
    color: #ff6b00;
    font-weight: 600;
    font-size: 1.2rem;
}

.cta-container {
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .items-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin: 0 auto;
    }
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 3rem 5% 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-info h3,
.footer-links h3 {
    margin-bottom: 1rem;
    color: #ff6b00;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ff6b00;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        background-position: center;
        text-align: center;
        padding-top: 100px;
    }

    .hero-content {
        margin: 0 auto;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .nav-links {
        display: none;
    }
} 