/* ================================== */
/* GENERAL & VARIABLES */
/* ================================== */
:root {
    --bg: #071127;
    --blue-1: #0b6cf6;
    --blue-2: #3da1ff;
    --card: #0f2038;
    --glass: rgba(255, 255, 255, 0.04);
    --accent: #00ffd1;
    --soft: rgba(255, 255, 255, 0.06);
    --radius: 14px;
    --transition: 350ms cubic-bezier(.2, .9, .3, 1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: linear-gradient(180deg, var(--bg), #071533 70%);
    margin: 0;
    color: white;
}

section {
    padding: 60px 20px;
}

h2 {
    font-size: 2.5em;
    font-weight: 600;
    text-align: center;
    margin-bottom: 50px;
    color: white;
    letter-spacing: 1px;
}

/* ================================== */
/* NAV BAR */
/* ================================== */
.main-header {
    background-color: var(--bg);
    padding: 15px 50px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo {
    font-size: 1.8em;
    font-weight: bold;
    color: white;
    text-decoration: none;
}

.nav-logo span {
    color: var(--accent);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: #CBD5E0;
    text-decoration: none;
    font-size: 1.1em;
    transition: color var(--transition);
}

.nav-links a:hover {
    color: var(--accent);
}

/* ================================== */
/* MAIN IMAGE SLIDER */
/* ================================== */
.main-slider-section {
    position: relative;
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: var(--radius);
}

.main-slider-container {
    display: flex;
    width: 100%;
    /* This transition makes the sliding smoother */
    transition: transform 0.5s ease-in-out;
}

.main-slide {
    min-width: 100%;
    height: 600px;
    /* Default height for large screens */
    background-size: cover;
    /* Default for large screens (covers container) */
    background-position: center;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

/* ================================== */
/* SLIDER BUTTON STYLING */
/* ================================== */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.4);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 1.2em;
    z-index: 10;
    transition: background-color 0.3s ease;
}

.slider-btn:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.slider-btn.prev-main {
    left: 20px;
}

.slider-btn.next-main {
    right: 20px;
}

/* ================================== */
/* HEADING & POINTS SECTION */
/* ================================== */
.points-section {
    background-color: var(--bg);
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    border-radius: var(--radius);
    text-align: center;
}

.points-section h2 {
    font-size: 2em;
    font-weight: bold;
    color: var(--accent);
    margin-bottom: 20px;
}

.points-content {
    text-align: left;
    margin-top: 20px;
    line-height: 1.6;
    color: #CBD5E0;
}

.points-content h3 {
    font-size: 1.2em;
    font-weight: 600;
    color: white;
    margin-top: 20px;
    margin-bottom: 10px;
}

.points-content ul {
    list-style: none;
    padding: 0;
}

.points-content li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
}

.points-content li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--accent);
}

/* ================================== */
/* GALLERY SECTION */
/* ================================== */
.gallery-section {
    padding: 40px 20px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    background-color: var(--card);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    /* Ensures image fills height of its item */
    display: block;
    object-fit: cover;
    /* Covers the area, cropping if needed (good for these smaller cards) */
}

/* ================================== */
/* FOOTER */
/* ================================== */
.main-footer {
    background-color: #0d0d0d;
    padding: 40px 20px 20px;
    border-top: 1px solid var(--soft);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 30px;
}

.footer-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-column a {
    font-size: 1em;
    font-weight: 500;
    color: #CBD5E0;
    margin: 0;
    cursor: pointer;
    transition: color var(--transition);
    text-decoration: none;
}

.footer-column a:hover {
    color: var(--accent);
}

.footer-center {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo-center {
    width: 150px;
    margin-bottom: 15px;
}

.footer-logo-center img {
    width: 100%;
    height: auto;
}

.footer-center h4 {
    font-size: 1em;
    font-weight: 500;
    color: #CBD5E0;
    margin: 0 0 10px;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-socials a {
    width: 35px;
    height: 35px;
    background-color: var(--soft);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.1em;
    transition: background-color var(--transition);
    text-decoration: none;
}

.footer-socials a:hover {
    background-color: var(--accent);
    color: var(--bg);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--soft);
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9em;
    color: #888;
}

/* ================================== */
/* RESPONSIVE DESIGN */
/* ================================== */
@media (max-width: 768px) {
    .main-header {
        padding: 15px 20px;
    }

    .navbar {
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        justify-content: center;
    }

    .points-section {
        padding: 20px;
    }

    /* Main Slider adjustments for mobile */
    .main-slide {
        height: 250px;
        /* Reduced height for smaller screens */
        background-size: contain;
        /* Ensures entire image is visible, no cropping */
        background-color: #000;
        /* Fills empty space with black */
    }

    /* Gallery for mobile (stacks into one column) */
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .footer-column {
        align-items: center;
    }
}