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

body {
    background-color: #0f1117;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    background: rgba(15, 17, 23, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(200, 16, 46, 0.2);
    z-index: 100;
    padding: 12px 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-img {
    height: 50px;
    width: auto;
    border-radius: 4px;
}

.nav-name {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 3px;
    color: #ffffff;
}

@media (max-width: 600px) {
    .nav-name {
        font-size: 0.8rem;
        letter-spacing: 1px;
    }
    .logo-img {
        height: 40px;
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 90vh;
    min-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(15, 17, 23, 0.3) 0%,
        rgba(15, 17, 23, 0.6) 50%,
        rgba(15, 17, 23, 0.95) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 60vh 20px 0;
    max-width: 800px;
}

.hero-tagline {
    font-family: 'Oswald', sans-serif;
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 30px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background: #c8102e;
    color: #ffffff;
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 2px;
    border-radius: 4px;
    transition: background 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
    background: #e0193a;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .hero-tagline {
        font-size: 2rem;
    }
    .hero {
        height: 70vh;
        min-height: 400px;
    }
    .cta-button {
        padding: 14px 30px;
        font-size: 1rem;
    }
}

/* Portfolio Section */
.portfolio {
    padding: 80px 0;
}

.section-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 40px;
    color: #ffffff;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #c8102e;
    margin: 15px auto 0;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.photo-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.photo-card:hover {
    border-color: #c8102e;
    transform: scale(1.02);
}

.photo-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .photo-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .photo-img {
        height: 300px;
    }
    .section-title {
        font-size: 2rem;
    }
    .portfolio {
        padding: 50px 0;
    }
}

/* About Section */
.about {
    padding: 60px 0;
}

.about-card {
    background: #1a1d24;
    border-radius: 12px;
    padding: 50px;
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid rgba(200, 16, 46, 0.15);
}

.about-card p {
    font-size: 1.1rem;
    color: #9ca3af;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-card .section-title {
    text-align: left;
}

.about-card .section-title::after {
    margin: 15px 0 0;
}

@media (max-width: 768px) {
    .about-card {
        padding: 30px 20px;
    }
}

/* Footer */
.footer {
    background: #0a0b0f;
    border-top: 1px solid rgba(200, 16, 46, 0.15);
    padding: 40px 0 20px;
    margin-top: 40px;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    border-radius: 4px;
}

.footer-name {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    letter-spacing: 2px;
    color: #9ca3af;
}

.footer-contact {
    color: #9ca3af;
    font-size: 0.95rem;
}

.footer-bottom {
    width: 100%;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: #6b7280;
    font-size: 0.85rem;
}

@media (max-width: 600px) {
    .footer-logo {
        flex-direction: column;
        gap: 8px;
    }
}
