/* ========================
   RESET & BASE STYLES
   ======================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    background: #0b0b0b;
    color: #f5f5f5;
    line-height: 1.6;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a, a:visited {
    color: #fff;
    text-decoration: none;
}

a:hover {
    color: #ccc;
}

/* ========================
   TYPOGRAPHY
   ======================== */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.8rem;
}

p {
    opacity: 0.9;
    font-size: 1.1rem;
    max-width: 800px;
}

/* ========================
   LAYOUT & COMPONENTS
   ======================== */
section {
    padding: 100px 10%;
}

.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 32px;
    border: 1px solid #fff;
    color: #fff;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn:hover {
    background: #fff;
    color: #000;
}

/* Grid */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.card {
    background: #111;
    padding: 32px;
    border: 1px solid #222;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-8px);
    border-color: #555;
}

/* Full-width Images */
.full-image {
    width: 100%;
    height: 80vh;
    object-fit: cover;
}

/* Split Section */
.split-section {
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 100px 10%;
}

.split-text {
    flex: 1;
}

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border: 1px solid #222;
}

/* ========================
   SECTIONS
   ======================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.85)),
    url('https://i.imgur.com/Uikdurk.png') center/cover no-repeat;
}

.hero .hero-content {
    max-width: 900px;
}

.hero h1 {
    font-size: 4.2rem;
    margin-bottom: 24px;
}

.hero p {
    font-size: 1.35rem;
    margin-bottom: 30px;
}

.cta {
    text-align: center;
    background: #111;
}

.cta p {
    margin: 0 auto 30px auto;
    max-width: 700px;
}

.dark {
    background: #070707;
}

/* ========================
   SOCIAL LINKS
   ======================== */
.social-links {
    display: flex;
    gap: 48px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #fff;
    opacity: 0.85;
    transition: all 0.3s ease;
}

.social-link:hover {
    opacity: 1;
    transform: translateY(-4px);
}

.social-link img {
    width: 52px;
    height: 52px;
    filter: grayscale(100%) brightness(200%);
    margin-bottom: 12px;
    transition: transform 0.3s ease;
}

.social-link:hover img {
    transform: scale(1.1);
}

.social-link p {
    margin: 0;
    font-size: 0.9rem;
    letter-spacing: 2px;
    font-weight: 500;
    text-transform: uppercase;
}

/* ========================
   FOOTER
   ======================== */
footer {
    padding: 60px 10%;
    text-align: center;
    font-size: 0.95rem;
    color: #888;
    border-top: 1px solid #222;
}

/* ========================
   RESPONSIVE DESIGN
   ======================== */
@media (max-width: 992px) {
    h1 { font-size: 3.2rem; }
    h2 { font-size: 2.4rem; }
}

@media (max-width: 768px) {
    section {
        padding: 70px 6%;
    }

    .hero h1 {
        font-size: 2.6rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .split-section {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }

    .split-image img {
        height: 380px;
    }

    .grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .social-links {
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.2rem;
    }
}