@import url('https://fonts.googleapis.com/css2?family=Lobster&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #ffffff;
    color: #333;
    line-height: 1.6;
}


.navbar {
    display: flex;
    flex-wrap: wrap;
    height: auto;
    background: #ffffff;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    flex: 1 1 auto;
    text-align: center;
    min-width: 200px;
}

.logo h1 {
    font-family: "Lobster", sans-serif;
    font-size: 2rem;
    color: #180f4a;
}

.menu {
    flex: 1 1 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.menu a {
    color: #180f4a;
    text-decoration: none;
    font-size: 1rem;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.menu a:hover {
    color: #c41e3a;
    border-bottom: 3px solid #c41e3a;
}

#botao {
    background: white;
    padding: 0.75rem 1.5rem;
    color: #180f4a;
    border: 2px solid #180f4a;
    border-radius: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
}

#botao:hover {
    background: #180f4a;
    color: white;
}

.header {
    display: flex;
    flex-wrap: wrap;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    justify-content: center;
    align-items: center;
    padding: 2rem;
    gap: 2rem;
    min-height: 400px;
}

.headline {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.headline-primary {
    font-weight: 900;
    font-size: 2rem;
    color: #fdfdff;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
}

.headline-secondary {
    font-weight: 700;
    font-size: 3.5rem;
    color: #fdfdff;
    margin: 0;
}

.img-headline {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.img-headline img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

main {
    padding: 3rem 1rem;
}

.categories {
    max-width: 1200px;
    margin: 0 auto;
}

.categories h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #180f4a;
    margin-bottom: 2rem;
}

.categories-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

a.botao2 {
    background: #ececec;
    color: #180f4a;
    padding: 1rem 1.5rem;
    text-decoration: none;
    border: 3px solid #180f4a;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    min-width: 150px;
    cursor: pointer;
}

a.botao2:hover {
    background: #180f4a;
    color: #f7f7fa;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(24, 15, 74, 0.3);
}

footer {
    margin-top: 4rem;
    padding: 3rem 1rem;
    background-image: linear-gradient(180deg, #180f4a, #090422, black);
    text-align: center;
    border-top: 3px solid #ececec;
}

.logo-rodape {
    max-width: 600px;
    margin: 0 auto;
}

.logo-rodape p {
    color: white;
    margin: 0.5rem 0;
    font-size: 1rem;
}

.logo-rodape small {
    color: #ccc;
}

.dec {
    font-family: 'Lobster', cursive;
    font-size: 2.5rem;
    color: rgb(255, 255, 255);
    margin-bottom: 1rem;
}

/* ===================== MEDIA QUERIES ===================== */

@media (max-width: 768px) {
    .logo h1 {
        font-size: 1.5rem;
    }

    .menu {
        width: 100%;
        justify-content: center;
        margin-top: 1rem;
    }

    .menu a {
        font-size: 0.9rem;
        padding: 0.5rem 0.75rem;
    }

    .header {
        flex-direction: column;
        min-height: auto;
        padding: 1rem;
    }

    .headline {
        min-width: 100%;
    }

    .headline-primary {
        font-size: 1.5rem;
        letter-spacing: 0.1em;
    }

    .headline-secondary {
        font-size: 2.5rem;
    }

    .img-headline {
        min-width: 100%;
    }

    .categories h2 {
        font-size: 2rem;
    }

    a.botao2 {
        min-width: 140px;
        font-size: 0.9rem;
        padding: 0.75rem 1.25rem;
    }

    .dec {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.2rem;
    }

    .menu {
        gap: 0.5rem;
    }

    .menu a {
        font-size: 0.8rem;
        padding: 0.4rem 0.5rem;
    }

    #botao {
        margin-top: 0.5rem;
    }

    .headline-primary {
        font-size: 1.2rem;
    }

    .headline-secondary {
        font-size: 1.8rem;
    }

    .categories h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .categories-container {
        gap: 1rem;
    }

    a.botao2 {
        min-width: 120px;
        font-size: 0.8rem;
        padding: 0.6rem 1rem;
    }

    main {
        padding: 1.5rem 0.5rem;
    }

    footer {
        padding: 2rem 0.5rem;
    }

    .dec {
        font-size: 1.5rem;
    }
}

/* ===================== GALLERY STYLES ===================== */

.page-header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 2rem 1rem;
    text-align: center;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.page-header h1 {
    font-family: "Lobster", sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
}

.page-header .categories-container {
    width: 100%;
}

.gallery-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 2rem;
    padding: 2rem 1rem;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-items {
    width: 280px;
    height: 280px;
    border: 5px solid #180f4a;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f5f5f5;
}

.gallery-items img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-items:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.gallery-items:hover img {
    transform: scale(1.05);
}

/* Color variants for different pages */
.gallery-items.anniversary {
    border-color: rgb(35, 39, 35);
}

.gallery-items.wedding {
    border-color: rgb(35, 39, 35);
}

.gallery-items.aesthetics {
    border-color: rgb(35, 39, 35);
}

.gallery-items.events {
    border-color: rgb(35, 39, 35);
}

.gallery-items.gastronomy {
    border-color: rgb(35, 39, 35);
}

.gallery-items.evangelical {
    border-color: rgb(35, 39, 35);
}

.gallery-items.others {
    border-color:  rgb(35, 39, 35);
}

.lightbox-overlay {
    position: fixed;
    inset: 0;
    display: none;
    place-items: center;
    background: rgba(8, 12, 25, 0.92);
    z-index: 9999;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
}

.lightbox-overlay.active {
    display: grid;
}

.lightbox-card {
    width: min(1100px, 100%);
    max-height: 90vh;
    border-radius: 18px;
    overflow: hidden;
    background: rgba(12, 16, 32, 0.96);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.lightbox-card img {
    width: 100%;
    height: auto;
    display: block;
    max-height: calc(90vh - 84px);
    object-fit: contain;
    background: #111;
}

.lightbox-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.2rem;
    color: #f7f7fb;
    font-size: 0.95rem;
    background: rgba(6, 9, 20, 0.86);
}

.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2.9rem;
    height: 2.9rem;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 1.55rem;
    font-weight: 700;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: transform 0.2s ease, background 0.2s ease;
}

.lightbox-close:hover {
    transform: scale(1.08);
    background: rgba(255, 255, 255, 0.16);
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }

    .page-header .categories-container {
        gap: 1rem;
    }

    .gallery-container {
        gap: 1.5rem;
        padding: 1.5rem 0.5rem;
    }

    .gallery-items {
        width: 240px;
        height: 240px;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .gallery-container {
        gap: 1rem;
        padding: 1rem 0.5rem;
        justify-content: center;
    }

    .gallery-items {
        width: 200px;
        height: 200px;
    }
}

.whatsapp-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
}