/* ============================= */
/* GLOBAL STYLES */
/* ============================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #000;
    color: #fff;
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

a {
    text-decoration: none;
}

/* ============================= */
/* HEADER */
/* ============================= */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 60px;
    background: #000;
    border-bottom: 1px solid #1a1a1a;
}

.logo img {
    height: 150px; /* Increased from 110px for maximum visibility */
    transition: all 0.3s ease;
}

/* Optional: Add shadow or border to logo for extra visibility */
.logo img {
    box-shadow: 0 4px 20px rgba(255, 20, 147, 0.6);
    border-radius: 12px;
}

nav {
    display: flex;
    align-items: center;
}

nav a {
    color: #fff;
    margin-left: 28px;
    font-weight: 400;
    font-size: 15px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

nav a i {
    font-size: 14px;
    color: #ff1493;
}

nav a:hover {
    color: #ff1493;
    transform: translateY(-2px);
}

nav a.active {
    color: #ff1493;
}

.btn {
    background: linear-gradient(to right, #ff1493, #c71585);
    padding: 8px 18px;
    border-radius: 25px;
    transition: 0.3s;
}

.btn i {
    color: #fff;
}

.btn:hover {
    box-shadow: 0 0 15px rgba(255, 20, 147, 0.6);
}

/* ============================= */
/* HERO SECTION */
/* ============================= */
.hero {
    height: 85vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.hero h1 {
    font-size: 50px;
    color: #ff1493;
    margin-bottom: 20px;
}

.hero p {
    color: #ccc;
    font-size: 18px;
    margin-bottom: 30px;
}

.primary-btn {
    background: #ff1493;
    padding: 12px 25px;
    border-radius: 30px;
    color: #fff;
    transition: 0.3s;
}

.primary-btn:hover {
    box-shadow: 0 0 20px rgba(255, 20, 147, 0.6);
}

/* ============================= */
/* FEATURES SECTION */
/* ============================= */
.features {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 80px 60px;
    flex-wrap: wrap;
}

.card {
    background: #111;
    padding: 35px;
    border-radius: 12px;
    width: 300px;
    text-align: center;
    border: 1px solid #1a1a1a;
    transition: 0.3s;
}

.card:hover {
    border-color: #ff1493;
    box-shadow: 0 0 20px rgba(255, 20, 147, 0.25);
}

.card h3 {
    margin-bottom: 15px;
    color: #fff;
}

.card p {
    color: #bbb;
}

/* ============================= */
/* PAGE GENERAL */
/* ============================= */
.page {
    padding: 100px 60px;
}

.page h1 {
    font-size: 40px;
    margin-bottom: 25px;
    color: #ff1493;
}

/* ============================= */
/* SERVICES SECTION */
/* ============================= */
.services-section {
    padding: 100px 60px;
    text-align: center;
}

.services-header h1 {
    font-size: 42px;
    color: #ff1493;
    margin-bottom: 15px;
}

.services-header p {
    color: #ccc;
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}

.service-card {
    background: #111;
    padding: 40px 30px;
    border-radius: 18px;
    transition: 0.4s;
    border: 1px solid #1a1a1a;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 25px rgba(255, 20, 147, 0.25);
    border-color: #ff1493;
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #ff1493, #c71585);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.service-icon i {
    color: #fff;
    font-size: 26px;
}

.service-card h3 {
    margin-bottom: 15px;
}

.service-card p {
    color: #bbb;
    font-size: 14px;
}

/* ============================= */
/* GALLERY */
/* ============================= */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.gallery-box {
    background: #111;
    padding: 90px 20px;
    text-align: center;
    border-radius: 15px;
    border: 1px solid #1a1a1a;
    transition: 0.3s;
}

.gallery-box:hover {
    border-color: #ff1493;
    box-shadow: 0 0 20px rgba(255, 20, 147, 0.25);
}

/* ============================= */
/* CONTACT FORM */
/* ============================= */
form {
    max-width: 600px;
    margin: auto;
}

form input,
form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 18px;
    border-radius: 8px;
    border: none;
    background: #111;
    color: #fff;
}

form textarea {
    min-height: 120px;
}

form button {
    background: linear-gradient(to right, #ff1493, #c71585);
    padding: 12px 25px;
    border: none;
    color: #fff;
    border-radius: 25px;
    cursor: pointer;
    transition: 0.3s;
}

form button:hover {
    box-shadow: 0 0 15px rgba(255, 20, 147, 0.6);
}

/* ============================= */
/* FOOTER */
/* ============================= */
footer {
    text-align: center;
    padding: 25px;
    background: #000;
    border-top: 1px solid #1a1a1a;
    color: #aaa;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */
@media (max-width: 992px) {
    header {
        padding: 15px 30px;
    }

    .features {
        padding: 60px 30px;
    }

    .services-section,
    .page {
        padding: 80px 30px;
    }

    .logo img {
        height: 120px; /* Medium screens */
    }
}

@media (max-width: 768px) {
    nav {
        display: none; /* Can upgrade to hamburger menu later */
    }

    .hero h1 {
        font-size: 36px;
    }

    .logo img {
        height: 90px; /* Mobile size */
    }
}
<header>
    <div class="logo">
        <img src="logo.png" alt="Logo">
    </div>

    <div class="mobile-menu-icon" onclick="toggleMenu()">
        <i class="fas fa-bars"></i>
    </div>

    <nav id="nav-menu">
        <a href="index.html" class="active">Home</a>
        <a href="services.html">Services</a>
        <a href="gallery.html">Gallery</a>
        <a href="contact.html">Contact</a>
    </nav>
</header>

<!-- WhatsApp Floating Button -->
<a href="https://wa.me/0814605913" class="whatsapp-float" target="_blank">
    <i class="fab fa-whatsapp"></i>
</a>