/* ==========================================================================
   BOROĞLU HOLDİNG - MINIMALIST BLACK LANDING PAGE
   ========================================================================== */

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

html, body {
    width: 100%;
    height: 100%;
    background-color: #000000;
    color: #FFFFFF;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    overflow: hidden;
}

/* Ambient Subtle Radial Glow */
.bg-gradient-glow {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
    z-index: 0;
}

/* Wrapper Layout */
.minimal-wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    min-height: 100vh;
    padding: 3rem 1.5rem;
    text-align: center;
}

/* Logo & Branding */
.brand-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.logo-emblem {
    width: 50px;
    height: 50px;
}

.logo-svg {
    width: 100%;
    height: 100%;
}

.logo-title {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: #FFFFFF;
}

/* Hero Section */
.hero-box {
    margin: auto 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

.status-tag {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 4px;
    color: #888888;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.4rem 1rem;
    border-radius: 30px;
}

.main-headline {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.8rem, 8vw, 6rem);
    font-weight: 800;
    letter-spacing: 6px;
    color: #FFFFFF;
    line-height: 1.1;
}

.sub-headline {
    font-size: clamp(1rem, 2vw, 1.35rem);
    font-weight: 300;
    letter-spacing: 2px;
    color: #AAAAAA;
    max-width: 500px;
}

/* Footer */
.minimal-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.contact-link {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 1px;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.contact-link:hover {
    opacity: 1;
}

.copyright {
    font-size: 0.8rem;
    color: #555555;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 600px) {
    .minimal-wrapper {
        padding: 2rem 1rem;
    }
    .main-headline {
        letter-spacing: 3px;
    }
    .logo-title {
        letter-spacing: 3px;
    }
}
