@import url('https://bit.ly/3CZa0Sz');
@import url('https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css');

:root {
    --primary-dark: #1a1a1a;
    --accent-gray: #f8f9fa;
    --text-muted: #6c757d;
    --ls-spacing: 0.15em;
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'line_seed_sans_th', 'Inter', Arial, sans-serif;
}

body {
    font-family: 'line_seed_sans_th', 'Inter', sans-serif;
    background-color: #ffffff;
    color: #1a1a1a;
    -webkit-font-smoothing: antialiased;
}

/* Nav */
.navbar {
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.9) !important;
}

.nav-link {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--primary-dark) !important;
    transition: var(--transition-smooth);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-dark);
    transition: var(--transition-smooth);
}


.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Hero */
.hero-section {
    height: 60vh;
    padding-top: 150px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url('pic/bg5.jpg') center/cover fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
}

.display-1 {
    letter-spacing: -4px;
    line-height: 0.9;
}

.max-w-600 {
    max-width: 600px;
}

/* Decorative Image Frame */
.img-frame {
    position: relative;
    padding: 15px;
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.gray-filter {
    filter: grayscale(100%);
    transition: 0.5s ease;
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.img-frame:hover .gray-filter {
    filter: grayscale(0%);
}

.frame-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
    color: #999;
}

/* Photo Cards */
.photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 !important;
    /* Keep it minimal/boxy */
}

/* Utilities */
.ls-2 {
    letter-spacing: 2px;
}

.tracking-tighter {
    letter-spacing: -3px;
}

.ls-2 {
    letter-spacing: 2px;
}

/* Removes the blue outline when clicking the search box */
.no-focus:focus {
    box-shadow: none;
    border-color: #dee2e6;
}

.search-container .input-group {
    transition: transform 0.3s ease;
}

/* Subtle hover effect */
.search-container:hover .input-group {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .display-1 {
        font-size: 3.5rem;
        letter-spacing: -1px;
    }

    .hero-section {
        min-height: 40vh;
    }
}

.comp-list span {
    font-size: 1.1rem;
    padding: 10px 0;
}

.badge {
    font-weight: 500;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

/* Image Frames */
.img-frame {
    border: 1px solid #eee;
    padding: 12px;
    background: #fff;
    transition: transform 0.3s ease;
}

.img-frame:hover {
    transform: translateY(-5px);
}

.gray-filter {
    filter: grayscale(100%);
    transition: filter 0.5s ease;
}

.img-frame:hover .gray-filter {
    filter: grayscale(0%);
}

.frame-label {
    font-size: 0.7rem;
    color: #999;
    text-transform: uppercase;
    margin-top: 10px;
    letter-spacing: 1px;
}

/* Profile Enhancement */
.profile-hover {
    transition: var(--transition-smooth);
}

.profile-hover:hover {
    transform: scale(1.05);
}

/* Interest Cards */
.interest-card {
    transition: var(--transition-smooth);
}

.interest-card:hover {
    transform: translateY(-10px);
    border-color: #000 !important;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.shadow-sm-hover {
    transition: var(--transition-smooth);
}

.ls-1 {
    letter-spacing: 1px;
}

/* Additional Utils */
.max-w-600 {
    max-width: 600px;
}

#site-title h1 {
    font-size: 3.5rem;
    letter-spacing: -2px;
}

.contact-links .btn {
    transition: var(--transition-smooth);
    font-weight: 500;
}

.contact-links .btn:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
}

.minimal-info-list .border-bottom {
    border-color: rgba(0, 0, 0, 0.05) !important;
}

.minimal-info-list span {
    font-size: 0.95rem;
}

/* Utils */
.ls-2 {
    letter-spacing: 2px;
}

.tracking-tighter {
    letter-spacing: -3px;
}
