/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: hsl(25, 15%, 15%);
    background-color: hsl(35, 15%, 92%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header */
.header {
    background-color: hsl(15, 40%, 15%);
    box-shadow: 0 2px 10px -2px rgba(0, 0, 0, 0.2);
    position: sticky;
    top: 0;
    z-index: 50;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    height: 2.5rem;
    width: auto;
}

.logo-text {
    display: none;
}

.logo-title {
    color: hsl(40, 25%, 85%);
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1;
}

.logo-subtitle {
    color: rgba(255, 248, 241, 0.8);
    font-size: 0.875rem;
    line-height: 1;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: hsl(40, 25%, 85%);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
    color: rgba(255, 248, 241, 0.8);
}

.cta-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-outline {
    display: none;
    border: 1px solid hsl(40, 25%, 85%);
    color: hsl(40, 25%, 85%);
    background: transparent;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-outline:hover {
    background-color: hsl(40, 25%, 85%);
    color: hsl(15, 40%, 15%);
}

.mobile-menu-btn {
    background: none;
    border: none;
    color: hsl(40, 25%, 85%);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.375rem;
    transition: background-color 0.3s ease;
}

.mobile-menu-btn:hover {
    background-color: rgba(255, 248, 241, 0.1);
}

.menu-icon {
    width: 1.5rem;
    height: 1.5rem;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, hsl(35, 25%, 88%) 0%, hsl(35, 15%, 92%) 100%);
    min-height: 100vh;
    padding: 3rem 0;
}

.hero-header {
    text-align: center;
    margin-bottom: 4rem;
}

.hero-badge {
    display: inline-block;
    background-color: hsl(160, 30%, 25%);
    color: hsl(35, 25%, 95%);
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, hsl(25, 35%, 25%) 0%, hsl(15, 40%, 15%) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    letter-spacing: -0.025em;
    line-height: 1.1;
}

.hero-description {
    font-size: 1.25rem;
    color: hsl(25, 20%, 40%);
    max-width: 42rem;
    margin: 0 auto 2rem;
}

/* Grid Layout */
.grid-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 80rem;
    margin: 0 auto;
}

.card {
    border-radius: 0.75rem;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Hero Card */
.hero-card {
    background: linear-gradient(135deg, hsl(25, 35%, 25%) 0%, hsl(15, 40%, 15%) 100%);
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.3);
    min-height: 24rem;
}

.card-image {
    position: absolute;
    inset: 0;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.hero-card:hover .hero-img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 15, 15, 0.8) 0%, rgba(15, 15, 15, 0.2) 50%, transparent 100%);
}

.card-content {
    position: relative;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: white;
    z-index: 10;
}

.card-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.card-text {
    color: hsl(40, 25%, 85%);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

/* Latte Card */
.latte-card {
    background-color: hsl(40, 25%, 85%);
    box-shadow: 0 5px 20px -5px rgba(0, 0, 0, 0.4);
    padding: 1.5rem;
    min-height: 16rem;
}

.latte-card:hover {
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.3);
}

.card-icon-container {
    width: 100%;
    height: 8rem;
    background: linear-gradient(135deg, hsl(25, 35%, 25%) 0%, hsl(15, 40%, 15%) 100%);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.card-icon {
    font-size: 2.5rem;
}

.card-subtitle {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: hsl(15, 40%, 15%);
    margin-bottom: 0.5rem;
}

.card-desc {
    color: hsl(20, 30%, 35%);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

/* Brownies Card */
.brownies-card {
    background-color: hsl(15, 40%, 15%);
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.3);
    padding: 1.5rem;
    color: white;
    min-height: 16rem;
}

.brownies-card:hover {
    box-shadow: 0 5px 20px -5px rgba(0, 0, 0, 0.4);
}

.cream-bg {
    background: linear-gradient(135deg, hsl(40, 25%, 85%) 0%, hsl(35, 20%, 75%) 100%);
}

.chocolate-text {
    color: hsl(15, 40%, 15%);
}

.white-text {
    color: white;
}

.cream-text {
    color: hsl(40, 25%, 85%);
}

a{text-decoration: none;}

/* Products Card */
.products-card {
    background: linear-gradient(135deg, hsl(40, 25%, 85%) 0%, hsl(35, 20%, 75%) 100%);
    box-shadow: 0 5px 20px -5px rgba(0, 0, 0, 0.4);
    padding: 2rem;
    min-height: 12rem;
}

.products-card:hover {
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.3);
}

.products-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.products-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(15, 40%, 15%);
    margin-bottom: 0.5rem;
}

#set1{background-image: url(image\ 1.png);
background-size: cover;
background-position: center;}

#set{background-image: url(image\ 2.png);
background-size: cover;
background-position: center;}

.products-desc {
    color: hsl(20, 30%, 35%);
}

.products-icon {
    font-size: 3rem;
    opacity: 0.5;
}

/* Buttons */
.btn {
    border-radius: 0.375rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-small {
    width: 100%;
    font-size: 0.875rem;
}

.btn-large {
    font-size: 1.125rem;
    padding: 1.5rem 3rem;
}

.btn-cream {
    background: linear-gradient(135deg, hsl(40, 25%, 85%) 0%, hsl(35, 20%, 75%) 100%);
    color: hsl(15, 40%, 15%);
    box-shadow: 0 5px 20px -5px rgba(0, 0, 0, 0.4);
    width: fit-content;
}

.btn-cream:hover {
    background-color: hsl(35, 20%, 70%);
    transform: translateY(-2px);
}

.btn-coffee {
    background: linear-gradient(135deg, hsl(25, 35%, 25%) 0%, hsl(15, 40%, 15%) 100%);
    color: hsl(35, 25%, 95%);
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.3);
}

.btn-coffee:hover {
    box-shadow: 0 5px 20px -5px rgba(0, 0, 0, 0.4);
    transform: scale(1.05);
}

.btn-elegant {
    background-color: hsl(160, 30%, 25%);
    color: hsl(35, 25%, 95%);
    box-shadow: 0 2px 10px -2px rgba(0, 0, 0, 0.2);
}

.btn-elegant:hover {
    background-color: rgba(52, 79, 70, 0.9);
}

/* Call to Action */
.cta-container {
    text-align: center;
    margin-top: 4rem;
}

/* Responsive Design */
@media (min-width: 640px) {
    .logo-text {
        display: block;
    }
    
    .btn-outline {
        display: flex;
    }
    
    .hero-title {
        font-size: 4.5rem;
    }
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    .grid-layout {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .hero-card {
        grid-column: span 2;
  
    }

       .products-card {
        grid-column: span 2;
    }
    
    .hero-title {
        font-size: 6rem;
    }
    
    .card-title {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 5rem;
    }
}