@import url('https://fonts.googleapis.com/css2?family=Dancing+Script&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display&display=swap');

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: 'Playfair Display', serif;
    overflow-x: hidden; /* Prevents horizontal scrolling */
    overflow-y: hidden; /* Prevents vertical scrolling on larger screens */
    width: 100vw; /* Ensures body takes full viewport width */
}

.container {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100vh;
    max-width: 100%; /* Prevents exceeding viewport */
    box-sizing: border-box; /* Includes padding/borders in width */
}

.left-half, .right-half {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.title {
    font-size: 5.5rem;
    color: #ff007f;
    font-family: 'Dancing Script', cursive;
    font-weight: bold;
    letter-spacing: 2px;
    text-shadow: 0 0 10px #ff007f, 0 0 20px #ff33a6, 0 0 30px #ff66cc;
}

.image-placeholder {
    width: 425px;
    height: 425px;
    background-color: rgba(255, 255, 255, 0.1);
    margin: 30px auto;
    border-radius: 10px;
    border: 2px solid #ff007f;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.profile-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.right-half form {
    width: 80%;
    max-width: 400px;
    font-family: 'Playfair Display', serif;
}

.right-half form label {
    display: block;
    margin-top: 10px;
    color: #ff007f;
}

.right-half form input,
.right-half form textarea {
    width: 100%;
    padding: 5px;
    margin-top: 5px;
    border: 1px solid #ff007f;
    background-color: #000;
    color: #fff;
}

.right-half form button {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #ff007f;
    color: #fff;
    border: none;
    cursor: pointer;
}

.form-title {
    font-size: 1.5rem;
    color: #ff007f;
    margin-bottom: 20px;
    text-align: center;
}

.social-links {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-links a {
    color: #ff007f;
    font-size: 24px;
    text-decoration: none;
}

.social-links a:hover {
    color: #ff33a6;
}

.feedback-message {
    margin-top: 20px;
    width: 100%;
    text-align: center;
}

@media (max-width: 768px) {
    body {
        overflow-x: hidden;
        overflow-y: auto;
    }
    .container {
        flex-direction: column;
    }
    .left-half, .right-half {
        width: 100%;
        height: auto;
        padding: 20px;
        box-sizing: border-box;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 3rem;
    }

    .image-placeholder {
        width: 250px;
        height: 250px;
    }

    .social-links a {
        font-size: 18px;
    }
}



