/* Custom Font */
@font-face {
    font-family: 'Magnolia Script';
    src: url('MagnoliaScript.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: optional;
}

/* Global Resets */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styles */
body {
    font-family: Verdana, Geneva, sans-serif;
    background: linear-gradient(135deg, #fdfaf8 0%, #efe6dd 100%);
    color: #333;
    line-height: 1.6;
    min-height: 100vh;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Container */
.container {
    max-width: 600px;
    margin: 0 auto;
    background: #fdfaf8;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(183, 49, 47, 0.1);
}

/* Social Icons */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.social-icons a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.social-icons a:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(183, 49, 47, 0.2);
}

.social-icons img {
    width: 24px;
    height: 24px;
}

/* Profile Photo */
.profile-photo {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: block;
    border: 4px solid #b7312f;
    object-fit: cover;
    box-shadow: 0 5px 20px rgba(183, 49, 47, 0.3);
}

/* Profile Name - Uses Custom Font */
.profile-name {
    text-align: center;
    font-size: 24px;
    color: #b7312f;
    font-weight: 600;
    margin-bottom: 15px;
    font-family: 'Magnolia Script', cursive;
}

/* Tagline - Uses Custom Font */
.tagline {
    text-align: center;
    font-size: 16px;
    color: #b7312f;
    margin-bottom: 20px;
    line-height: 1.8;
    font-family: 'Magnolia Script', cursive;
}

/* Description */
.description {
    text-align: center;
    font-size: 15px;
    color: #555;
    margin-bottom: 10px;
    line-height: 1.8;
}

/* CTA Section */
.cta-section {
    text-align: center;
    margin-top: 20px;
}

/* CTA Title - Uses Custom Font */
.cta-title {
    font-size: 18px;
    color: #b7312f;
    margin-bottom: 20px;
    font-weight: 600;
    font-family: 'Magnolia Script', cursive;
}

/* Contact Form */
.contact-form {
    max-width: 100%;
    margin: 30px auto 0;
    padding: 25px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

/* Form Divider - Uses Custom Font */
.form-divider {
    text-align: center;
    margin: 30px 0 20px;
    color: #999;
    font-size: 14px;
    position: relative;
    padding: 0 15px;
    font-family: 'Magnolia Script', cursive;
}

.form-divider::before,
.form-divider::after {
    content: "";
    position: absolute;
    top: 50%;
    width: calc(50% - 140px);
    height: 1px;
    background: #efe6dd;
}

.form-divider::before {
    left: 0;
}

.form-divider::after {
    right: 0;
}

/* Form Groups */
.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #efe6dd;
    border-radius: 10px;
    font-family: Verdana, Geneva, sans-serif;
    font-size: 14px;
    transition: border-color 0.3s;
    background: #fdfaf8;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #b7312f;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    padding: 15px 25px;
    background: #b7312f;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.submit-btn:hover {
    background: #9a2826;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(183, 49, 47, 0.3);
}

/* Footer Links */
.footer-links {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #efe6dd;
    font-size: 11px;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 0.7;
    color: #333;
}

.footer-links span {
    color: #999;
    margin: 0 8px;
}

/* Mobile Responsive Styles */
@media (max-width: 480px) {
    body {
        display: block;
        padding: 20px 20px;
        min-height: auto;
    }
    
    body::after {
        content: "";
        display: block;
        height: 20px;
    }
    
    .container {
        padding: 30px 20px;
    }
    
    .profile-name {
        font-size: 22px;
    }
    
    .tagline,
    .description {
        font-size: 14px;
    }
    
    .profile-photo {
        width: 120px;
        height: 120px;
    }
    
    .social-icons {
        max-width: 220px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .social-icons a {
        width: 40px;
        height: 40px;
    }
    
    .contact-form {
        padding: 20px;
    }
    
    .form-divider {
        padding: 0 10px;
    }
    
    .form-divider::before,
    .form-divider::after {
        width: calc(50% - 120px);
    }
    
    .footer-links {
        font-size: 10px;
    }
}

/* Cookie Bot Overrides */
@media (max-width: 1280px) {
    #CybotCookiebotDialog {
        position: fixed !important;
        top: auto !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: auto !important;
        max-width: none !important;
        transform: none !important;
        margin: 0 !important;
        border-radius: 0 !important;
    }
}

#CybotCookiebotDialogHeader,
#CybotCookiebotDialog .CybotCookiebotDialogBodyBottomWrapper {
    display: none !important;
}
