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

html {
    scroll-behavior: smooth;
}

body {
    height: 100vh;
    background-color: #d7ccc8;
    overflow: hidden;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px 20px;
    height: calc(100vh - 150px);
    overflow-y: auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-title {
    font-size: 6em;
    font-weight: bold;
    color: #3e2723;
    margin-bottom: 20px;
    font-family: 'BritannicBold';
}

.contact-divider {
    width: clamp(300px, 50%, 600px);
    height: 3px;
    background: linear-gradient(to right, transparent, #5d4037, transparent);
    margin: 0 auto 25px;
}

.contact-subtitle {
    font-size: 1.4em;
    color: #5d4037;
    font-style: italic;
    margin-bottom: 30px;
}

.contact-main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
    margin-bottom: 40px;
}

.contact-info {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: 0 20px 40px rgba(93, 64, 55, 0.1);
    border: 2px solid rgba(93, 64, 55, 0.1);
}

.contact-info h2 {
    font-family: 'BritannicBold';
    font-size: 2em;
    color: #3e2723;
    margin-bottom: 25px;
    text-align: center;
}

.contact-detail {
    margin-bottom: 30px;
    text-align: center;
}

.contact-detail h3 {
    font-size: 1.3em;
    color: #5d4037;
    margin-bottom: 10px;
    font-weight: bold;
}

.contact-email {
    font-size: 1.5em;
    color: #3e2723;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    background-color: #dfd7d3;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-email:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.4);
    color: #5d4037;
}

.social-section {
    text-align: center;
}

.social-section h2 {
    font-family: 'BritannicBold';
    font-size: 2em;
    color: #3e2723;
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #3e2723;
    transition: all 0.3s ease;
    padding: 30px 25px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border: 2px solid transparent;
    min-width: 150px;
}

.social-link:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.4);
    border-color: #5d4037;
    box-shadow: 0 20px 40px rgba(93, 64, 55, 0.2);
}

.social-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

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

.social-name {
    font-size: 1.2em;
    font-weight: bold;
    font-family: 'BritannicBold';
}

@media (max-width: 1024px) {
    .contact-main-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .contact-title {
        font-size: 2.5em;
    }

    .social-links {
        flex-direction: column;
        align-items: center;
    }
}

