/* =========================
   GOOGLE FONT
========================= */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

/* =========================
   RESET
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

/* =========================
   ANIMATION
========================= */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================
   HEADER
========================= */
.top-bar {
    background: #05245c;
    color: white;
    padding: 10px 5%;
    font-size: 14px;
}

.contact-info {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.navbar {
    background: #0A3D91;
    padding: 18px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo h1 {
    color: white;
    font-size: 28px;
    font-weight: 700;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #D4AF37;
}

.book-btn {
    background: #D4AF37;
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.book-btn:hover {
    background: white;
    color: #0A3D91;
}

/* MOBILE HEADER */
@media (max-width: 900px) {
    .navbar {
        flex-direction: column;
        gap: 20px;
    }

    .nav-links {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .contact-info {
        flex-direction: column;
        text-align: center;
    }
}

/* =========================
   HERO
========================= */
.hero {
    width: 100%;
    height: 90vh;
    background:
        linear-gradient(rgba(10,61,145,0.75), rgba(10,61,145,0.75)),
        url('images/event-setup.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 5%;
}

.hero-content {
    max-width: 800px;
    color: white;
}

.hero-content h2 {
    font-size: clamp(32px, 5vw, 60px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 15px 35px;
    border-radius: 40px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
    cursor: pointer;
}

.btn-primary {
    background: #D4AF37;
    color: white;
}

.btn-primary:hover {
    background: white;
    color: #0A3D91;
}

.btn-secondary {
    border: 2px solid white;
    color: white;
}

.btn-secondary:hover {
    background: white;
    color: #0A3D91;
}

/* HERO MOBILE FIX */
@media (max-width: 768px) {
    .hero {
        height: 80vh;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
}

/* =========================
   SECTIONS BASE
========================= */
.services,
.gallery,
.pricing,
.contact {
    padding: 100px 5%;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 42px;
    color: #0A3D91;
    margin-bottom: 15px;
}

.section-title p {
    font-size: 18px;
    color: #555;
    max-width: 700px;
    margin: auto;
    line-height: 1.8;
}

/* =========================
   SERVICES
========================= */
.services {
    background: #F5F7FA;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-box {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: 0.4s;
}

.service-box:hover {
    transform: translateY(-10px);
}

.service-box img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.service-box h3 {
    color: #0A3D91;
    font-size: 24px;
    margin: 20px;
}

.service-box p {
    color: #666;
    font-size: 16px;
    margin: 0 20px 30px;
}

/* =========================
   WHY CHOOSE US
========================= */
.why-choose-us {
    padding: 100px 5%;
    background: #0A3D91;
    color: white;
}

.why-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.why-box {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 15px;
    transition: 0.4s;
}

.why-box:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-5px);
}

/* =========================
   GALLERY
========================= */
.gallery {
    background: #F5F7FA;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: 0.4s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

iframe {
    width: 100%;
    max-width: 800px;
    height: 450px;
    border-radius: 10px;
}
/* =========================
   PRICING
========================= */
.pricing{
    background: #111;
    padding: 80px 10%;
}

.pricing-container{
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.price-box{
    background: #222;
    padding: 30px;
    border-radius: 10px;
    width: 300px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.price-box h3{
    color: #ffffff;
    margin-bottom: 15px;
}

.price{
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
}

.price-box ul{
    list-style: none;
    padding: 0;
}

.price-box ul li{
    margin-bottom: 10px;
}

.price-btn{
    display: inline-block;
    background: #ffcc00;
    color: #000;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
}

.price-btn:hover{
    background: #ffffff;
}

.featured{
    border: 2px solid #ffcc00;
}
/* =========================
   WHATSAPP BUTTON
========================= */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.whatsapp-float img {
    width: 35px;
}

/* =========================
   CONTACT
========================= */
.contact {
    background: #F5F7FA;
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

/* =========================
   FOOTER
========================= */
.footer {
    background: #05245c;
    color: white;
    padding: 70px 5% 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 15px;
    font-size: 13px;
    color: #ccc;
}

/* =========================
   FINAL MOBILE SAFETY
========================= */
@media (max-width: 768px) {

    .section-title h2 {
        font-size: 28px;
    }

    .section-title p {
        font-size: 15px;
    }

    .services,
    .gallery,
    .pricing,
    .contact {
        padding: 70px 5%;
    }
}

.header{
    background: #000;
    padding: 15px 20px;
}

.top-header{
    text-align: center;
    color: white;
    padding-bottom: 10px;
}

.logo-text{
    color: white;
    font-size: 28px;
    margin: 0;
}

.contact-info p{
    margin: 3px 0;
    color: white;
    font-size: 14px;
}

.navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links a{
    color: white;
}
