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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #050505;
    color: #f5f5f5;
}

/* Header */
.header {
    background-color: #050505;
    padding: 1rem 10vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: clamp(60px, 5vw, 180px);
}

.nav ul {
    display: flex;
    gap: 2rem;
}

.nav a {
    color: #f5f5f5;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #eb5436;
}

/* Portfolio Hero */
.portfolio-hero {
    text-align: center;
    padding: 6vh 10vw;
}

.portfolio-hero h1 {
    font-size: clamp(2rem, 4vw, 10rem);
    font-weight: 900;
    color: #eb5436;
    margin-bottom: 1rem;
}

.portfolio-hero p {
    font-size: clamp(1rem, 2vw, 4rem);
    font-weight: 200;
    color: #ffffff;
}

/* Gallery */
.media-gallery {
    padding: 4vh 10vw;
}

.media-gallery h2 {
    font-size: clamp(1.5rem, 3vw, 7rem);
    font-weight: 700;
    color: #eb5436;
    margin-bottom: 2rem;
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(clamp(100px, 13vw, 600px), 1fr));
    gap: clamp(1rem, 1.5vw, 2.5rem);
    margin-bottom: 4rem;
}

.gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: clamp(1px, 0.2vw, 3px) solid #f5f5f5;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.05);
    border-color: #eb5436;
}

/* Video Grid */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(clamp(100px, 10vw, 400px), 1fr));
    gap: clamp(0.2rem, 0.5vw, 3rem);
}

.video-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.video-item video {
    width: auto;
    max-width: clamp(90%, 70vw, 80%);
    max-height: clamp(60vh, 70vh, 85vh);
    border: clamp(2px, 0.3vw, 4px) solid #f5f5f5;
    border-radius: 10px;
    background: #000;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.video-item video:hover {
    border-color: #eb5436;
    transform: scale(1.02);
}

.video-item p {
    font-size: clamp(1rem, 1.5vw, 2rem);
    font-weight: 400;
    color: #ffffff;
    text-align: center;
}

/* Footer */
.footer {
    border-top: 1px solid #f5f5f5;
    background-color: #050505;
    padding: 3rem 15vw;
    height: 10vh;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
}

.footer-left, .footer-center, .footer-right {
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 200;
    font-size: clamp(1rem, 1.2vw, 4rem);
}

.footer-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.footer-right a {
    color: #ffffff;
    margin-left: 1rem;
    font-size: clamp(1.2rem, 1.5vw, 4rem);
    transition: color 0.3s ease;
}

.footer-right a:hover {
    color: #eb5436;
}