* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Geologica', sans-serif;
    background: #000;
}
p, span, .subtitle, .description {
    font-family: 'Inter', sans-serif;
}

/* HERO SECTION */

.hero {
    position: relative;
    width: 100%;
    height: 100vh;

    background-image: url("images/hero-bg.png");
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(to right,
            rgba(0, 0, 0, 0.500),
            rgba(0, 0, 0, 0.400));
}

.content {
    position: relative;
    z-index: 2;

    max-width: 1000px;

    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;

     padding: 0 0 80px 150px;
}

.logo {
    position: absolute;
    top: 40px;
    left: 130px;

    background: url("images/logo.png") no-repeat;
    background-size: contain;

    width: 180px;
    height: 60px;

}

h1 {
    color: white;
    font-family: 'Geologica', sans-serif;
    font-size: 5rem;
    line-height: 0.9;
    font-weight: 800;
    letter-spacing: -5px;
    text-transform: uppercase;

    margin-bottom: 30px;
}

.description {
    color: #8F8F8F;

    font-size: 1.15rem;
    line-height: 1.8;

    max-width: 800px;

    margin-bottom: 40px;
}

.buttons {
    display: flex;
    gap: 20px;
}

.btn {
    display: flex;
    align-items: center;
    gap: 8px;

    text-decoration: none;

    border-radius: 12px;

    transition: .3s;
}

.btn img {
    width: 200px;
    border-radius: 12px;
}

.btn:hover {
    transform: translateY(-3px);
}

/* ==========================
   SECTION 1
========================== */

.section-1 {
    background: #000;
    padding: 40px 0 350px;
}

.section-1-wrapper {
    width: min(1200px, 90%);
    margin: auto;
}

/* --------------------------
   CURRENTLY AVAILABLE CARD
-------------------------- */

.currently-avaliable-box {
    background: #050505;

    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 22px;

    padding: 28px;

    position: relative;
    display: block;

    min-height: 210px;

    margin-bottom: 60px;
}

.currently-avaliable-box .left {
    margin-bottom: 25px;
}

.currently-avaliable-box .left p {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
}

.currently-avaliable-box .center {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.currently-avaliable-box .center p.node-title {
    color: #bdbdbd;
    font-size: 1.05rem;
    font-weight: 600;
}

.currently-avaliable-box .center p:nth-child(2) {
    color: #7c7c7c;
    font-size: 1rem;
    margin-bottom: 15px;
}

.currently-avaliable-box .center p.coming-soon {
    color: #4a4a4a;
    font-size: 1rem;
    font-style: italic;
}

.currently-avaliable-box .right {
    position: absolute;
    bottom: 28px;
    right: 28px;
}

.currently-avaliable-box .right p {
    color: #fff;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .currently-avaliable-box {
        padding: 24px 20px;
    }
    .currently-avaliable-box .center {
        text-align: left;
        align-items: flex-start;
        width: 100%;
    }
    .currently-avaliable-box .center p {
        text-align: left;
        width: 100%;
        display: block;
    }
    .currently-avaliable-box .right {
        position: static;
        margin-top: 20px;
        width: 100%;
        display: flex;
        justify-content: flex-end;
    }
}


/* --------------------------
   IMAGE GRID
-------------------------- */

.four-images-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.four-images-container div {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
}

.four-images-container img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: .4s;
}

.four-images-container div:hover img {
    transform: scale(1.05);
}

.four-images-container p {
    position: absolute;
    left: 28px;
    bottom: 18px;

    color: #fff;
    font-size: 2rem;
    font-weight: 700;

    letter-spacing: 1px;
}
.gray-line {
    border: none;
    height: 1px;
    background: #272727;
    margin: 20px 0;
}
/* ==========================
   SECTION 2
========================== */

.section-2 {
    background: #000;
    padding: 120px 0;
}

.section-2-wrapper {
    width: min(1200px, 90%);
    margin: auto;
}

.section-label {
    color: #8F8F8F;
    font-size: .85rem;
    letter-spacing: 4px;
    margin-bottom: 28px;
}

.section-title {
    color: #fff;

    font-size: 2.7rem;
    font-weight: 700;
    line-height: 1.15;

    max-width: 1000px;

    margin-bottom: 32px;
}

.section-description {
    color: #8F8F8F;

    font-size: 1rem;
    line-height: 1.8;

    max-width: 860px;

    margin-bottom: 60px;
}

.info-card {
    background: #050505;

    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 22px;

    padding: 38px;

    margin-bottom: 22px;
}

.info-card h3 {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;

    margin-bottom: 24px;
}

.info-card p {
    color: #8F8F8F;
    font-size: 1rem;
    line-height: 1.9;

    max-width: 1000px;
}

/* ==========================
   SECTION 3
========================== */

.section-3 {
    background: #000;
    padding: 120px 0;
}

.section-3-wrapper {
    width: min(1200px, 90%);
    margin: auto;
}

.section-3-label {
    color: #8F8F8F;
    font-size: .85rem;
    letter-spacing: 4px;
    margin-bottom: 24px;
}

.section-3-title {
    color: #fff;
    font-size: 2.7rem;
    font-weight: 700;
    line-height: 1.15;
    
    max-width: 1000px;

    margin-bottom: 70px;
}

.section-3-img-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 40px;

    margin-bottom: 90px;
}

.section-3-img-container>div {
    text-align: center;
}

.section-3-img-container img {
    width: 100%;
    max-width: 200px;

    display: block;
    margin: auto auto 20px;
}

.section-3-img-container h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.section-3-img-container p {
    color: #8F8F8F;
    font-size: .95rem;
    line-height: 1.5;

    max-width: 220px;
    margin: auto;
}

.section-3-multiple-box-container {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;

    margin-bottom: 70px;
}

.section-3 .info-card {
    margin-bottom: 0;
    min-height: 220px;
}

.section-3 .info-card h3 {
    font-size: 1.7rem;
    line-height: 1.3;
}

.section-3 .info-card p {
    font-size: 1rem;
}

.quote-block {
    background: #0A0A0A;

    border-radius: 0 22px 22px 0;

    border-left: 3px solid #fff;

    padding: 50px;

    margin-top: 20px;
}

.quote-block p {
    color: #fff;

    font-size: 1.2rem;

    line-height: 1.8;

    max-width: 900px;
}

/* ==========================
   SECTION 4
========================== */

.section-4 {
    background: #000;
    padding: 150px 0;
}

.section-4-wrapper {
    width: min(1200px, 90%);
    margin: auto;
}

.section-4-label {
    color: #8F8F8F;
    font-size: .85rem;
    letter-spacing: 4px;

    margin-bottom: 24px;
}

.section-4-title {
    color: #fff;

    font-size: 2.7rem;
    font-weight: 700;
    line-height: 1.15;

    max-width: 1000px;

    margin-bottom: 50px;
}

.section-4-card {
    background: #050505;

    border: 1px solid rgba(255, 255, 255, .08);

    border-radius: 22px;

    padding: 42px 36px;
}

.section-4-card p {
    color: #8F8F8F;

    font-size: 1rem;
    line-height: 2;

    max-width: 1100px;
}

/* ==========================
   SECTION 5
========================== */

.section-5 {
    background: #000;
    padding: 80px 0;
}

.section-5-wrapper {
    width: min(1200px, 90%);
    margin: auto;
}

.section-5-label {
    color: #8F8F8F;
    font-size: .85rem;
    letter-spacing: 4px;
    margin-bottom: 24px;
}

.section-5-title {
    color: #fff;
    font-size: 2.7rem;
    font-weight: 700;
    line-height: 1.15;
    max-width: 1000px;
    margin-bottom: 30px;
}

.section-5-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.step-card {
    background: #050505;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 22px;
    padding: 28px;
    min-height: 280px;
}

.step-number {
    display: block;
    color: #6f6f6f;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.step-card h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.step-card p {
    color: #8F8F8F;
    line-height: 1.8;
}

.section-gap {
    margin-top: 90px;
}

.section-5-description {
    color: #8F8F8F;
    font-size: .95rem;
    line-height: 1.8;
    max-width: 900px;
    margin-bottom: 30px;
}

.section-5-card {
    background: #050505;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 22px;
    padding: 36px;
    margin-bottom: 80px;
}

.section-5-card ul {
    color: #8F8F8F;
    list-style: none;
    line-height: 1.9;
    margin-bottom: 24px;
    font-size: 1rem;
}

.section-5-card p {
    color: #8F8F8F;
    line-height: 1.9;
    font-size: 1rem;
    max-width: 1100px;
}

/* ==========================
   FOOTER
========================== */

.footer {
    position: relative;

    background: url("images/Footer.png") center center no-repeat;
    background-size: 1200px auto;

    padding: 100px 0 40px;
    overflow: hidden;
}

.footer-overlay {
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, .72);
}

.footer-content {
    position: relative;
    z-index: 2;

    width: min(1200px, 90%);
    margin: auto;

    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo {
    background: url("images/logo.png") no-repeat center;
    background-size: contain;

    width: 320px;
    height: 90px;

    margin-bottom: 25px;
}

.footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 28px;

    margin-bottom: 55px;
}

.footer-nav a {
    color: #fff;
    text-decoration: none;

    font-size: 1.15rem;
    transition: .3s;
}

.footer-nav a:hover {
    opacity: .75;
}

.footer-tagline {
    color: #fff;
    font-size: 1.35rem;

    margin-bottom: 12px;
}

.footer-love {
    color: #fff;
    font-size: 1.25rem;

    margin-bottom: 40px;
}

.footer-copyright {
    color: #d0d0d0;
    font-size: 1rem;
}

/* ==========================
   RESPONSIVE
========================== */

@media (max-width:768px) {

    .content {
        justify-content: flex-end;
        padding: 0 35px 70px;
    }

    .logo {
        top: 35px;
        left: 35px;
    }

    h1 {
        font-size: 3.5rem;
        margin-bottom: 20px;
    }

    .description {
        font-size: .95rem;
        line-height: 1.7;
        margin-bottom: 30px;
    }

    .buttons {
        gap: 12px;
    }

    .btn {
        border-radius: 16px;
    }

    .section-1 {
        padding: 20px 0 60px;
    }

    .section-1-wrapper {
        width: 90%;
    }

    .currently-avaliable-box {
        flex-direction: column;
        align-items: flex-start;

        min-height: auto;

        gap: 20px;

        padding: 20px;
        margin-bottom: 30px;
    }

    .currently-avaliable-box p:first-child {
        font-size: 1rem;
    }

    .currently-avaliable-box>div p {
        font-size: .8rem;
    }

    .currently-avaliable-box p:last-child {
        align-self: flex-end;
    }

    .four-images-container {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .four-images-container div {
        height: 150px;
    }

    .four-images-container p {
        left: 16px;
        bottom: 12px;
        font-size: 1.8rem;
    }

    .section-2 {
        padding: 80px 0;
    }

    .section-title {
        font-size: 2.6rem;
        max-width: 100%;
    }

    .section-description {
        font-size: .95rem;
        line-height: 1.8;

        margin-bottom: 40px;
    }

    .info-card {
        padding: 28px 20px;
        border-radius: 18px;
    }

    .info-card h3 {
        font-size: 1.6rem;
        margin-bottom: 18px;
    }

    .info-card p {
        font-size: .95rem;
        line-height: 1.8;
    }

    .section-3 {
        padding: 80px 0;
    }

    .section-3-title {
        font-size: 2.6rem;
        margin-bottom: 50px;
    }

    .section-3-img-container {
        gap: 20px;
        margin-bottom: 50px;
    }

    .section-3-img-container img {
        max-width: 110px;
    }

    .section-3-img-container h3 {
        font-size: 1rem;
    }

    .section-3-img-container p {
        font-size: .7rem;
    }

    .section-3-multiple-box-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .section-3 .info-card {
        min-height: 180px;
    }

    .quote-block {
        padding: 30px 25px;
    }

    .quote-block p {
        font-size: 1rem;
    }

    .section-4 {
        padding: 80px 0;
    }

    .section-4-title {
        font-size: 2.6rem;
        margin-bottom: 35px;
    }

    .section-4-card {
        padding: 30px 24px;
        border-radius: 18px;
    }

    .section-4-card p {
        font-size: 1rem;
        line-height: 1.9;
    }

    .section-5 {
        padding: 80px 0;
    }

    .section-5-title {
        font-size: 2.6rem;
    }

    .section-5-steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
        margin-bottom: 80px;
    }

    .step-card {
        min-height: 220px;
    }

    .step-number {
        font-size: 3rem;
    }

    .footer {
        padding: 70px 0 35px;
    }

    .footer-logo {
        width: 240px;
        height: 70px;
    }

    .footer-nav {
        gap: 18px 45px;
    }

    .footer-nav a {
        font-size: 1rem;
    }

    .footer-tagline {
        font-size: 1.1rem;
    }

    .footer-love {
        font-size: 1.05rem;
    }
}

@media (max-width:480px) {

    .logo {
        width: 140px;
        height: 35px;

        background-size: contain;
        background-repeat: no-repeat;
        background-position: left center;
    }

    h1 {
        font-size: 2.8rem;
    }

    .description {
        font-size: .85rem;
    }

    .buttons {
        flex-wrap: nowrap;
    }

    .btn {
        flex: 1;
        justify-content: center;
    }

    .section-2 {
        padding: 60px 0;
    }

    .section-label {
        font-size: .7rem;
        letter-spacing: 3px;
    }

    .section-title {
        font-size: 2.2rem;
        line-height: 1.15;
    }

    .section-description {
        font-size: .9rem;
    }

    .info-card {
        padding: 22px 18px;
    }

    .info-card h3 {
        font-size: 1.4rem;
    }

    .info-card p {
        font-size: .88rem;
    }

    .section-3-title {
        font-size: 2.2rem;
    }

    .section-3-label {
        font-size: .7rem;
        letter-spacing: 3px;
    }

    .section-3-img-container {
        gap: 10px;
    }

    .section-3-img-container img {
        max-width: 85px;
    }

    .section-3 .info-card h3 {
        font-size: 1.2rem;
    }

    .section-3 .info-card p {
        font-size: .85rem;
    }

    .quote-block {
        padding: 24px 18px;
    }

    .quote-block p {
        font-size: .95rem;
    }

    .section-4 {
        padding: 60px 0;
    }

    .section-4-label {
        font-size: .7rem;
        letter-spacing: 3px;
    }

    .section-4-title {
        font-size: 2.2rem;
        max-width: 300px;

        margin-bottom: 28px;
    }

    .section-4-card {
        padding: 24px 20px;
    }

    .section-4-card p {
        font-size: .95rem;
        line-height: 1.85;
    }

    .section-5 {
        padding: 60px 0;
    }

    .section-5-label {
        font-size: .7rem;
        letter-spacing: 3px;
    }

    .section-5-title {
        font-size: 2.2rem;
    }

    .section-5-description {
        font-size: .95rem;
    }

    .step-card {
        padding: 20px;
    }

    .step-card h3 {
        font-size: 1.2rem;
    }

    .step-card p {
        font-size: .85rem;
    }

    .section-5-card {
        padding: 24px 20px;
    }

    .footer {
        padding: 60px 0 30px;
    }
    .footer{
        position: relative;
        background: url(./images/Footer.png) center center no-repeat;
        background-size: 1200px auto;
        padding: 100px 0 40px;
        overflow: hidden;
    }

    .footer-logo {
        width: 220px;
        height: 65px;
        margin-bottom: 40px;
    }

    .footer-nav {
        display: grid;

        grid-template-columns: repeat(2, auto);

        justify-content: center;

        column-gap: 70px;
        row-gap: 25px;

        margin-bottom: 50px;
    }

    .footer-nav a {
        font-size: 1.05rem;
    }

    .footer-tagline {
        font-size: 1rem;
        line-height: 1.6;

        margin-bottom: 14px;
    }

    .footer-love {
        font-size: 1rem;
        line-height: 1.6;

        margin-bottom: 55px;
    }

    .footer-copyright {
        font-size: .9rem;
    }
}

/* ==========================
   CONTACT MODAL CSS
========================== */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal-content {
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    width: 90%;
    max-width: 450px;
    position: relative;
    color: #fff;
    font-family: 'Geologica', sans-serif;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #888;
}

.close-modal:hover {
    color: #fff;
}

.modal-content h2 {
    margin-bottom: 10px;
}

.modal-content p {
    font-size: 0.95rem;
    color: #aaa;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
}

.modal-content textarea {
    width: 100%;
    background: #000;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 15px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    resize: vertical;
    margin-bottom: 20px;
}

.modal-content textarea:focus {
    outline: none;
    border-color: #555;
}

.submit-btn {
    width: 100%;
    background: #fff;
    color: #000;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Geologica', sans-serif;
}

.submit-btn:hover {
    background: #e0e0e0;
}

/* ==========================
   THEME TOGGLE BUTTON
========================== */
.theme-toggle {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    color: #fff;
}

.theme-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.theme-icon {
    width: 24px;
    height: 24px;
}

/* ==========================
   LIGHT MODE OVERRIDES
========================== */
body.light-mode {
    background: #f8f9fa;
    color: #111;
}

body.light-mode .overlay {
    background: linear-gradient(to right, rgba(255, 255, 255, 0.90), rgba(255, 255, 255, 0.75));
}

body.light-mode .logo {
    filter: brightness(0);
}

body.light-mode .description {
    color: #444;
}

body.light-mode .theme-toggle {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1);
    color: #000;
}

body.light-mode .theme-toggle:hover {
    background: rgba(0, 0, 0, 0.1);
}

body.light-mode h1, 
body.light-mode h2, 
body.light-mode h3 {
    color: #000;
}

/* Modal Light Mode */
body.light-mode .modal-content {
    background: #fff;
    border: 1px solid #ddd;
    color: #000;
}
body.light-mode .modal-content p { color: #555; }
body.light-mode .modal-content textarea {
    background: #f5f5f5;
    border: 1px solid #ccc;
    color: #000;
}
body.light-mode .submit-btn {
    background: #000;
    color: #fff;
}
body.light-mode .submit-btn:hover { background: #333; }

/* Sections */
body.light-mode .section-1 { background: #fff; }
body.light-mode .section-1-wrapper p { color: #555; }
body.light-mode .four-images-container p { 
    color: #fff; 
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

body.light-mode .currently-avaliable-box {
    background: #fff;
    border: 1px solid #eaeaea;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
body.light-mode .currently-avaliable-box .left p,
body.light-mode .currently-avaliable-box .right p { color: #000; }
body.light-mode .currently-avaliable-box .center p.node-title { color: #333; }
body.light-mode .currently-avaliable-box .center p:nth-child(2) { color: #666; }

body.light-mode .section-2 { background: #f8f9fa; }
body.light-mode .quote-block {
    background: #fff;
    border: 1px solid #eaeaea;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    color: #111;
}
body.light-mode .quote-block p { color: #555; }

body.light-mode .section-3 { background: #fff; }
body.light-mode .section-3-img-container img { filter: brightness(0); }

body.light-mode .info-card {
    background: #fff;
    border: 1px solid #eaeaea;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
body.light-mode .info-card h3 { color: #000; }
body.light-mode .info-card p { color: #555; }

body.light-mode .section-4 { background: #f8f9fa; }
body.light-mode .section-4-card {
    background: #fff;
    border: 1px solid #eaeaea;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
body.light-mode .section-4-card p { color: #555; }

body.light-mode .section-5 { background: #fff; }
body.light-mode .step-card {
    background: #f8f9fa;
    border: 1px solid #eaeaea;
}
body.light-mode .step-card p { color: #555; }
body.light-mode .step-number { color: #e0e0e0; }

body.light-mode .section-5-card {
    background: #fff;
    border: 1px solid #eaeaea;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
body.light-mode .section-5-card p,
body.light-mode .section-5-card ul { 
    color: #555; 
}

body.light-mode .footer {
    background-color: #050505;
}

@media (max-width: 768px) {
    .theme-toggle {
        top: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}
