/*
Theme Name: Monty Hobbs Portfolio
Theme URI: https://montyhobbs.com
Author: Monty R. Hobbs
Description: A one-page digital portfolio theme converted from HTML.
Version: 1.1
License: GNU General Public License v2 or later
*/

/* Note: Most styling is handled by Tailwind CSS (CDN).
   This file contains specific overrides and timeline styles.
*/

.timeline-line::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 20px;
    width: 2px;
    background: #3b82f6;
    z-index: 0;
}
@media (min-width: 768px) {
    .timeline-line::before {
        left: 50%;
        margin-left: -1px;
    }
}

/* Mobile Optimization: Global settings */
html {
    overflow-x: hidden;
    scroll-behavior: auto !important;
}

body {
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

a, button, [role="button"], input, select {
    cursor: pointer;
}

@media screen and (max-width: 768px) {
    input, select, textarea {
        font-size: 16px !important;
    }
}
