/* Welcome Title */
.welcome-title {
    text-align: center;
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: normal;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Intro Text */
.intro-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.intro-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-dark);
}

/* Notamada Section */
.notamada-section {
    max-width: 900px;
    margin: 3rem auto;
    padding: 2.5rem;
    background: var(--background-light);
    border-radius: 15px;
    border: 2px solid var(--secondary-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.notamada-section h3 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 2rem;
}

.notamada-content {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.notamada-image {
    flex: 0 0 350px;
}

.notamada-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    border: 4px solid var(--secondary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.notamada-info {
    flex: 1;
}

.notamada-info h4 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.notamada-info p {
    margin-bottom: 0.8rem;
    line-height: 1.6;
    color: var(--text-dark);
}

.notamada-phone {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--primary-color);
}

.notamada-phone a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.notamada-phone a:hover {
    color: var(--secondary-color);
}

.notamada-note {
    font-style: italic;
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.notamada-contact {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: stretch;
}

/* Vendors Section */
.vendors-section {
    padding: 4rem 0;
    background: var(--background-light);
}

.vendors-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

.vendors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.vendor-card {
    background: white;
    padding: 0;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.vendor-card.tamada-card {
    border: 3px solid var(--primary-color);
}

.vendor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.15);
}

.vendor-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.vendor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vendor-card h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin: 1.5rem 0 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0 2rem;
}

.vendor-card h4 {
    color: var(--text-dark);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding: 0 2rem;
}

.vendor-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    padding: 0 2rem;
}

.vendor-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    padding: 0 2rem 2rem;
    align-items: stretch;
}

.vendor-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.vendor-link.website-link {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.vendor-link.website-link:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    transform: scale(1.05);
}

.vendor-link.phone-link {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.vendor-link.phone-link:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    transform: scale(1.05);
}

.vendor-link.whatsapp-link {
    background: #128C7E;
    color: white;
}

.vendor-link.whatsapp-link:hover {
    background: #075E54;
    transform: scale(1.05);
}

.vendor-link.instagram-link {
    background: var(--background-light);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.vendor-link.instagram-link:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.05);
}

.instagram-icon {
    width: 20px;
    height: 20px;
}

/* Witnesses Section */
.witnesses-section {
    padding: 4rem 0;
    background: white;
}

.witnesses-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

.witnesses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.witness-card {
    background: var(--background-light);
    padding: 0;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    border: 2px solid var(--secondary-color);
}

.witness-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.15);
}

.witness-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.witness-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.witness-card h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin: 1rem 0 0.3rem;
    padding: 0 1rem;
}

.witness-role {
    color: var(--secondary-color);
    font-size: 0.9rem;
    font-style: italic;
    margin-bottom: 1rem;
    padding: 0 1rem;
}

.witness-contact {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    padding: 0 1rem 1.5rem;
    align-items: stretch;
}

.contact-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.6rem 1rem;
    color: white;
    text-decoration: none;
    border-radius: 20px;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
}

.contact-link.phone-link {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.contact-link.phone-link:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    transform: scale(1.05);
}

.contact-link.whatsapp-link {
    background: #128C7E;
    color: white;
}

.contact-link.whatsapp-link:hover {
    background: #075E54;
    transform: scale(1.05);
}

.whatsapp-icon {
    width: 20px;
    height: 20px;
}

/* Google Maps Container */
.map-container {
    width: 100%;
    max-height: 7rem;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .notamada-content {
        flex-direction: column;
        text-align: center;
    }

    .vendors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .vendor-card {
        padding: 0;
    }

    .vendor-image {
        height: 150px;
    }

    .vendor-card h3 {
        font-size: 0.95rem;
        margin: 0.8rem 0 0.3rem;
        padding: 0 0.5rem;
    }

    .vendor-card h4 {
        font-size: 1.1rem;
        padding: 0 0.5rem;
        margin-bottom: 0.5rem;
    }

    .vendor-card p {
        font-size: 0.8rem;
        padding: 0 0.5rem;
        margin-bottom: 0.8rem;
        line-height: 1.4;
    }

    .vendor-links {
        gap: 0.5rem;
        padding: 0 0.5rem 1rem;
    }

    .vendor-link {
        padding: 0.5rem 0.8rem;
        font-size: 0.8rem;
    }

    .instagram-icon {
        width: 16px;
        height: 16px;
    }

    .notamada-section {
        margin: 2rem auto;
        padding: 1.5rem;
    }

    .notamada-section h3 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }

    .notamada-image {
        flex: 0 0 120px;
    }

    .notamada-info h4 {
        font-size: 1.2rem;
    }

    .notamada-info p {
        font-size: 0.9rem;
    }

    .intro-text {
        padding: 1.5rem;
    }

    .intro-text p {
        font-size: 1rem;
    }

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

/* Mobile responsive additions */
@media (max-width: 768px) {
    .welcome-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }

    .witnesses-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .witness-image {
        height: 180px;
    }

    .witness-card h3 {
        font-size: 1.1rem;
        margin: 0.8rem 0 0.2rem;
    }

    .witness-role {
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
    }

    .contact-link {
        padding: 0.5rem 0.6rem;
        font-size: 0.8rem;
        gap: 0.3rem;
    }

    .whatsapp-icon {
        width: 16px;
        height: 16px;
    }
}