/* General Setup */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #faf7f2;
    color: #4a3b32;
}

/* Navigation Bar & Logo Design */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 10%;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo i {
    font-size: 1.8rem;
    color: #d4a373;
}

.logo h2 {
    color: #4a3b32;
    font-weight: 700;
}

.logo h2 span {
    color: #d4a373; /* Treats అనే పదం గోల్డ్ కలర్ లో వస్తుంది */
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #4a3b32;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover, .nav-links a.active {
    color: #d4a373;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('https://images.unsplash.com/photo-1509440159596-0249088772ff?q=80&w=1200') no-repeat center center/cover;
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    padding: 10px 25px;
    background-color: #d4a373;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s;
}

.btn:hover {
    background-color: #bc8a5f;
}

/* Welcome Section */
.intro {
    text-align: center;
    padding: 60px 15%;
}

.intro h2 {
    margin-bottom: 20px;
    font-size: 2.2rem;
    color: #4a3b32;
}

.welcome-container p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #6c584c;
}

/* Featured Products & Images */
.featured {
    padding: 60px 10%;
    text-align: center;
    background-color: #fff;
}

.featured h2 {
    margin-bottom: 40px;
    font-size: 2.2rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: #faf7f2;
    border-radius: 12px;
    overflow: hidden; /* ఇమేజ్ బార్డర్స్ రౌండ్ అవ్వడానికి */
    border: 1px solid #e6dfd5;
    transition: transform 0.3s, box-shadow 0.3s;
    padding-bottom: 20px;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.product-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* ఇమేజ్ కరెక్ట్ గా ఫిట్ అవ్వడానికి */
    transition: transform 0.3s;
}

.product-card:hover .product-img img {
    transform: scale(1.05); /* హోవర్ చేసినప్పుడు ఇమేజ్ జూమ్ అవుతుంది */
}

.product-card h3 {
    margin: 15px 0 10px 0;
    color: #4a3b32;
    font-size: 1.4rem;
}

.product-card p {
    padding: 0 15px;
    font-size: 0.95rem;
    color: #6c584c;
    line-height: 1.5;
}

/* Footer */
footer {
    text-align: center;
    padding: 25px;
    background-color: #4a3b32;
    color: #fff;
}