:root {
    --red: #E85D4A;
    --dark-red: #D64935;
    --black: #262626;
    --white: #FAFAFA;
    --gray: #EFEFEF;
    --light-gray: #E6E6E6;
    --dark-gray: #5A5A5A;
    --yellow: #F5C555;
    --blue: #8A6D68;
    --orange: #E87E5C;
    --border: #333333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

a,
button,
.btn,
.nav-link,
.logo,
.gallery-item,
.feature,
.stat,
.content-block {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background-color: var(--white);
    color: var(--black);
    line-height: 1.4;
}

/* Header styles */
header {
    background-color: var(--black);
    padding: 28px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 4px solid var(--red);
    position: relative;
    z-index: 9999;
    overflow: hidden;
}

.logo {
    font-size: 38px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -2px;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
}

.logo span {
    color: var(--red);
    position: relative;
}

.logo span::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--red);
}

nav {
    display: flex;
    gap: 50px;
    align-items: center;
}

nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s;
    position: relative;
    padding-bottom: 4px;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--red);
    transition: width 0.3s;
}

nav a:hover {
    color: var(--red);
}

nav a:hover::after {
    width: 100%;
}

nav a.active {
    color: var(--red);
}

nav a.active::after {
    width: 100%;
}

/* Footer styles */
footer {
    background-color: #F0EDE6;
    border-top: 2px solid var(--light-gray);
    padding: 40px 60px;
    text-align: center;
}

.copyright {
    font-size: 13px;
    color: var(--dark-gray);
    font-family: 'Space Mono', monospace;
}

/* Mobile styles */
@media (max-width: 768px) {
    header {
        padding: 20px 24px;
        flex-direction: column;
        gap: 16px;
    }

    .logo {
        font-size: 28px;
    }

    nav {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    nav a {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    header {
        padding: 16px 20px;
    }

    .logo {
        font-size: 24px;
    }

    nav a {
        font-size: 11px;
        letter-spacing: 1px;
    }
}
