* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #000;
    color: #fff;
    font-family: 'Cormorant Garamond', serif;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Full-screen landing */
.landing {
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Background video */
.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 0;
    opacity: 0.5;
}

/* Dark overlay */
.landing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.55);
    z-index: 1;
}

.landing-logo,
.landing-sub,
.landing-buttons {
    z-index: 2;
}

/* Bigger logo */
.landing-logo {
    width: 480px;
    filter: drop-shadow(0 0 15px rgba(255,255,255,0.2));
}

/* Bigger subtitle */
.landing-sub {
    margin-top: 25px;
    font-size: 33px;
    max-width: 750px;
    opacity: 0.9;
}

/* Landing buttons container */
.landing-buttons {
    margin-top: 40px;
    display: flex;
    gap: 20px;
}

/* Buttons */
.landing-btn {
    padding: 14px 36px;
    border: 1px solid rgba(255,255,255,0.6);
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    transition: color 0.3s ease;
    border-radius: 0; /* ZERO rounding */
}

/* Hover fill animation */
.landing-btn::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: #ffffff;
    z-index: -1;
    transition: width 0.3s ease;
}

.landing-btn:hover::before {
    width: 100%;
}

.landing-btn:hover {
    color: #000; /* Text becomes black on fill */
}

/* Divider */
.section-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(
        to right,
        rgba(255,255,255,0),
        rgba(255,255,255,0.25),
        rgba(255,255,255,0)
    );
}

/* Projects section layout */
.projects-section {
    display: grid;
    grid-template-columns: 1fr 2fr;
    height: 100vh;
    width: 100%;
}

.project-list {
    border-right: 1px solid rgba(255,255,255,0.15);
    display: flex;
    flex-direction: column;
}

.project-item {
    padding: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    cursor: pointer;
    font-size: 22px;
    transition: background 0.3s ease;
}

.project-item:hover {
    background: rgba(255,255,255,0.06);
}

.project-display {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 25px;
}

.project-display img {
    width: 100%;
    max-height: 350px;
    object-fit: cover;
    border: 1px solid rgba(255,255,255,0.15);
}

.btn-more {
    display: inline-block;
    width: fit-content;
    padding: 12px 30px;
    text-decoration: none;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
    transition: 0.3s ease;
}

.btn-more:hover {
    background: rgba(255,255,255,0.1);
}
