@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap');

:root {
    --primary-red: #a21d21;
    --bg-cream: #f2eee0;
    --white: #ffffff;
    --black: #000000;
    --text-muted: #4a4a4a;
    --transition: all 0.3s ease;
    --border-radius: 16px;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-cream);
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-red);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Layout */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.category-quote {
    font-style: italic;
    color: var(--primary-red);
    font-weight: 500;
    margin-top: 15px !important;
}

/* Header */
header {
    background: var(--primary-red);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.nav-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
}

/* Removed logo-icon and logo-text as they are replaced by image */


.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 600;
    font-size: 1rem;
    color: var(--white);
    position: relative;
    padding-bottom: 5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--bg-cream);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--bg-cream);
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--white);
}

/* Hero Section */
/* Hero Section */
.hero {
    background-color: #000;
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    color: var(--white);
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    /* Dark overlay for readability */
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

/* Removed hero-image styles */

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 25px;
    line-height: 1.1;
    letter-spacing: -1px;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero h1 span {
    color: var(--primary-red);
    /* Keep prompt word distinct */
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

@keyframes floatImage {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes morphBlob {
    0% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    }

    50% {
        border-radius: 60% 40% 30% 70% / 50% 60% 40% 60%;
    }

    100% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Removed hero-btns */

/* Buttons */
.btn {
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    display: inline-block;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-red);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(162, 29, 33, 0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
}

.btn-secondary:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(162, 29, 33, 0.2);
}

.cold-chain-badge {
    margin-top: 30px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 12px 25px;
    border-radius: 50px;
    width: auto;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cold-chain-badge i {
    color: var(--primary-red);
    font-size: 1.1rem;
}

.cold-chain-badge span {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--white);
    letter-spacing: 0.5px;
}

/* Trust Indicators */
/* Trust Indicators */
.trust-indicators {
    display: inline-flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 25px 50px;
    border-radius: var(--border-radius);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.indicator {
    display: flex;
    align-items: center;
    gap: 10px;
}

.indicator i {
    color: var(--primary-red);
    font-size: 1.5rem;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.indicator:hover i {
    transform: scale(1.2);
}

.indicator:hover .fa-snowflake {
    animation: rotateSnowflake 2s linear infinite;
}

.indicator:hover .fa-leaf {
    animation: swayLeaf 1s ease-in-out infinite;
}

.indicator:hover .fa-bolt {
    animation: pulseBolt 0.8s ease-in-out infinite;
}

@keyframes rotateSnowflake {
    from {
        transform: scale(1.2) rotate(0deg);
    }

    to {
        transform: scale(1.2) rotate(360deg);
    }
}

@keyframes swayLeaf {

    0%,
    100% {
        transform: scale(1.2) rotate(0deg);
    }

    25% {
        transform: scale(1.2) rotate(15deg);
    }

    75% {
        transform: scale(1.2) rotate(-15deg);
    }
}

@keyframes pulseBolt {

    0%,
    100% {
        transform: scale(1.2);
        filter: drop-shadow(0 0 0px var(--primary-red));
    }

    50% {
        transform: scale(1.4);
        filter: drop-shadow(0 0 8px var(--primary-red));
    }
}

.indicator span {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
}

/* Categories */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.category-card {
    background: var(--white);
    padding: 10px;
    border-radius: var(--border-radius);
    text-align: left;
    transition: var(--transition);
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.category-img {
    height: 220px;
    overflow: hidden;
    border-radius: calc(var(--border-radius) - 8px);
    margin-bottom: 20px;
}

.category-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.category-card:hover .category-img img {
    transform: scale(1.1);
}

.category-card .content-wrapper {
    padding: 10px 15px 15px;
}

.category-card h3 {
    margin-bottom: 8px;
    font-size: 1.25rem;
}

.category-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Family Card Creative Styles */
.family-card {
    position: relative;
    padding-top: 25px;
    display: flex;
    flex-direction: column;
}

.category-badge {
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--primary-red);
    color: var(--white);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(162, 29, 33, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.kids-badge {
    background: #ff9800;
}

.dinner-badge {
    background: #4caf50;
}

.party-badge {
    background: #9c27b0;
}

.nature-badge {
    background: #2196f3;
}

.host-badge {
    background: #e91e63;
}

.family-story {
    font-style: italic;
    font-family: inherit;
    font-size: 0.85rem !important;
    color: var(--primary-red) !important;
    margin-bottom: 12px;
    opacity: 0.8;
    line-height: 1.3;
    border-left: 2px solid var(--primary-red);
    padding-left: 10px;
}

.card-footer {
    margin-top: auto;
    padding-top: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    border-top: 1px dashed rgba(0, 0, 0, 0.1);
}

.tag {
    font-size: 0.75rem;
    color: #666;
    background: #f8f8f8;
    padding: 4px 10px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
}

.tag i {
    font-size: 0.8rem;
    color: var(--primary-red);
}

/* How It Works */
.steps-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 40px;
}

.step-card {
    flex: 1;
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    position: relative;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid transparent;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: rgba(162, 29, 33, 0.1);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-red);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* About */
.about {
    background: var(--white);
}

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

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
}

.about-image img {
    border-radius: var(--border-radius);
}

/* Delivery */
.delivery-info {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.delivery-map {
    height: 300px;
    background: var(--bg-cream);
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.radius-circle {
    width: 200px;
    height: 200px;
    border: 2px solid var(--primary-red);
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(162, 29, 33, 0.03);
}

.radius-circle::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px dashed var(--primary-red);
    border-radius: 50%;
    animation: pulse 4s linear infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Contact */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(162, 29, 33, 0.1);
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Footer */
footer {
    background: var(--black);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 20px;
    font-size: 0.9rem;
    color: #888;
}

/* Responsive */
@media (max-width: 992px) {
    .hero {
        flex-direction: column-reverse;
        text-align: center;
        padding: 40px 0;
        gap: 30px;
    }

    .hero-image {
        padding-left: 0;
        margin-bottom: 20px;
        width: 100%;
        max-width: 500px;
        margin-inline: auto;
    }

    .hero h1 {
        font-size: 2.8rem;
        line-height: 1.2;
    }

    .hero p {
        margin: 0 auto 30px;
        font-size: 1.1rem;
    }

    .hero-btns {
        justify-content: center;
        flex-wrap: wrap;
    }

    .cold-chain-badge {
        margin-inline: auto;
    }

    .trust-indicators {
        justify-content: center;
        gap: 30px;
    }

    .about-content {
        flex-direction: column;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
    }

    .hero-btns .btn {
        width: 100%;
        text-align: center;
    }

    .steps-container {
        flex-direction: column;
    }

    .trust-indicators {
        flex-direction: row;
        flex-wrap: wrap;
        padding: 20px;
        gap: 20px;
    }

    .indicator {
        flex: 1;
        justify-content: center;
        min-width: 100px;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .contact-container {
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .trust-indicators {
        flex-direction: column;
    }
}