/**
 * Landing Page Styles
 * Apple-inspired minimalist luxury presentation.
 */

.home-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

/* Background luxury glowing ambient lights */
.home-container::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(214, 175, 55, 0.05) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.home-container::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.02) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.home-content {
    max-width: 600px;
    width: 100%;
    text-align: center;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

/* Elegant luxury animated logo placeholder */
.logo-container {
    position: relative;
    width: 140px;
    height: 140px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    animation: rotateRing 20s linear infinite;
}

.logo-ring::before {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 8px;
    height: 8px;
    background-color: var(--accent);
    border-radius: var(--radius-full);
    box-shadow: 0 0 10px var(--accent);
}

.logo-ring:nth-child(2) {
    width: 85%;
    height: 85%;
    border-color: rgba(214, 175, 55, 0.15);
    animation-duration: 15s;
    animation-direction: reverse;
}

.logo-inner {
    width: 65%;
    height: 65%;
    background: radial-gradient(circle, var(--bg-elevated) 0%, var(--bg-secondary) 100%);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.logo-svg {
    width: 32px;
    height: 32px;
    fill: var(--accent);
}

/* Typography styles */
.hero-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    animation: fadeInDown 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.3;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 460px;
    margin: 0 auto;
    font-weight: 300;
}

/* Large circular luxury camera button */
.camera-trigger-container {
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

.camera-btn {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: var(--radius-full);
    background: radial-gradient(circle, #2c2c2e 0%, #1c1c1e 100%);
    border: 2px solid var(--glass-border);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-smooth);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.camera-btn-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-full);
    border: 1px solid rgba(214, 175, 55, 0.4);
    animation: pulseBtn 3s infinite;
    pointer-events: none;
}

.camera-btn:hover {
    transform: scale(1.05);
    border-color: var(--accent);
    box-shadow: 0 20px 45px rgba(214, 175, 55, 0.15);
}

.camera-btn:active {
    transform: scale(0.95);
}

.camera-btn svg {
    width: 38px;
    height: 38px;
    color: var(--text-primary);
    transition: var(--transition-smooth);
}

.camera-btn:hover svg {
    color: var(--accent);
    transform: rotate(-10deg);
}

.btn-label {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 400;
    transition: var(--transition-fast);
}

.camera-btn:hover + .btn-label {
    color: var(--text-primary);
}

/* Animations */
@keyframes rotateRing {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulseBtn {
    0% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.15); opacity: 0; }
    100% { transform: scale(1); opacity: 0; }
}

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

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

/* Footer info */
.home-footer {
    position: absolute;
    bottom: 2rem;
    font-size: 0.8rem;
    color: var(--text-tertiary);
    font-weight: 300;
    letter-spacing: 0.05em;
    z-index: 1;
}

/* Mobile responsive adjustments */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    .hero-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
}
