@import url('https://fonts.googleapis.com/css2?family=Bubbler+One&family=Caprasimo&family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Macondo&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Oswald:wght@200..700&family=Roboto:ital,wght@0,100..900;1,100..900&family=Smooch+Sans:wght@100..900&family=Special+Gothic+Expanded+One&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: white;
    font-family: "Montserrat", sans-serif;
}

html, body {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}
body::selection{

    background-color: #a2d2ff;
    color: black;
}

.cursor {
    pointer-events: none;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    position: fixed;
    background-color: #a2d2ff;
    z-index: 1000;
    mix-blend-mode: difference;
    transition: all 0.3s ease;
    background-position: center;
    background-size: cover;
}

#nav {
    width: 100%;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px 30px;
    position: fixed;
    mix-blend-mode: difference;
    z-index: 102;
}

#nav a {
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease;
}

#nav a:hover {
    color: #a2d2ff;
}

#nav-part2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

#purple {
    height: 100vh;
    width: 100vw;
    z-index: 100;
    top: 0;
    position: fixed;
    background-color: #a2d2ff;
    opacity: 0;
    display: none;
}

.main {
    background: linear-gradient(135deg, #000 0%, #111 50%, #000 100%);
    min-height: 100vh;
}

.contact-hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-text {
    text-align: center;
    z-index: 10;
}

.hero-text h1 {
    font-size: 8vw;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
    transition-duration: 0.5s;
}
.hero-text h1:hover{
    color: #a2d2ff;

}



.hero-text p {
    font-size: 1.5vw;
    opacity: 0.8;
    margin-bottom: 30px;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.shape {
    position: absolute;
    border: 2px solid #a2d2ff;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.shape:nth-child(1) {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape:nth-child(3) {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.shape:nth-child(4) {
    width: 120px;
    height: 120px;
    top: 30%;
    right: 30%;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.contact-section {
    padding: 100px 5vw;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
}

.contact-info {
    padding: 40px 0;
}

.contact-info h2 {
    font-size: 4vw;
    margin-bottom: 40px;
    color: #a2d2ff;
}

.info-item {
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(162, 210, 255, 0.05);
    border: 1px solid rgba(162, 210, 255, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.info-item:hover {
    background: rgba(162, 210, 255, 0.1);
    transform: translateX(10px);
    border-color: #a2d2ff;
}

.info-item h3 {
    color: #a2d2ff;
    margin-bottom: 10px;
    font-size: 1.2em;
    margin-left: 30px;
}

.info-item p {
    opacity: 0.8;
    font-size: 1.1em;
}
.info-item img{
    margin-right: 2px;
    position: absolute;
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.social-link {
    width: 60px;
    height: 60px;
    border: 2px solid #a2d2ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: #a2d2ff;
    transition: top 0.3s ease;
    z-index: -1;
}

.social-link:hover::before {
    top: 0;
}

.social-link:hover {
    color: black;
    transform: scale(1.1);
}

.contact-form {
    background: rgba(162, 210, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(162, 210, 255, 0.2);
    backdrop-filter: blur(10px);
}

.contact-form h2 {
    font-size: 3vw;
    margin-bottom: 30px;
    text-align: center;
    color: #a2d2ff;
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: transparent;
    border: 2px solid rgba(162, 210, 255, 0.3);
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #a2d2ff;
    box-shadow: 0 0 20px rgba(162, 210, 255, 0.3);
}

.form-group label {
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    pointer-events: none;
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -10px;
    left: 15px;
    font-size: 12px;
    color: #a2d2ff;
    background: rgba(0, 0, 0, 0.8);
    padding: 0 10px;
    border-radius: 5px;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(45deg, #a2d2ff, #ffffff);
    border: none;
    border-radius: 10px;
    color: black;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(162, 210, 255, 0.4);
}

.fun-section {
    padding: 100px 5vw;
    text-align: center;
}

.fun-section h2 {
    font-size: 4vw;
    margin-bottom: 50px;
    color: #a2d2ff;
}

.interactive-elements {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.fun-card {
    background: rgba(162, 210, 255, 0.05);
    padding: 30px 20px;
    border-radius: 20px;
    border: 2px solid rgba(162, 210, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.fun-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, #a2d2ff, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: rotate 2s linear infinite;
}

@keyframes rotate {
    100% { transform: rotate(360deg); }
}

.fun-card:hover::before {
    opacity: 0.1;
}

.fun-card:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: #a2d2ff;
}

.fun-card h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #a2d2ff;
    z-index: 2;
    position: relative;
}

.fun-card p {
    opacity: 0.8;
    z-index: 2;
    position: relative;
}

.surprise-button {
    margin-top: 50px;
    padding: 20px 40px;
    background: transparent;
    border: 2px solid #a2d2ff;
    border-radius: 50px;
    color: #a2d2ff;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.surprise-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: #a2d2ff;
    border-radius: 50%;
    transition: all 0.5s ease;
    transform: translate(-50%, -50%);
}

.surprise-button:hover::before {
    width: 300px;
    height: 300px;
}

.surprise-button:hover {
    color: black;
}

.surprise-button span {
    position: relative;
    z-index: 2;
}

.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #a2d2ff;
    border-radius: 50%;
    opacity: 0;
}

@keyframes particle-float {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) scale(1);
        opacity: 0;
    }
}

.typing-text::after {
    content: '|';
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.hidden {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .contact-section {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .hero-text h1 {
        font-size: 12vw;
    }
    
    .hero-text p {
        font-size: 4vw;
    }
    
    .contact-info h2,
    .contact-form h2,
    .fun-section h2 {
        font-size: 8vw;
    }
}
