/* ✅ Prevent Navbar Overlap */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #F1EADF;
    padding-top: 100px; /* Ensures content is below the navbar */
}

/* ✅ Contact Section (Main Container) */
.contact-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    padding: 30px;
    border-radius: 30px; /* Squircle effect */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    width: 70%; /* Wider box */
    margin: 120px auto; /* Centered */
    text-align: left;
    gap: 40px;
}

/* ✅ Contact Info (Left Side) */
.contact-info {
    flex: 1;
}

/* ✅ Contact Items */
.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 15px 0;
    flex-wrap: wrap;
}

/* ✅ Contact Icons */
.contact-item img {
    width: 40px;
    height: auto;
}

/* ✅ Contact Text */
.contact-item p {
    font-size: 18px;
    font-weight: bold;
    margin: 0;
}

/* ✅ Subscribe Form (Right Side) */
.subscribe-form {
    flex: 1;
    text-align: center;
}

.subscribe-form h2 {
    margin-bottom: 15px;
}

/* ✅ Input Fields */
.subscribe-form input {
    width: 90%;
    padding: 12px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 16px;
}

/* ✅ Subscribe Button */
.subscribe-form button {
    width: 95%;
    padding: 12px;
    background-color: red;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
}

.subscribe-form button:hover {
    background-color: darkred;
}

/* 📱 Responsive Fixes */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        text-align: center;
        width: 90%;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .contact-item img {
        width: 35px;
    }

    .subscribe-form input, 
    .subscribe-form button {
        width: 100%;
    }
}
/* Header Styling */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    background-color: white;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    height: auto;
    min-height: 60px;
    overflow: visible;
}

/* Logo */
.logo {
    width: 230px;
    height: auto;
    max-height: 50px;
    object-fit: contain;
}

/* Navigation Bar (Desktop) */
nav {
    display: flex;
    flex-grow: 1;
    justify-content: flex-end;
    margin-right: 30px;
}

/* Navigation Links */
.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 15px;
}

/* Nav Items */
.nav-links li {
    display: inline;
}

.nav-links li a {
    text-decoration: none;
    color: black;
    font-size: 16px;
    font-weight: bold;
    padding: 14px 18px;
    border-radius: 20px;
    transition: all 0.3s ease-in-out;
    white-space: nowrap;
    display: inline-block;
}

/* ✅ Rounded Hover Effect */
.nav-links li a:hover {
    background-color: rgba(255, 0, 0, 0.2);
    border-radius: 30px;
    padding: 18px 22px;
}

/* Mobile Menu Button */
.menu-toggle {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

/* ✅ Fixed Mobile Navbar (Inside Window + Animation) */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    nav {
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: white;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease-in-out;
        transform: translateY(-100%);
    }

    nav.active {
        transform: translateY(0);
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding: 15px 0;
    }

    .nav-links li {
        display: block;
        width: 100%;
        text-align: center;
    }

    .nav-links li a {
        display: block;
        width: 100%;
        padding: 14px 20px;
        font-size: 18px;
    }

    .nav-links li a:hover {
        background-color: rgba(255, 0, 0, 0.3);
        border-radius: 40px;
        padding: 20px 24px;
    }
}

/* ✅ Prevent Image Selection */
img {
    user-select: none;
    pointer-events: none;
}

