* {
box-sizing: border-box;
}
body {
font-family: 'Montserrat', sans-serif;
margin: 0;
padding: 0;
line-height: 1.6;
color:#fff;
background-color: #050505;
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}
header {
    height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('https://www.bing.com/th/id/OIP.4vCp4dHVdd7OQFDSfFSVlQHaEK?w=193&h=135&c=8&rs=1&qlt=90&o=6&dpr=1.3&pid=3.18&rm=2');
    background-size: cover;
    background-attachment: fixed; 
    text-align: center;
    border-bottom: 3px solid #ff0000;
}

header h1 {
    font-family: 'Syncopate', sans-serif;
    font-size: clamp(2rem, 8vw, 5rem);
    text-transform: uppercase;
    letter-spacing: 15px;
    margin: 0;
    color: #ff0000;
    text-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
}

header p {
    font-size: 1.2rem;
    letter-spacing: 3px;
    color: #888;
    margin-top: 10px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

.section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 120px;
    gap: 40px;
}

.section:nth-child(even) {
    flex-direction: row-reverse;
}

.section img {
    width: 45%;
    max-width: 500px;
    border: 1px solid #333;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    transition: 0.5s ease;
    filter: grayscale(40%);
}

.section img:hover {
    filter: grayscale(0%);
    border-color: #ff0000;
    transform: translateY(-10px);
}

.text {
    width: 50%;
}

h2 {
    font-family: 'Syncopate', sans-serif;
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 50px;
    height: 3px;
    background-color: #ff0000;
}

.quote {
    font-style: italic;
    color: #ff0000;
    margin-top: 25px;
    padding-left: 15px;
    border-left: 2px solid #333;
    font-size: 0.95rem;
}

.intro-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 100px auto;
    font-size: 1.1rem;
    color: #bbb;
}

footer {
    text-align: center;
    padding: 60px;
    background-color: #050505;
    color: #444;
    font-size: 0.8rem;
    letter-spacing: 2px;
}
@media (max-width: 800px) {
    .section, .section:nth-child(even) {
        flex-direction: column;
        text-align: center;
    }
    .section img, .text {
        width: 100%;
    }
    h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
}
