/* about.css - styles for about page */

body {
    background: #0f0606;
    margin: 0;
    font-family: 'Rubik', Arial, sans-serif;
    color: #fff;
}

.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: #0f0606;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.about-main {
    margin-top: 90px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
}

.about-container {
    display: flex;
    flex-direction: row;
    max-width: 1100px;
    width: 100%;
    background: transparent;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 32px rgba(0,0,0,0.3);
}

.about-image {
    flex: 1 1 50%;
    min-width: 320px;
    max-width: 50%;
    display: flex;
    align-items: stretch;
    background: #181212;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-content {
    flex: 1 1 50%;
    padding: 48px 40px 40px 40px;
    background: #0f0606;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-label {
    color: #b0b0b0;
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 12px;
    font-weight: 600;
}

.about-title {
    font-family: 'Rubik Distressed', 'Special Elite', serif;
    font-size: 2.8rem;
    color: #ffffff !important;
    margin: 0 0 24px 0;
    line-height: 1.1;
}

.about-lead {
    font-size: 1.15rem;
    margin-bottom: 18px;
    color: #fff;
}

.about-content p {
    color: #e0e0e0;
    font-size: 1.05rem;
    margin-bottom: 16px;
    line-height: 1.6;
}

.about-buttons {
    display: flex;
    gap: 20px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.about-btn {
    position: relative;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
    letter-spacing: 0.5px;
    font-family: 'Special Elite', cursive;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    text-transform: uppercase;
    font-size: 0.95rem;
    overflow: hidden;
}

.about-btn:first-child {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e8e 100%);
    color: #fff;
    border: none;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
}

.about-btn:first-child:hover {
    background: linear-gradient(135deg, #ff5252 0%, #ff7979 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.4);
}

.about-btn:first-child:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.3);
}

.about-btn:first-child:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.about-btn:first-child:hover:before {
    left: 100%;
}

.about-btn:last-child {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
}

.about-btn:last-child:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}

.about-btn:last-child:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.08);
}

.about-btn:last-child:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.about-btn:last-child:hover:before {
    width: 300px;
    height: 300px;
}

@media (max-width: 900px) {
    .about-container {
        flex-direction: column;
        max-width: 98vw;
    }
    .about-image, .about-content {
        max-width: 100%;
    }
    .about-content {
        padding: 32px 18px 28px 18px;
    }
    .about-buttons {
        gap: 16px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .about-buttons {
        flex-direction: column;
        align-items: center;
    }
    .about-btn {
        min-width: 200px;
    }
}

@media (max-width: 600px) {
    .about-main {
        margin-top: 70px;
    }
    .about-title {
        font-size: 2rem;
    }
    .about-content {
        padding: 18px 6vw 18px 6vw;
    }
    .about-buttons {
        flex-direction: column;
        gap: 16px;
        margin-top: 28px;
    }
    .about-btn {
        width: 100%;
        text-align: center;
        min-width: auto;
        padding: 14px 24px;
    }
}
