/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
background-color: #000000;
    color: #333;
background-image: url(/image/a32.jpeg);
    background-size: 35%;
    background-position: right;
    background-repeat: no-repeat;

}

/* Header */
.header {
   color: #ffffff;
    text-align: center;
    padding: 20px 0;
}

.header h1 {
    font-size: 2rem;
    font-family: cursive;
}

.navigation{ 
    padding-top: 20px;
}

    .navigation a {
    color: #fff;
    text-decoration: none;
font-size: 19px;
    font-weight: 300;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.navigation a:hover {
    color: #00ffff;
}

.navigation a {
    color: #fff;
    text-decoration: none;
    margin: 0 1rem;
    font-size: 1.2rem;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.navigation a:hover {
    color: #00ffff;
}

/* Mobile Navigation */
.mobile-nav {
display: none;
position: relative;
}

.hamburger {
position: relative;
width: 30px;
height: 20px;
border: none;
background: none;
cursor: pointer;
display: flex;
flex-direction: column;
justify-content: space-between;
z-index: 11;
}

.hamburger span {
display: block;
width: 100%;
height: 2px;
background-color: #413c3c;
border-radius: 4px;
transition: all 0.4s ease;
}

.hamburger.active span:nth-child(1) {
transform: rotate(45deg);
position: absolute;
top: 10px;
}

.hamburger.active span:nth-child(2) {
opacity: 0;
/* Hide the middle bar */
}

.hamburger.active span:nth-child(3) {
transform: rotate(-45deg);
position: absolute;
top: 10px;
}

.mobile-menu {
display: flex;
flex-direction: column;
position: fixed;
top: 0;
right: -100%;
width: 100%;
height: 40%;
background-color: rgba(0, 0, 0,0.84);
padding: 1rem;
text-align: center;
z-index: 10;
transition: right 0.4s ease;
}

.mobile-menu.active {
right: 0;
}

.mobile-menu a {
text-decoration: none;
color: #8f108f;
  font-family: monospace;
font-size: 22px;
font-weight: bold;
margin-bottom: 10px;
}

.mobile-menu a:hover {
color: aqua;
}
.mobile-nav.active .mobile-menu {
display: flex;
}
/* Contact Form Container */
.contact-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    padding-top: 65px;
}

.contact-form {
    width: 100%;
    max-width: 500px;
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    background-image: url(/image/bg3.png);
        background-size: 35%;
        background-position: right;
        background-repeat: no-repeat;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

.contact-form button {
    width: 100%;
    background-color: #ff00ff;
    color: #fff;
    border: none;
    padding: 10px;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #00ffff;
}

/* Footer */
.footer {
    background-color: #000000;
    color: #fff;
    padding: 10px 0;
    text-align: center;
}

.social-icons a {
    color: #fff;
    margin: 0 10px;
    font-size: 1.5rem;
    text-decoration: none;
    transition: color 0.3s ease;
}



/* Responsive Design */
@media (max-width: 768px) {
    .contact-form {
        padding: 15px;
    }

    .header h1 {
        font-size: 1.5rem;
    }

    .social-icons a {
        font-size: 1.2rem;
    }

header .navigation {
    display: none;
}

.mobile-nav {
    display: block;
}

.hamburger {
    font-size: 1.8rem;
    background: none;
    border: none;
    color: rgb(250, 231, 231);
    cursor: pointer;
    position: absolute;
    top: -50px;
    right: 15px;
}
}

@media (max-width: 480px) {
header .navigation {
        display: none;
    }

    .mobile-nav {
        display: block;
    }

    .header h1 {
        font-size: 2rem;
    }
    
    .hamburger {
        font-size: 1.8rem;
        background: none;
        border: none;
        color: rgb(250, 231, 231);
        cursor: pointer;
        position: absolute;
        top: -45px;
        right: 15px;
    }
}
