
/* Hero Section */
.hero-section {
    background: url('img/rockContact.svg'), linear-gradient(45deg, #FFFFFF 0%, #e6e6e6 50%, #bfbfbf 100%);
    background-size: cover, cover;
    background-position: center, center;
    background-repeat: no-repeat, no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
}

.email-button-container {
    text-align: center;
    z-index: 4;
}

.email-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(12, 192, 223, 0.5);
    border-radius: 50px;
    padding: 1.5rem 3rem;
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.email-button:hover {
    transform: scale(1.05) translateY(-5px);
    border-color: rgba(12, 192, 223, 0.8);
    box-shadow: 0 30px 80px rgba(12, 192, 223, 0.4);
    background: rgba(12, 192, 223, 0.1);
}

.button-icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 10px rgba(12, 192, 223, 0.8));
}

.button-text {
    letter-spacing: 0.1em;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Contact Info Section */
.contact-info-section {
    background: url('img/slate.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100vw;
    overflow: visible;
    color: white;
    padding: 5rem 2rem;
    position: relative;
    z-index: 2;
    margin-top: 80vh;
    z-index: 7;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5))
            drop-shadow(0 40px 80px rgba(0, 0, 0, 0.3));
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-slate-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-slate-content h2 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
    text-shadow:
        0 0 5px #ffffff,
        0 0 10px #ffffff,
        0 0 15px #ffffff;
}

.contact-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    line-height: 1.6;
    font-style: italic;
}

.contact-slate-content .email-button-container {
    margin-top: 2rem;
}

.email-address {
    margin-top: 1.5rem;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    transition: color 0.3s ease;
}

.contact-details h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 3rem;
    text-align: center;
    color: white;
    text-shadow:
        0 0 5px #ffffff,
        0 0 10px #ffffff,
        0 0 15px #ffffff;
}

.contact-item {
    margin-bottom: 2rem;
    text-align: center;
}

.contact-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #0cc0df;
}

.contact-item p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Contact Form Section */
.contact-form-section {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    padding: 5rem 2rem;
    margin-top: -100px;
    position: relative;
    z-index: 2;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
    color: #333;
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    background: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0cc0df;
    box-shadow: 0 0 0 3px rgba(12, 192, 223, 0.1);
    background: rgba(255, 255, 255, 0.95);
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: #0cc0df;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.submit-btn:hover {
    background: #0aa0c0;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(12, 192, 223, 0.3);
}

/* Footer */
.about-footer {
    background: linear-gradient(45deg, #0b0b0b 0%, #242424 50%, #0e0d0d 100%);
    color: white;
    padding: 3rem 2rem 1rem;
    margin-top: 0 !important;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #0cc0df;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #0cc0df;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 2rem;
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Hide contact heading on desktop - only show on mobile */
.contact-hero-content {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-hero-content h1 {
        font-size: 2.5rem;
    }

    .contact-details h2,
    .form-container h2 {
        font-size: 2rem;
    }

    .contact-info-section,
    .contact-form-section {
        padding: 3rem 1rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}