@font-face {
    font-family: 'Griffiths';
    src: url('Griffiths.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'JetBrains Mono';
    src: url('JetBrainsMono-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'JetBrains Mono';
    src: url('JetBrainsMono-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'CS Brian';
    src: url('CSBrian-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Billion Monoline';
    src: url('The Billion Monoline.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

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

html {
    overflow-x: hidden;
}

body {
    font-family: 'JetBrains Mono', monospace;
    background: url('contact-bg.png') no-repeat center center fixed;
    background-size: cover;
    min-height: 100vh;
    color: white;
    overflow-x: hidden;
    position: relative;
    width: 100%;
    max-width: 100vw;
}

.back-button {
    position: fixed;
    top: 30px;
    left: 40px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1000;
    opacity: 0;
    animation: fadeIn 0.8s ease-out 0.5s forwards;
}

.back-button svg {
    width: 18px;
    height: 18px;
}

.back-button:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateX(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.back-button svg {
    transition: transform 0.3s ease;
}

.back-button:hover svg {
    transform: translateX(-3px);
}

.container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    min-height: 100vh;
    padding: 0;
    gap: 0;
}

.left-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    padding: 80px 40px 40px 60px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.left-column > * {
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
}

.brand-title {
    font-family: 'CS Brian', sans-serif;
    font-size: 3.5rem;
    font-weight: normal;
    line-height: 0.8;
    margin-bottom: 15px;
    animation-delay: 0.1s;
}

.intro-text {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 15px;
    animation-delay: 0.3s;
    word-wrap: break-word;
}

.address-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 0.9rem;
    line-height: 1.4;
    animation-delay: 0.5s;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 15px;
    animation-delay: 0.7s;
}

.contact-btn {
    background: white;
    color: #000;
    border: none;
    padding: 12px 22px;
    border-radius: 50px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    max-width: 280px;
    position: relative;
    overflow: hidden;
}

.contact-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background: #fff0f5; /* Very light pink tint */
}

.contact-btn:active {
    transform: translateY(-1px);
}

.right-column {
    display: flex;
    flex-direction: column;
    padding: 10px 10px 10px 40px;
    min-height: 100vh;
    opacity: 0;
    animation: fadeIn 1s ease-out 0.2s forwards;
}

.feature-card {
    background: #000;
    border-radius: 20px;
    padding: 40px 35px;
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
}

/* Gradient overlay */
.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 0, 114, 0.12) 0%, rgba(255, 54, 0, 0.12) 100%);
    pointer-events: none;
    z-index: 1;
    opacity: 1;
}

/* Subtle noise texture overlay */
.feature-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 2;
}

.feature-text, .cta-content {
    position: relative;
    z-index: 3;
}

.feature-text {
    font-family: 'CS Brian', sans-serif;
    font-size: 1.3rem;
    line-height: 1.4;
    background: linear-gradient(90deg, #FF0072 0%, #FF3600 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.featured {
    font-weight: normal;
}

.year {
    font-weight: normal;
}

.cta-content {
    margin-top: 20px;
    position: relative;
}

.cta-text {
    font-family: 'CS Brian', sans-serif;
    font-size: 2.2rem;
    line-height: 1.2;
    font-weight: normal;
    margin-bottom: 0;
}

.cta-signature {
    font-family: 'Billion Monoline', cursive;
    font-size: 3.5rem;
    background: linear-gradient(90deg, #FF0072 0%, #FF3600 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: rotate(-5deg);
    display: inline-block;
    transition: transform 0.3s ease;
    position: absolute;
    top: 15px;
    left: 0;
    z-index: 3;
}

.cta-signature:hover {
    transform: rotate(0deg) scale(1.1);
}

@media (max-width: 800px) {
    .left-column {
        padding: 70px 30px 40px 40px;
    }
    
    .right-column {
        padding: 10px 10px 10px 30px;
    }
    
    .back-button {
        top: 15px;
        left: 30px;
        padding: 11px 18px;
        font-size: 0.88rem;
    }
    
    .back-button svg {
        width: 18px;
        height: 18px;
    }
    
    .brand-title {
        font-size: 3rem;
    }
    
    .feature-text {
        font-size: 1.2rem;
    }
    
    .cta-text {
        font-size: 2rem;
    }
    
    .cta-signature {
        font-size: 3rem;
    }
}

@media (max-width: 600px) {
    .container {
        grid-template-columns: 1fr;
        padding: 0;
    }
    
    .left-column {
        padding: 80px 20px 30px 20px;
        gap: 15px;
    }
    
    .right-column {
        padding: 15px 20px;
    }
    
    .feature-card {
        padding: 30px 25px;
        border-radius: 15px;
    }
    
    .back-button {
        top: 12px;
        left: 15px;
        padding: 9px 14px;
        font-size: 0.8rem;
        gap: 6px;
    }
    
    .back-button svg {
        width: 16px;
        height: 16px;
    }
    
    .brand-title {
        font-size: 2.5rem;
    }
    
    .intro-text,
    .address-section {
        font-size: 0.85rem;
    }
    
    .feature-text {
        font-size: 1.1rem;
    }
    
    .cta-text {
        font-size: 1.8rem;
    }
    
    .cta-signature {
        font-size: 2.5rem;
    }
}
