

/* Reset basic styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Sketch Canvas */
#sketch-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: all;
}

/* Drawing Controls - Hidden at bottom */
.drawing-controls {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px 30px;
    background-color: rgba(242, 232, 220, 0.95);
    border-radius: 12px 12px 0 0;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    z-index: 100;
    transition: bottom 0.3s ease;
}

.drawing-controls:hover,
.drawing-controls.visible {
    bottom: 0;
}

.tool-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
}

#current-tool {
    font-weight: 600;
    color: #4A403A;
    font-size: 1rem;
}

.hint {
    font-size: 0.75rem;
    color: #9C8C74;
    font-style: italic;
}

.control-btn {
    padding: 8px 16px;
    border: 2px solid #4A403A;
    background-color: #F2E8DC;
    color: #4A403A;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

.control-btn:hover {
    background-color: #4A403A;
    color: #F2E8DC;
    transform: translateY(-2px);
}

body {
    /* Nude Background Color */
    background-color: #F2E8DC; 
    font-family: 'Montserrat', sans-serif;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #4A403A; /* Dark Brown Text */
    cursor: auto;
}

body.eraser-mode {
    cursor: auto;
}

.container {
    text-align: center;
    /* Optional: Limit width for larger screens */
    max-width: 600px;
    width: 100%;
    padding: 20px;
    position: relative;
    z-index: 1;
}

/* Animations for fade-in */
.content {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1.2s ease-out forwards;
}

.greeting {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.name {
    font-size: 4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.role {
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    opacity: 0.8;
}

/* Social Icons Styling */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.social-icons a {
    text-decoration: none;
    color: #4A403A;
    font-size: 2rem;
    transition: all 0.3s ease;
    pointer-events: all;
    position: relative;
    z-index: 10;
}

/* Hover Effect - No Gradient, just simple color change and lift */
.social-icons a:hover {
    color: #9C8C74; /* A slightly lighter earth tone */
    transform: translateY(-5px);
}

/* Keyframes for the entry animation */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .name {
        font-size: 3rem;
    }
    .greeting {
        font-size: 1.2rem;
    }
}

