*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color:#000000;
}
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 30px;
    background-color: #000000;
    color:#b74b4b;
    position: relative;
    transition: background-color 0.3s ease;
    height: 15vh;
}

.logo a {
    text-decoration: none;
    color: #b74b4b;
    font-size: 24px;
    font-weight: bold;
    letter-spacing:2px;
    transition: color 0.3s ease;
    
}

/* Navbar Styles */
.navbar ul {
    display: flex;
    gap:18px;
    list-style-type: none;
    padding: 0 30px;
}

.navbar li a {
    text-decoration: none;
    color: white;
    font-size: 16px;
    transition: color 0.3s ease;
    transition: 1s;
    text-transform: uppercase;
    padding: 15px;
}

.navbar li a:hover {
    color: #b74b4b;
    text-decoration: underline 2px;
    transition: .3s;
    
}

/* Menu Icon for mobile view */
.menu-icon {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    height: 20px;
    width: 25px;
}

.menu-icon span {
    background-color: white;
    height: 3px;
    width: 100%;
    transition: all 0.3s ease;
}

/* Mobile Menu (hidden by default) */
.navbar ul {
    display: flex;
    
}

@media (max-width: 768px) {
    .navbar ul {
        position: absolute;
        top: 60px;
        left: 25vh;
        width: 80%;
        background-color: #000000;
        flex-direction: column;
        align-items: center;
        display: none; /* Hidden by default */
        transition: all 0.3s ease-in-out;
    }

    .navbar.active ul {
        display: flex; /* Shows the menu when 'active' class is added */
    }

    .menu-icon {
        display: flex;
    }

    /* Hamburger Icon Animation */
    .menu-icon.open span:nth-child(1) {
        transform: rotate(50deg);
        position: relative;
        top: 6px;
    }

    .menu-icon.open span:nth-child(2) {
        opacity: 0;
    }

    .menu-icon.open span:nth-child(3) {
        transform: rotate(-45deg);
        position: relative;
        bottom:6px;
    }

    .navbar li {
        padding: 10px 0;
    }

    .navbar li a {
        font-size: 18px;
    }
}

/* Header hover effects */
.header:hover {
    background-color: #000000;
}
@media (max-width: 768px) {
    .navbar ul {
        position: absolute;
        top: 60px;
        right: 1.5em;
        width: 250px;
        background-color: #000000;
        flex-direction: column;
        align-items: center;
        display: none; /* Hidden by default */
        transition: all 0.3s ease-in-out;
    }

    .navbar.active ul {
        display: flex; /* Shows the menu when 'active' class is added */
    }

    .menu-icon {
        display: flex;
    }

    /* Hamburger Icon Animation */
    .menu-icon.open span:nth-child(1) {
        transform: rotate(50deg);
        position: relative;
        top: 6px;
    }

    .menu-icon.open span:nth-child(2) {
        opacity: 0;
    }

    .menu-icon.open span:nth-child(3) {
        transform: rotate(-45deg);
        position: relative;
        bottom:6px;
    }

    .navbar li {
        padding: 10px 0;
    }

    .navbar li a {
        font-size: 18px;
    }
}


.contact-container
{
    height:75vh;
    display: flex;
    align-items: center;justify-content: space-evenly;
}
.contact-left
{
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 20px;
    margin-bottom: 15vh;
}
.contact-left-titel h2
{
    font-weight: 600;
    color: #b74b4b;
    font-size: 40px;
    margin-bottom: 10px;
}
.contact-left-titel hr
{
    border: none;
    width: 120px;
    height: 5px;
    background-color: #b74b4b;
    border-radius: 10px;
    margin-bottom: 20px;
}
.contact-input
{
    width: 400px;
    height: 50px;
    border: none;
    outline: none;
    padding-left: 25px;
    font-weight: 500;
    border-radius: 50px;
}
.contact-left textarea
{
    height: 160px;
    padding-top: 15px;
    border-radius: 20px;
}
.contact-input:focus
{
    border: 2px solid #b74b4b;
}
.contact-input::placeholder
{
color: rgb(46, 45, 47);
}
 .btn
{
    display: inline-block;
    padding: 1rem 2rem;
    background-color: black;
    border-radius: 4rem;
    font-size: 1rem;
    color: #b74b4b;
    letter-spacing: 0.3rem;
    font-weight: 600;
    border: 2px solid #b74b4b;
    transition: 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}.btn:hover{
    transform: scale3d(1.03);
    background-color: #b74b4b;
    color: black;
    box-shadow: 0 0 50px #b74b4b;
    text-transform: uppercase;
    transition: .8s;
}
.contact-right img
{
    width: 500px;
    margin-bottom: 100px;
}
@media (max-width:800px)
{
.contact-input
{
    width: 80vw;
}
.contact-right{
    display: none;
}
}