* {
    margin: 0;
    padding: 0;
    font-family: 'ArTarumianAreg+', sans-serif;
}
body {
    background-color: #2B332B;
    overflow-x: hidden;
}
.wave {
    position: absolute;
    bottom: 0;
    z-index: -1000;
    background-image: url("Vector\ 1.svg");
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    width: 100%;
}
#page {
    min-width: 100vw;
    min-height: 100vh;
    overflow: hidden;
    position: relative;
}

/* Navigation Styles */
nav {
    width: 95%;
    margin: 40px 50px;
    position: fixed;
    top: 0;
    z-index: 100;
}

#nav-toggle {
    background: transparent;
    position: absolute;
    left: 0;
    top: 50%;
    height: 50px;
    width: 50px;
    cursor: pointer;
    transform: translate(0%, -50%);
    border: none;
}

#nav-toggle span,
#nav-toggle span:before,
#nav-toggle span:after {
    cursor: pointer;
    border-radius: 10px;
    height: 3px;
    width: 50px;
    background: white;
    position: absolute;
    left: 0;
    top: 50%;
    display: block;
    content: '';
    transition: all 0.3s ease-in-out;
}

#nav-toggle span:before {
    top: -15px;
}

#nav-toggle span:after {
    top: 15px;
}

#nav-toggle.active span {
    background-color: transparent;
}

#nav-toggle.active span:before,
#nav-toggle.active span:after {
    top: 0;
}

#nav-toggle.active span:before {
    transform: rotate(135deg);
}

#nav-toggle.active span:after {
    transform: rotate(-135deg);
}

.l {
    width: 100%;
}

.l ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin-left: 100px;
    transform: translateX(-1000%);
    transition: all 0.3s ease-in-out;
}

#nav-toggle.active + .l ul {
    transform: translateX(0);
}

.l ul li {
    margin: 10px 0;
}

.l a {
    color: #fff;
    text-decoration: none;
    font-size: 17pt;
    transition: all 0.3s;
    padding: 10px 15px;
    border-radius: 5px;
    display: block;
}

.l a:hover {
    color: #afb9b2;
    background-color: rgba(175, 185, 178, 0.1);
}

.l a.active {
    background-color: rgba(175, 185, 178, 0.2);
}

/* Page Container Styles */
.container {
    min-width: 100%;
    min-height: 100vh;
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Loader/Transition Element */
.loader {
    position: fixed;
    inset: 0;
    z-index: 500;
    background: #1c201c;
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.76, 0, 0.24, 1);
    will-change: transform;
}

.loader.active {
    transform: translateX(0%);
}

/* .loader.exit {
    transform: translateX(100%);
} */

/* Page Content Styles */
.page-content {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.4s ease-in-out;
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.page-content.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

/* Home Page Styles */
.home-content {
    text-align: center;
}
.home-content .title {
    font-size: clamp(80px, 15vw, 150px);
    font-weight: bold;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #fff, #afb9b2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.home-content .title .moxe {
    display: inline-block;
    transition: all 0.3s ease;
    transition: letter-spacing 600ms cubic-bezier(0.83, 0, 0.17, 1);
}

.home-content .title .moxe:hover {
    transform: scale(1.1);
    text-shadow: 0 0 20px rgba(175, 185, 178, 0.5);
    letter-spacing: 125px;
}

.home-content .subtitle {
    font-size: 24px;
    color: #afb9b2;
    margin-top: 20px;
}

/* About Page Styles */
.about-content {
    max-width: 800px;
    padding: 40px;
    text-align: center;
}

.about-content h1 {
    font-size: 48px;
    margin-bottom: 30px;
    color: #afb9b2;
}

.about-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #ddd;
}

/* Contact Page Styles */
.contact-content {
    max-width: 600px;
    padding: 40px;
    text-align: center;
}

.contact-content h1 {
    font-size: 48px;
    margin-bottom: 30px;
    color: #afb9b2;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border: 2px solid #afb9b2;
    border-radius: 8px;
    background: transparent;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #fff;
    box-shadow: 0 0 10px rgba(175, 185, 178, 0.3);
}

.contact-form button {
    padding: 15px 30px;
    background: linear-gradient(45deg, #afb9b2, #2B332B);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
}

.contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(175, 185, 178, 0.3);
}

/* Footer Styles */
footer {
    color: #fff;
    height: 100px;
    padding: 0 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: calc(100% - 100px);
    position: fixed;
    bottom: 0;
    z-index: 10;
    transition: all 0.3s;
}

footer:hover {
    background-color: rgba(31, 29, 28, 0.4);
}

footer .left {
    display: flex;
    gap: 30px;
}

footer .left a {
    text-decoration: none;
    transition: all 0.3s;
    color: #afb9b2;
}

footer .left a:hover {
    color: #fff;
}

footer .left .active {
    color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .wave {
        background-size: 100%;
        background-position-y: 30pc;
    }
    .home-content .title {
        font-size: 60px;
    }
    
    .about-content,
    .contact-content {
        padding: 20px;
    }
    
    footer {
        padding: 0 20px;
        width: calc(100% - 40px);
    }
    
    nav {
        margin: 20px;
        width: calc(100% - 40px);
    }
}

/* Disable hover during transitions */
.disable-hover,
.disable-hover * {
    pointer-events: none !important;
}