* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #000;
    color: #fff;
    min-height: 100vh;
    background-image: url('background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    position: relative;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

header {
    position: relative;
    z-index: 10;
    padding: 30px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 2px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav a {
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 1px;
    transition: opacity 0.3s ease;
}

nav a:hover {
    opacity: 0.7;
}

main {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    min-height: calc(100vh - 200px);
    padding: 0 40px;
}

.content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 90px;
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 20px;
    line-height: 1;
}

.content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 300;
    opacity: 0.8;
    letter-spacing: 0.5px;
}

footer {
    position: relative;
    z-index: 10;
    padding: 30px 20px;
}

.social-icons {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.social-icons a {
    color: #fff;
    font-size: 18px;
    transition: opacity 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    opacity: 0.7;
}

@media (max-width: 768px) {
    body {
        background-image: url('backgroundmobile.png');
    }
    
    .nav-container {
        flex-direction: column;
        gap: 20px;
        padding: 0 20px;
    }
    
    nav ul {
        gap: 20px;
    }
    
    .content h1 {
        font-size: 52px;
        line-height: 1.1;
    }
    
    .content h2 {
        font-size: 18px;
    }
    
    .content p {
        font-size: 14px;
    }
    
    main {
        padding: 0 20px;
        min-height: calc(100vh - 200px);
        display: flex;
        align-items: center;
    }
    
    footer {
        padding: 20px;
    }
    
    .social-icons {
        gap: 20px;
        justify-content: center;
    }
    
    .social-icons a {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 15px;
    }
    
    .logo {
        font-size: 16px;
    }
    
    nav a {
        font-size: 12px;
    }
    
    .content h1 {
        font-size: 40px;
    }
    
    .content h2 {
        font-size: 16px;
    }
    
    .content p {
        font-size: 13px;
    }
    
    main {
        padding: 0 15px;
    }
    
    .social-icons {
        gap: 15px;
    }
    
    .social-icons a {
        font-size: 18px;
    }
}
