/* ================= RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Google Sans", system-ui, sans-serif;
}

body {
    background: #000;
    color: #fff;
    overflow-x: hidden;
}

/* ================= NAVBAR ================= */
.nav {
    position: absolute;
    top: 24px;
    left: 40px;
    right: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.icon-logo {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: white;
}

.brand-text {
    font-size: 26px;
    font-weight: 500;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 28px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}

/* ================= SECTION ================= */
.section {
    padding: 140px 24px;
    border-bottom-left-radius: 60px;
    border-bottom-right-radius: 60px;
}

/* ================= HERO ================= */
.gallery-hero {
    background: radial-gradient(
        circle at top left,
        #1f0f0f,
        #000 65%
    );
}

.gallery-hero h1 {
    font-size: clamp(42px, 5vw, 72px);
    margin-bottom: 18px;
}

.gallery-hero p {
    max-width: 720px;
    font-size: 18px;
    color: #cfcfcf;
    line-height: 1.7;
}

/* ================= GALLERY ================= */
.gallery-section {
    background: #fff;
    color: #000;
    margin-top: -40px;
}

.gallery-grid {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
}
.gallery-wide {
    grid-column: 1 / -1; /* spans all columns */
    height: 620px;
}

/* Card */
.gallery-card {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.gallery-card {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* important */
}


.gallery-card:hover img {
    transform: scale(1.08);
}

/* Overlay */
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.75),
        rgba(0,0,0,0.05)
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 26px;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h3 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 6px;
}

.gallery-overlay span {
    font-size: 14px;
    color: #ffb3b3;
}

/* ================= MOBILE ================= */
@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .nav {
        left: 20px;
        right: 20px;
    }

    .brand-text {
        font-size: 20px;
    }
}
@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-wide {
        height: 260px;
    }

    .gallery-card {
        height: 360px;
    }
}
/* =========================
   FOOTER
========================= */
.footer {
    background: radial-gradient(
        circle at top left,
        #2b0a0a,
        #120000 60%
    );
    color: #e6e6e6;
    padding: 100px 20px 40px;
    position: relative;
    overflow: hidden;
}

.footer .container {
    max-width: 1300px;
    margin: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-content > div {
    transition: transform .4s ease;
}

.footer-content > div:hover {
    transform: translateY(-6px);
}

.footer-logo .logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    margin-bottom: 18px;
}

.footer-logo .logo-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ef3838, #992111);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
}

.footer-logo .logo-main {
    font-family: "Google Sans", sans-serif;
    font-size: 26px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 1px;
}

.footer-logo .logo-tag {
    display: block;
    font-size: 13px;
    color: #ffb3b3;
}

.footer-logo p {
    font-size: 15px;
    line-height: 1.7;
    color: #d0d0d0;
    max-width: 380px;
}

.footer h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 18px;
    color: #ff9a9a;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #cfcfcf;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ef3838;
}

.footer-contact p {
    font-size: 15px;
    margin-bottom: 14px;
    color: #d0d0d0;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.footer-contact i {
    color: #ef3838;
    margin-top: 4px;
}

.social-links {
    display: flex;
    gap: 14px;
    margin-top: 20px;
}

.social-links a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 15px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
    background: linear-gradient(135deg, #ef3838, #992111);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 26px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 14px;
    color: #bfbfbf;
}

.footer-bottom span {
    color: #ef3838;
}
