/* GAYA Reborn: Precision Corporate Identity CSS */

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

body {
    background-color: var(--background);
    color: var(--text);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
}

.gaya-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Navigation */
.gaya-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 30px 0;
    transition: all 0.5s ease;
}

.gaya-nav.scrolled {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    padding: 20px 0;
    border-bottom: 1px solid var(--glass-border);
}

.gaya-nav .gaya-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gaya-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: white;
}

.logo-box {
    width: 35px;
    height: 35px;
    background: var(--primary);
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 20px;
    border-radius: 4px;
}

.logo-text {
    font-family: var(--font-display);
    font-weight: 900;
    font-style: italic;
    font-size: 24px;
    letter-spacing: -1px;
}

.reborn {
    color: var(--primary);
    font-style: normal;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.desktop-nav a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 4px;
    transition: color 0.3s ease;
}

.desktop-nav a:hover {
    color: var(--primary);
}

/* Hamburger */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.hamburger span {
    display: block;
    height: 3px;
    background: white;
    transition: 0.3s;
}

.hamburger span:nth-child(2) {
    width: 25px;
    background: var(--primary);
}

.hamburger span:nth-child(1),
.hamburger span:nth-child(3) {
    width: 32px;
}

/* Mobile Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: black;
    z-index: 1100;
    padding: 40px;
    display: flex;
    flex-direction: column;
    transition: 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-drawer.active {
    right: 0;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 80px;
}

.close-btn {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    color: var(--primary);
    font-size: 40px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
}

.drawer-links {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.drawer-links a {
    text-decoration: none;
    color: white;
    font-size: 40px;
    font-family: var(--font-display);
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 30px;
}

.drawer-links a .num {
    color: rgba(255, 255, 255, 0.1);
    font-size: 20px;
    font-style: normal;
}

.drawer-links a:hover {
    color: var(--primary);
}

.drawer-footer {
    margin-top: auto;
    padding-top: 40px;
    border-top: 1px solid var(--glass-border);
}

.status {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.dot {
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
}

.pulse {
    animation: pulse-dot 1s infinite alternate;
}

@keyframes pulse-dot {
    from { opacity: 1; transform: scale(1); }
    to { opacity: 0.5; transform: scale(1.5); }
}

.label {
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 4px;
}

/* Buttons */
.gaya-btn {
    width: 100%;
    padding: 25px;
    background: var(--primary);
    border: none;
    color: black;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 6px;
    font-size: 12px;
    cursor: pointer;
    transition: 0.3s;
}

.gaya-btn-sm {
    padding: 12px 30px;
    background: var(--primary);
    border: none;
    color: black;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 10px;
    cursor: pointer;
    border-radius: 4px;
}

.gaya-btn:hover, .gaya-btn-sm:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* Scanline */
.scanline {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    z-index: 2000;
    opacity: 0.2;
    pointer-events: none;
    animation: scan 8s linear infinite;
}

@keyframes scan {
    from { top: -10%; }
    to { top: 110%; }
}

/* Hero Section */
.hero {
    min-hH-screen; /* Set in template */
    padding-top: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(4rem, 15vw, 15rem);
    font-weight: 900;
    font-style: italic;
    line-height: 0.8;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
}

.hero-title span:nth-child(2) {
    color: var(--primary);
    align-self: flex-end;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: flex-end;
}

.hero-desc {
    font-size: 28px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: -0.5px;
    max-width: 600px;
}

.hero-desc strong {
    color: white;
    font-style: italic;
    font-weight: 900;
}

/* Responsive */
@media (max-width: 1024px) {
    .desktop-nav { display: none; }
    .hamburger { display: flex; }
    .hero-grid { grid-template-columns: 1fr; gap: 60px; }
    .hero-title { font-size: 80px; }
}
