/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: #4A2C1A;
    background-color: #FFFBF0;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Baloo 2', cursive;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -1%;
}

h1 {
    font-size: 64px;
}

h2 {
    font-size: 48px;
}

h3 {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.4;
}

/* Section Title */
.section-title {
    text-align: center;
    margin-bottom: 48px;
    color: #4A2C1A;
}

/* Hero Section */
.hero {
    min-height: 600px;
    background: linear-gradient(135deg, #FFFBF0 0%, #F3EAD5 100%);
    display: flex;
    align-items: center;
    padding: 96px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: -10%;
    width: 40%;
    height: 100%;
    background: radial-gradient(circle at center, #FCD650 0%, transparent 70%);
    opacity: 0.1;
    z-index: 1;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 64px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.hero-text {
    flex: 1;
}

.hero-title {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #4A2C1A;
    text-shadow: 2px 2px 4px rgba(74, 44, 26, 0.1);
}

.hero-tagline {
    font-size: 24px;
    color: #A18276;
    margin-bottom: 48px;
    font-weight: 500;
}

.cta-button {
    background: #FCD650;
    color: #4A2C1A;
    border: none;
    padding: 16px 32px;
    border-radius: 99px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(252, 214, 80, 0.4);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    font-family: 'Inter', sans-serif;
}

.cta-button:hover {
    background: #E8C04A;
    transform: scale(1.03);
    box-shadow: 0 6px 20px rgba(252, 214, 80, 0.6);
}

.cta-button:active {
    transform: scale(0.98);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pukis-showcase {
    position: relative;
    width: 300px;
    height: 300px;
}

.pukis-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

.pukis-piece {
    position: absolute;
    width: 180px;
    height: 120px;
    border-radius: 60px 60px 60px 60px;
    box-shadow: 0 8px 24px rgba(74, 44, 26, 0.15);
    transition: transform 0.3s ease;
}

.pukis-piece:hover {
    transform: translateY(-8px);
}

.pukis-piece.original {
    background: linear-gradient(145deg, #F4E194, #E6D16B);
    top: 20px;
    left: 30px;
    z-index: 3;
}

.pukis-piece.chocolate {
    background: linear-gradient(145deg, #8B4513, #654321);
    top: 40px;
    right: 20px;
    z-index: 2;
    position: relative;
}

.pukis-piece.chocolate::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 20px;
    right: 20px;
    bottom: 15px;
    background-image: radial-gradient(#D2691E 2px, transparent 2px);
    background-size: 8px 8px;
    opacity: 0.7;
}

.pukis-piece.pandan {
    background: linear-gradient(145deg, #90EE90, #228B22);
    bottom: 20px;
    left: 50px;
    z-index: 1;
}

/* About Section */
.about {
    padding: 96px 0;
    background: #FFFFFF;
}

.about-content {
    display: flex;
    gap: 64px;
    align-items: center;
}

.about-text {
    flex: 2;
}

.about-points {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.point {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.point-number {
    background: #FCD650;
    color: #4A2C1A;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
    flex-shrink: 0;
}

.point p {
    margin: 0;
    line-height: 1.6;
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.halal-badge {
    background: #FFFFFF;
    border: 3px solid #28A745;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(74, 44, 26, 0.15);
}

.halal-logo {
    font-size: 32px;
    font-weight: 700;
    color: #28A745;
    margin-bottom: 8px;
}

.halal-text {
    font-size: 16px;
    color: #28A745;
    font-weight: 600;
}

/* Products Section */
.products {
    padding: 96px 0;
    background: #FFFBF0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.product-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(74, 44, 26, 0.1);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(74, 44, 26, 0.15);
}

.product-image {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    margin-bottom: 24px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.product-image.original {
    background: linear-gradient(145deg, #F4E194, #E6D16B);
}

.product-image.cheese {
    background: linear-gradient(145deg, #F4E194, #E6D16B);
    position: relative;
}

.product-image.cheese::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(#FFD700 3px, transparent 3px),
        radial-gradient(#FFA500 2px, transparent 2px);
    background-size: 12px 12px, 8px 8px;
    background-position: 0 0, 6px 6px;
}

.product-image.chocolate {
    background: linear-gradient(145deg, #8B4513, #654321);
    position: relative;
}

.product-image.chocolate::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background-image: radial-gradient(#D2691E 2px, transparent 2px);
    background-size: 6px 6px;
    opacity: 0.8;
}

.product-image.choc-cheese {
    background: linear-gradient(145deg, #8B4513, #654321);
    position: relative;
}

.product-image.choc-cheese::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background-image: 
        radial-gradient(#D2691E 2px, transparent 2px),
        radial-gradient(#FFD700 2px, transparent 2px);
    background-size: 6px 6px, 10px 10px;
    background-position: 0 0, 5px 5px;
}

.product-image.pandan {
    background: linear-gradient(145deg, #90EE90, #228B22);
}

.product-name {
    margin-bottom: 8px;
    color: #4A2C1A;
}

.product-price {
    font-weight: 600;
    color: #4A2C1A;
    margin-bottom: 8px;
}

.product-desc {
    font-size: 14px;
    color: #A18276;
    margin-bottom: 16px;
}

.pandan-tag {
    background: #509D69;
    color: #FFFFFF;
    padding: 4px 12px;
    border-radius: 99px;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 8px;
    letter-spacing: 1%;
}

/* Order Section */
.order {
    padding: 96px 0;
    background: #FFFFFF;
    text-align: center;
}

.order-subtitle {
    font-size: 24px;
    color: #A18276;
    margin-bottom: 48px;
    font-weight: 500;
    font-style: italic;
}

.delivery-platforms {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.platform-button {
    background: #FCD650;
    color: #4A2C1A;
    border: none;
    padding: 16px 32px;
    border-radius: 99px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(252, 214, 80, 0.4);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    font-family: 'Inter', sans-serif;
}

.platform-button:hover {
    background: #E8C04A;
    transform: scale(1.03);
    box-shadow: 0 6px 20px rgba(252, 214, 80, 0.6);
}

.platform-button.grab {
    background: #00B14F;
    color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(0, 177, 79, 0.4);
}

.platform-button.grab:hover {
    background: #009B45;
    box-shadow: 0 6px 20px rgba(0, 177, 79, 0.6);
}

.platform-logo {
    font-weight: 600;
}

.order-note {
    color: #A18276;
    font-size: 16px;
}

/* Contact Section */
.contact {
    padding: 96px 0;
    background: #FFFBF0;
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 64px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-item {
    display: flex;
    gap: 24px;
    align-items: center;
}

.contact-icon {
    font-size: 32px;
    width: 64px;
    height: 64px;
    background: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item h3 {
    margin-bottom: 4px;
    font-size: 20px;
}

.contact-item p {
    color: #A18276;
    margin: 0;
}

.business-hours {
    background: #FFFFFF;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(74, 44, 26, 0.1);
    height: fit-content;
}

.business-hours h3 {
    margin-bottom: 16px;
    color: #4A2C1A;
}

.business-hours p {
    color: #A18276;
    margin-bottom: 8px;
}

/* Footer */
.footer {
    background: #4A2C1A;
    color: #FFFFFF;
    text-align: center;
    padding: 32px 0;
}

.footer p {
    margin: 0;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 32px;
    }
    
    .hero-content {
        gap: 48px;
    }
    
    .about-content {
        gap: 48px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 768px) {
    /* Typography adjustments */
    h1 {
        font-size: 48px;
    }
    
    h2 {
        font-size: 36px;
    }
    
    h3 {
        font-size: 20px;
    }
    
    body {
        font-size: 16px;
    }
    
    /* Hero section */
    .hero {
        min-height: 450px;
        padding: 64px 0;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 32px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-tagline {
        font-size: 20px;
        margin-bottom: 32px;
    }
    
    .pukis-showcase {
        width: 250px;
        height: 250px;
    }
    
    .pukis-piece {
        width: 140px;
        height: 100px;
    }
    
    /* Sections */
    .about,
    .products,
    .order,
    .contact {
        padding: 64px 0;
    }
    
    .section-title {
        margin-bottom: 32px;
    }
    
    /* About section */
    .about-content {
        flex-direction: column;
        gap: 32px;
    }
    
    .about-points {
        gap: 24px;
    }
    
    .point {
        gap: 16px;
    }
    
    .point-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    /* Products grid */
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 24px;
    }
    
    .product-card {
        padding: 20px;
    }
    
    .product-image {
        height: 160px;
    }
    
    /* Order section */
    .delivery-platforms {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .platform-button {
        width: 200px;
    }
    
    /* Contact section */
    .contact-info {
        gap: 24px;
    }
    
    .contact-item {
        gap: 16px;
    }
    
    .contact-icon {
        width: 48px;
        height: 48px;
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 48px 0;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-tagline {
        font-size: 18px;
    }
    
    .pukis-showcase {
        width: 200px;
        height: 200px;
    }
    
    .pukis-piece {
        width: 120px;
        height: 80px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .order-subtitle {
        font-size: 20px;
    }
}