/*  */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');

body { 
    font-family: 'Inter', sans-serif;
    background-color: #0f0f0f; 
    color: #d1d1d1;
    line-height: 1.8;
}

section[id] {
    scroll-margin-top: 100px !important; 
}

.navbar {
    background-color: rgba(15, 15, 15, 0.98) !important;
    border-bottom: 1px solid #2a2a2a; 
    padding: 1rem 0;
}

.navbar-brand {
    font-weight: 700;
    color: #ffffff !important;
    letter-spacing: -0.5px;
}

.contact-subtext {
    font-size: 0.8rem;
    color: #666 !important;
    font-weight: 400;
}

.nav-link {
    font-weight: 500;
    font-size: 0.85rem;
    color: #888 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

.nav-link:hover {
    color: #ffffff !important;
}

section {
    padding: 100px 0; 
    background: transparent; 
    border: none;
    box-shadow: none;
    border-bottom: 1px solid #2a2a2a; 
}

section:last-of-type {
    border-bottom: none;
}

section:before {
    display: block;
    content: " ";
    margin-top: -80px;
    height: 80px;
    visibility: hidden;
}

h2 {
    font-weight: 700;
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn-outline-primary {
    border-radius: 4px; 
    border: 1px solid #444;
    color: #eee;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-outline-primary:hover {
    background-color: #ffffff;
    color: #000;
    border-color: #ffffff;
}

.contact-subtext .btn-sm {
    font-size: 0.7rem;
    padding: 2px 10px;
    vertical-align: middle;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: -3px; 
}

.contact-subtext a.btn:hover {
    color: #000 !important;
    background-color: #fff !important;
}

ul {
    list-style-type: none;
    padding-left: 0;
}

li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 20px;
}

li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: #444;
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    background-color: #1a1a1a;
    transition: transform 0.3s ease;
}

.gallery-item img {
    transition: transform 0.5s ease, opacity 0.3s ease;
    filter: grayscale(20%); 
    cursor: pointer;
}

.gallery-item:hover img {
    transform: scale(1.05); 
    filter: grayscale(0%); 
}

.gallery-item:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

.section-divider {
    border: 0;
    height: 1px;
    background: #333; 
    margin: 40px auto;
    width: 80%; /
}

section {
    padding: 60px 0; 
    border-bottom: 1px solid #2a2a2a !important; 
}

section:last-of-type {
    border-bottom: none !important;
}