
/* Hero section */
.hero {
    background: linear-gradient(rgba(74, 44, 42, 0.45), rgba(74, 44, 42, 0.45)),
                url('images/cakehero.png') center 30%/cover no-repeat;
    color: #fff;
    text-align: center;
    padding: 120px 20px;
    min-height: 95vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.4);
}

.hero p {
    font-size: 1.2rem;
    max-width: 500px;
}

/* About section */
.about {
    max-width: 700px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
}

.about h2 {
    font-size: 2rem;
    color: var(--color-rust);
    margin-bottom: 20px;
    position: relative;
}

.about h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--color-peach);
    margin: 12px auto 0;
}

.about p {
    font-size: 1.05rem;
    color: var(--color-text-secondary);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 2.5rem auto 0;
    padding: 0 1.5rem;
}

.process-grid > div {
    background: var(--delimundo-cream, #fff8f1);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(107, 66, 38, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.process-grid > div:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(107, 66, 38, 0.14);
}

.process-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.process-grid h3 {
    color: var(--delimundo-brown, #6b4226);
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.process-grid p {
    color: var(--delimundo-brown-light, #9c6b4f);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .process-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Stack on mobile */
@media (max-width: 600px) {
    .process-grid {
        grid-template-columns: 1fr;
    }

.process-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}


.location-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.location-content {
    text-align: center;
    width: 100%;
}

.location-content h1 {
    color: var(--color-rust);
    margin-bottom: 20px;
}

.location-content h1::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--color-peach);
    margin: 12px auto 0;
}

.location-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 15px;
}

.map-container {
    width: 100%;
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}


#map {
    height: 450px;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.mapBtn {
    display: inline-block;
    align-self: center;
    width: 200px;
    margin-top: 15px;
    padding: 12px 20px;
    background-color: #3b6ea5;
    color: var(--color-cream-light);
    text-decoration: none;
    text-align: center;
    font-weight: bold;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(74, 44, 42, 0.25);
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.mapBtn:hover {
    background-color: var(--color-peach);
    color: #2c5580;
    transform: translateY(-2px);
}

/* Tablets and smaller screens */
@media (max-width: 768px) {

    .location-section {
        margin: 20px auto;
        padding: 15px;
        gap: 20px;
    }

    .location-content h1 {
        font-size: 1.8rem;
    }

    .location-content p {
        font-size: 1rem;
    }

    .map-container {
        height: 300px;
    }
}


/* Phones */
@media (max-width: 480px) {

    .location-section {
        padding: 10px;
    }

    .location-content h1 {
        font-size: 1.5rem;
    }

    .location-content p {
        font-size: 0.95rem;
    }

    .map-container {
        height: 250px;
    }

    .map-container iframe {
        border-radius: 10px;
    }
}

/* Responsive */
@media (max-width: 600px) {
    .hero {
        padding: 80px 20px;
        min-height: 70vh;
    }

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

    .hero p {
        font-size: 1rem;
    }

    .about {
        padding: 40px 16px;
    }
}