* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background: #154997;
    color: #fff;
    scroll-behavior: smooth;
}

/* NAVBAR */
header {
    position: sticky;
    top: 0;
    background: rgba(0,0,0,0.9);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 60px;
    z-index: 1000;
}

header h1 {
    color: gold;
}

nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    transition: 0.3s;
}

nav a:hover {
    color: gold;
}

/* HERO */
.hero {
    height: 100vh;
    width: 100vw;
    position: relative;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8)),
    url('https://source.unsplash.com/1600x900/?luxury-wedding,africa') center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.hero h2 {
    font-size: 3.5rem;
    color: gold;
}

.hero p {
    margin-top: 10px;
    font-size: 1.2rem;
}

.hero button {
    margin-top: 20px;
    padding: 12px 30px;
    border: none;
    background: gold;
    color: lightblue;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
}

/* SECTIONS */
section {
    padding: 80px 20px;
    text-align: center;
    max-width: 1200px;
    margin: auto;
}

/* ABOUT */
#about {
    color: #ccc;
    line-height: 1.8;
}

/* CARDS */
.cards {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.card {
    position: relative;
    padding: 25px;
    border-radius: 50px;
    width: 25vw;
    height: 50vh;
    border: 1px solid #333;
    transition: 0.3s;
}
.card:hover {
    transform: translateY(-10px);
    border-color: gold;
}
.card1 {
    background-color: rgba(255,255,255,0.1);
    padding: 25px;
    border-radius: 50px;
    width: 25vw;
    height: 20vh;
    border: 1px solid #333;
    transition: 0.3s;
}

.card1:hover {
    transform: translateY(-10px);
    border-color: gold;
}

/* GALLERY */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
    margin-top: 30px;
}

.gallery img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    transition: 0.3s;
}

.gallery img:hover {
    transform: scale(1.05);
}

/* PRICING */
#pricing .card {
    border: 1px solid gold;
}

/* FAQ */
.faq-item {
    margin: 20px auto;
    max-width: 600px;
    text-align: left;
}

/* FORM */
form {
    max-width: 400px;
    margin: auto;
    display: flex;
    flex-direction: column;
}

form input, form textarea {
    margin: 10px 0;
    padding: 12px;
    border-radius: 5px;
    border: none;
}

form button {
    background: blue;
    color: burlywood;
    font-weight: bold;
    padding: 12px;
    border: none;
    cursor: pointer;
}

/* WHATSAPP */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
}

/* FOOTER */
footer {
    background: black;
    padding: 20px;
    text-align: center;
    margin-top: 40px;
}

/* MOBILE */
@media(max-width: 768px) {
    header {
        padding: 15px 20px;
    }

    .hero h2 {
        font-size: 2.5rem;
   /* CONTACT INFO */
.contact-info {
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 2;
}
    }

/* MAP */
.map {
    margin: 20px auto;
    max-width: 800px;
}

/* FORM TITLE */
#contact h3 {
    color: gold;
} }
.logo {
    display: flex;
    align-items: center;
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--primary);
}

.logo-icon {
    font-size: 1.5rem;
    margin-right: 8px;
    /* SLIDER */
.slider {
    max-width: 500px;
    margin: 20px auto;
}}

.img2 {
    width: 85vw;
    height: 70vh;
    object-fit: cover;
    border-radius: 10px;
}
.bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* GALLERY GRID */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 30px;
}

.gallery img {
    width: 80%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.gallery img:hover {
    transform: scale(1.05);
}

/* LIGHTBOX */
#lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    display: none;
    justify-content: center;
    align-items: center;
}

#lightbox img {
    max-width: 50%;
    max-height: 20%;
    border-radius: 10px;
}
