/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #2f4f4f;
    background-color: #f0f8ff;
}

/* Header and Navigation */
header {
    background: linear-gradient(rgba(255, 255, 255, 0.897), #f0f8fff3), url('assets/snowfall.jpg') no-repeat center center/cover;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2f4f4f;
}


/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('assets/Hero-snow-picture.png') no-repeat center center/cover;
    height: 75vh;
    max-width: 90%;
    margin-left: 5%;
    display: flex;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-content h1 {
    font-size: 5rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background-color: #4682b4;
    color: #fff;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #3a5f7a;
}

/* Sections */
section {
    padding: 5rem 2rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    flex-direction: row;
}


/* About Section */
.about-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.about-content p {
    flex: 1;
    font-size: 1.2rem;
    line-height: 1.8;
}


.about-content img {
    max-width: 40%;
    height: auto;
    border-radius: 10px;
}

/* Product Section */
.product-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.product-text {
    flex: 1;
    font-size: 1.2rem;
    line-height: 1.8;
}
.product-text h3 {
    margin-top: 1rem;
    color: #4682b4;
}
.product-text ul {
    list-style-type: disc;
    margin-left: 1.5rem;
}
.product-text li {
    margin-bottom: 0.1rem;
}
.product-content img {
    max-width: 40%;
    height: auto;
    border-radius: 10px;
}


h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    color: #2f4f4f;
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature {
    background-color: #fff;
    padding: 2rem;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-align: center;
}

.feature h3 {
    margin-bottom: 1rem;
    color: #4682b4;
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.pricing-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-align: center;
    justify-content: center;
}


.pricing-card h3 {
    margin-bottom: 1rem;
    font-size: 2rem;
    font-weight: bold;
    color: #4682b4;
}


.price {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #333;
}

.pricing-card button {
    background: linear-gradient(135deg, #4682b4, #5a9bd4);
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.pricing-card button:hover {
    background: linear-gradient(135deg, #3a5f7a, #4a7ba7);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}

.pricing-card.popular {
    border: 3px solid #4682b4;
    position: relative;
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ff6b6b;
    color: #fff;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

/* Sprinkles Section */
.sprinkles-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.sprinkles-text {
    flex: 1;
    font-size: 1.2rem;
    line-height: 1.8;
}
.sprinkles-pricing {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}
.sprinkle-option {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-align: center;
    flex: 1;
}
.sprinkle-option h3 {
    margin-bottom: 1rem;
    color: #4682b4;
}
.sprinkle-option .price {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #333;
}
.sprinkle-option button {
    background: linear-gradient(135deg, #4682b4, #5a9bd4);
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}
.sprinkle-option button:hover {
    background: linear-gradient(135deg, #3a5f7a, #4a7ba7);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}
.sprinkles-content img {
    max-width: 40%;
    height: auto;
    border-radius: 10px;
}

/* Contact */
.contact-wrapper {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.contact-info {
    background-color: #fff;
    padding: 2rem;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    flex: 1;
}

.contact-info h3 {
    margin-bottom: 1rem;
    color: #4682b4;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

form {
    flex: 1;
    display: grid;
    gap: 1rem;
}

input, textarea {
    font-family: 'Courier New', Courier, monospace;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

button[type="submit"] {
    background: linear-gradient(135deg, #4682b4, #5a9bd4);
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

button[type="submit"]:hover {
    background: linear-gradient(135deg, #3a5f7a, #4a7ba7);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}


/* Footer */
footer {
    background-color: #2f4f4f;
    color: #fff;
    text-align: center;
    padding: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        padding: 1rem;
    }

    nav ul {
        margin-top: 1rem;
    }

    nav ul li {
        margin-left: 0;
        margin-right: 1rem;
    }

    .hero {
        height: 50vh;
        margin-left: 0;
        max-width: 100%;
        border-radius: 0;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    section {
        padding: 3rem 1rem;
    }

    h2 {
        font-size: 2rem;
    }

    .about-content,
    .product-content,
    .sprinkles-content {
        flex-direction: column;
        gap: 1rem;
    }

    .about-content img,
    .product-content img,
    .sprinkles-content img {
        max-width: 100%;
    }

    .features-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .sprinkles-pricing {
        flex-direction: column;
        gap: 1rem;
    }

    .contact-wrapper {
        flex-direction: column;
        gap: 1rem;
    }

    .contact-info,
    form {
        flex: none;
        width: 100%;
    }

    form {
        text-align: center;
    }

    .pricing-card button,
    .sprinkle-option button,
    button[type="submit"] {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}
    