/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Athelas', serif;
    color: rgba(242, 242, 242, 0.95);
    line-height: 1.6;
}

/* Container */
.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    background-image: url('background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Dark overlay */
.overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(46, 64, 50, 0.85);
    z-index: 0;
}

/* Main content */
.main-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.5rem;
    position: relative;
    z-index: 10;
}

.content-wrapper {
    text-align: center;
    max-width: 56rem;
    margin: 0 auto;
    padding: 3rem 0;
}

/* Title */
.title {
    font-size: 2.25rem;
    font-weight: 500;
    color: rgba(242, 242, 242, 0.95);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.title .accent {
    color: hsl(14, 65%, 55%);
}

/* Description */
.description {
    font-family: 'Figtree', sans-serif;
    font-size: 21px;
    color: rgba(242, 242, 242, 0.9);
    max-width: 42rem;
    margin: 0 auto 4rem;
    line-height: 1.75;
    padding: 0 1rem;
}

.desktop-break {
    display: none;
}

/* Signature */
.signature {
    margin-bottom: 4rem;
    color: rgba(242, 242, 242, 0.9);
}

.signature-text {
    font-style: italic;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.signature-team {
    font-weight: 500;
    font-size: 1rem;
}

/* Address */
.address {
    color: rgba(242, 242, 242, 0.8);
    font-size: 0.875rem;
}

.address p {
    margin-bottom: 0.25rem;
}

/* Footer */
.footer {
    position: relative;
    z-index: 10;
    padding: 1.5rem;
}

.footer-content {
    max-width: 80rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

/* Social link */
.social-link {
    color: rgba(242, 242, 242, 0.8);
    text-decoration: none;
    transition: color 0.2s ease;
    
    opacity: 0;
}

.social-link:hover {
    color: hsl(14, 65%, 55%);
}

/* Contact wrapper */
.contact-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(242, 242, 242, 0.8);
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-link:hover {
    color: hsl(14, 65%, 55%);
}

.contact-link:hover .contact-icon {
    border-color: hsl(14, 65%, 55%);
}

.contact-icon {
    border: 1px solid rgba(242, 242, 242, 0.8);
    border-radius: 50%;
    padding: 0.5rem;
    transition: border-color 0.2s ease;

    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info {
    text-align: left;
}

.contact-label {
    font-size: 0.75rem;
}

.contact-value {
    font-size: 0.875rem;
    font-weight: 500;
}

.contact-value.email {
    text-decoration: underline;
}

/* Responsive styles for tablets and larger */
@media (min-width: 640px) {
    .title {
        font-size: 3rem;
    }
    
    .desktop-break {
        display: inline;
    }
    
    .signature-text,
    .address {
        font-size: 1rem;
    }
    
    .contact-label {
        font-size: 0.875rem;
    }
    
    .contact-value {
        font-size: 1rem;
    }
    
    .footer-content {
        flex-direction: row;
        gap: 1rem;
    }
    
    .contact-wrapper {
        flex-direction: row;
        gap: 2rem;
    }
}

/* Responsive styles for desktop */
@media (min-width: 768px) {
    .title {
        font-size: 3.75rem;
    }
    
    .main-content {
        padding: 2rem;
    }
    
    .footer {
        padding: 2rem;
    }
}

/* Responsive styles for large desktop */
@media (min-width: 1024px) {
    .title {
        font-size: 4.5rem;
    }
}
