* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #000;
    color: #fff;
    height: 100vh;
    overflow: hidden;
    display: flex;
}

/* Left side - Eyes and Slideshow */
.left-side {
    width: 40%;
    height: 100%;
    position: relative;
}
.eyes-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 40px;
    transition:
        top 0.3s ease,
        transform 0.3s ease;
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
    animation-delay: 0.6s; /* Appears after logo */
}

.eye {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.pupil {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #000;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Slideshow container */
.slideshow-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    animation: slideshowFadeIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.slideshow-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

/* Right side - Content */
.right-side {
    width: 60%;
    height: 100%;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-placeholder {
    width: 100px;
    height: 100px;
    border: 2px solid #fff;
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.logo {
    width: 100px;
    height: 100px;
    object-fit: cover;
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeInDown 0.8s ease forwards;
    animation-delay: 0.5s; /* Appears after title starts */
}
.title {
    font-size: 5rem;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0s; /* Appears first */
}

.text {
    font-size: 1.5rem;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.7s; /* Appears last */
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* For hover functionality */
.keyword {
    position: relative;
    cursor: pointer;
    text-decoration: underline;
    color: #fff;
    transition: color 0.3s ease;
    position: relative;
}

.keyword:hover {
    color: #ccc;
}

/* Media queries for future mobile support */
@media (max-width: 768px) {
    /* Mobile styles will go here */
}

/* Terminal Container */
.terminal-container {
    position: absolute;
    top: 35%; /* Positioned with a gap below eyes */
    left: 50%;
    transform: translate(-50%, 0);
    width: 600px;
    max-width: 90%;
    background-color: #1e1e1e;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    font-family: "Courier New", monospace;
    z-index: 10;
    margin-top: 20px; /* Added spacing below eyes */
}

/* Terminal Header */
.terminal-header {
    background-color: #333;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.terminal-button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.terminal-button:nth-child(1) {
    background-color: #ff5f56;
} /* Close */
.terminal-button:nth-child(2) {
    background-color: #ffbd2e;
} /* Minimize */
.terminal-button:nth-child(3) {
    background-color: #27c93f;
} /* Maximize */

.terminal-title {
    margin-left: auto;
    color: #ddd;
    font-size: 14px;
}

/* Terminal Body */
.terminal-body {
    padding: 12px;
    height: 300px;
    overflow-y: auto;
    background-color: #1e1e1e;
    color: #d1d1d1;
    font-size: 14px;
    line-height: 1.5;
}

/* Terminal Lines */
.terminal-line {
    display: flex;
    align-items: center;
    white-space: pre-wrap;
    word-wrap: break-word;
}

/* Terminal Prompt */
.terminal-prompt {
    color: #7287fd;
    margin-right: 5px;
}

/* Terminal Input */
.terminal-input {
    color: #fff;
    font-weight: bold;
}

/* Blinking Cursor */
.terminal-cursor {
    display: inline-block;
    width: 8px;
    height: 16px;
    background-color: #7287fd;
    margin-left: 2px;
    animation: blink 1s infinite;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

/* Matrix Mode Effect */
.matrix-effect {
    background-color: black !important;
    color: #0f0 !important;
}

/* Crazy Eyes Effect */
.crazy-eyes {
    animation: crazy 0.1s infinite alternate;
}

@keyframes crazy {
    from {
        transform: translate(-10px, -10px);
    }
    to {
        transform: translate(10px, 10px);
    }
}

/* Rainbow Text Effect */
.rainbow-text {
    background-image: linear-gradient(
        to right,
        #ff0000,
        #ff7f00,
        #ffff00,
        #00ff00,
        #0000ff,
        #4b0082,
        #8f00ff
    );
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: rainbow 3s linear infinite;
}

/* Rainbow Text Effect */
@keyframes rainbow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Coffee Emoji */
.coffee-emoji {
    font-size: 2rem;
    position: absolute;
    top: 20px;
    right: 20px;
    animation: fadeInOut 5s ease-in-out;
}

@keyframes fadeInOut {
    0%,
    100% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
}
@keyframes pushUp {
    from {
        transform: translate(-50%, 100%);
        opacity: 0;
    }
    to {
        transform: translate(-50%, 0);
        opacity: 1;
    }
}

.terminal-container {
    /* ... your existing terminal styles ... */
    animation: pushUp 0.3s ease-out forwards;
    opacity: 0; /* Start invisible */
}

@keyframes slideshowFadeIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(10px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}
/* Star styles */
.star-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1000;
}

.star {
    position: absolute;
    background-color: #fff;
    border-radius: 50%;
    animation: twinkle 3s infinite ease-in-out;
}

.night-mode {
    transition: background-color 1s ease;
    background-color: rgba(0, 0, 0, 0.9);
}

@keyframes twinkle {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.3;
        transform: scale(0.7);
    }
}
/* Snow Container */
.snow-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1000;
}

/* Snowflake */
.snowflake {
    position: absolute;
    background: transparent;
    pointer-events: none;
    animation: snowfall 5s linear infinite;
}

/* Minimalistic snowflake design */
.snowflake::before,
.snowflake::after {
    content: "";
    position: absolute;
    background: white;
    border-radius: 50%;
}

/* Create the snowflake shape */
.snowflake::before {
    width: 100%;
    height: 2px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.snowflake::after {
    width: 2px;
    height: 100%;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

/* Diagonal lines */
.snowflake {
    position: absolute;
    transform-origin: center;
}

.snowflake::before,
.snowflake::after {
    content: "";
    position: absolute;
    background: white;
}

/* Create an X shape */
.snowflake::before {
    width: 100%;
    height: 2px;
    transform: rotate(45deg);
    top: 50%;
    left: 0;
}

.snowflake::after {
    width: 100%;
    height: 2px;
    transform: rotate(-45deg);
    top: 50%;
    left: 0;
}

@keyframes snowfall {
    0% {
        transform: translateY(-5vh) translateX(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(105vh) translateX(100px) rotate(360deg);
        opacity: 0;
    }
}

/* Add different animation delays and paths for variety */
.snowflake:nth-child(2n) {
    animation-duration: 6s;
    animation-delay: 1s;
}

.snowflake:nth-child(3n) {
    animation-duration: 4.5s;
    animation-delay: 2s;
}

.snowflake:nth-child(4n) {
    animation-duration: 7s;
    animation-delay: 0.5s;
}

.snowflake:nth-child(5n) {
    animation-duration: 8s;
    animation-delay: 1.5s;
}

/* Add subtle shadow for depth */
.snowflake {
    box-shadow: 0 0 2px rgba(255, 255, 255, 0.3);
}

/* Additional rotation variations */
.snowflake:nth-child(3n) {
    animation-timing-function: ease-in-out;
}

.snowflake:nth-child(5n) {
    animation-timing-function: cubic-bezier(0.2, 0.8, 0.4, 1);
}

/* Moon Container */
.moon-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1000;
    opacity: 0;
    transition: opacity 1s ease;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3),
        rgba(0, 0, 0, 0.7)
    );
}

/* Moon */
.moon {
    position: absolute;
    width: 80px;
    height: 80px;
    background: linear-gradient(145deg, #ffffff, #f4f4f4 40%, #e8e8e8);
    border-radius: 50%;
    box-shadow:
        0 0 20px rgba(255, 255, 255, 0.4),
        0 0 40px rgba(255, 255, 255, 0.2);
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    transition: all 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Craters */
.crater {
    position: absolute;
    background: rgba(200, 200, 200, 0.3);
    border-radius: 50%;
    box-shadow: inset 2px 2px 3px rgba(0, 0, 0, 0.2);
}

/* Animation Classes */
.moon-container.animate {
    opacity: 1;
}

.moon-container.animate .moon {
    top: 100px;
}

.moon-container.fade-out {
    opacity: 0;
}

/* Moon Glow Effect */
.moon::after {
    content: "";
    position: absolute;
    top: -20%;
    left: -20%;
    width: 140%;
    height: 140%;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.2) 0%,
        transparent 70%
    );
    pointer-events: none;
}

/* Subtle Moon Surface Texture */
.moon::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background:
        radial-gradient(
            circle at 30% 30%,
            rgba(255, 255, 255, 0.4) 0%,
            transparent 20%
        ),
        radial-gradient(
            circle at 70% 70%,
            rgba(255, 255, 255, 0.3) 0%,
            transparent 20%
        );
}

/* Media Query for smaller screens */
@media (max-width: 768px) {
    .moon {
        width: 60px;
        height: 60px;
    }

    .crater {
        transform: scale(0.75);
    }
}
.hover-hint {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: lowercase;
    letter-spacing: 1px;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 1000;
}

.hover-hint.show {
    opacity: 1;
}

.hover-hint.hide {
    opacity: 0;
}
/* Interactive Terminal */
.interactive-terminal {
    position: fixed;
    right: 20px;
    top: 20px; /* Position at top */
    transform: scale(0.9);
    width: 400px; /* Smaller width */
    height: 300px; /* Smaller height */
    background: rgba(30, 30, 30, 0.95);
    border-radius: 8px; /* Slightly smaller border radius */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1000;
    backdrop-filter: blur(10px);
    cursor: default; /* Default cursor */
}

.interactive-terminal.show {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.interactive-terminal-header {
    display: flex;
    align-items: center;
    padding: 8px 12px; /* Smaller padding */
    background: rgba(60, 60, 60, 0.5);
    border-radius: 8px 8px 0 0;
    cursor: grab; /* Show grab cursor on header */
    user-select: none;
}

.interactive-terminal-header.dragging {
    cursor: grabbing;
}

.close-button {
    width: 12px; /* Smaller button */
    height: 12px;
    background: #ff5f57;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
}

.close-button:hover {
    transform: scale(1.1);
}

.interactive-terminal-body {
    padding: 12px;
    height: calc(100% - 35px);
    overflow-y: auto;
    font-family: "Courier New", monospace;
    color: #fff;
    font-size: 12px; /* Smaller font size */
}

.command-input {
    background: transparent;
    border: none;
    color: #fff;
    font-family: "Courier New", monospace;
    font-size: 12px; /* Smaller font size */
    width: 100%;
    outline: none;
}

.command-line {
    display: flex;
    margin: 4px 0; /* Smaller margin */
}

.command-prompt {
    color: #7287fd;
    margin-right: 8px; /* Smaller margin */
}

/* Terminal entrance animation */
@keyframes terminalEnter {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
.key-hint {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(30, 30, 30, 0.8);
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    opacity: 0;
    transform: translateY(-10px);
    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
    pointer-events: none;
    backdrop-filter: blur(4px);
    z-index: 999;
    letter-spacing: 1px;
}

.key-hint.show {
    opacity: 1;
    transform: translateY(0);
}

.key-hint span {
    color: #7287fd;
    font-weight: bold;
    margin: 0 2px;
}
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.photo-gallery-button {
    position: absolute;
    left: 50%;
    transform: translateX(-50%) translateY(-5px);
    top: calc(100% - 15px);
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: lowercase;
    cursor: pointer;
    padding: 8px 0;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    white-space: nowrap;
}

.photo-gallery-button::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.photo-gallery-button:hover {
    color: rgba(255, 255, 255, 0.9);
}

.photo-gallery-button:hover::after {
    transform: scaleX(1);
}

.photo-gallery-button.visible {
    opacity: 1;
    transform: translateY(0);
}

.keyword-wrapper {
    position: relative;
    padding: 15px 25px;
    margin: -15px -25px;
    display: inline-block;
}
@import "contact-overlay.css";

.contact-trigger {
    position: relative;
    cursor: pointer;
    text-decoration: underline;
    color: #fff;
    transition: color 0.3s ease;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.contact-trigger:hover {
    color: #fff;
    opacity: 1;
}
