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

/* Custom Mouse Pointer */
html, body {
    cursor: none;
}

.custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: rgba(255, 107, 0, 0.8); /* Increased opacity for better visibility */
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    transition: width 0.2s, height 0.2s, background-color 0.2s;
    /* Removed mix-blend-mode to ensure consistent orange color */
}

.custom-cursor-follower {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 107, 0, 0.5);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9998;
    transition: width 0.3s, height 0.3s, border-color 0.3s, transform 0.1s;
    opacity: 0; /* Hide the follower */
}

a, button, .btn, .order-btn, .category-btn, .nav-links a {
    cursor: none;
}

a:hover ~ .custom-cursor,
button:hover ~ .custom-cursor,
.btn:hover ~ .custom-cursor,
.order-btn:hover ~ .custom-cursor,
.category-btn:hover ~ .custom-cursor,
.nav-links a:hover ~ .custom-cursor {
    width: 30px;
    height: 30px;
    background-color: rgba(255, 107, 0, 1); /* Full opacity on hover for stronger effect */
}

a:hover ~ .custom-cursor-follower,
button:hover ~ .custom-cursor-follower,
.btn:hover ~ .custom-cursor-follower,
.order-btn:hover ~ .custom-cursor-follower,
.category-btn:hover ~ .custom-cursor-follower,
.nav-links a:hover ~ .custom-cursor-follower {
    width: 50px;
    height: 50px;
    border-color: rgba(255, 107, 0, 0.8);
    transform: translate(-50%, -50%) scale(1.2);
}

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;
    box-shadow: 0 4px 8px rgba(255, 107, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.btn.secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
    position: relative;
    overflow: hidden;
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.btn.primary:hover {
    background-color: #ff7d20;
}

.btn.secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.btn:active {
    transform: translateY(-2px);
}

/* Button Animation */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.hero-buttons .btn {
    animation: pulse 2s infinite;
}

.hero-buttons .btn:hover {
    animation: none;
}

/* About Home Section */
.about-home {
    padding: 5rem 5%;
    background-color: #FFE5B4; /* Changed to main peach background */
}

.about-container {
    max-width: 1200px;
    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-wrapper {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.about-content {
    text-align: left;
    flex: 1;
}

.about-image {
    flex: 1;
    text-align: center;
}

.about-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.02);
}

.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-wrapper {
        flex-direction: column;
    }
    
    .about-content {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .about-image {
        order: -1;
        margin-bottom: 2rem;
    }
    
    .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: #FFE5B4; /* Changed to main peach background */
    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;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 5%;
    background-color: #FFE5B4; /* Main peach background */
    text-align: center;
}

.testimonials h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
    position: relative;
    display: inline-block;
}

.testimonials h2:after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: #ff6b00;
    margin: 0.5rem auto 0;
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: #FFDAB9;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.stars {
    color: #ff6b00;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #444;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 600;
    color: #1a1a1a;
}

@media (max-width: 768px) {
    .testimonials-container {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

/* 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;
    }
} 