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

body {
    background-color: #07111f;
    color: #ffffff;
    font-family: 'Titillium Web', 'Lato', Helvetica, Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: #01daeb;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #01b8c7;
}

.bg-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 132vh;
    background: url('images/bg.jpg') center center / 100% 100% no-repeat;
    z-index: -2;
}

/* Header and Navigation */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(7, 17, 31, 0.9);
    /* Dark background for full width */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar {
    width: 100%;
    /* Full width */
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#main-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    background: transparent;
    height: 100%;
    margin: 0 auto;
}

#main-menu li {
    display: flex;
    align-items: center;
}

#main-menu a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0 115px;
    height: 60px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
    letter-spacing: 0px;
}

#main-menu a:hover {
    color: #ffffff;
}

#main-menu a.active {
    color: #ffffff;
    border-bottom: 1px solid #01daeb;
}

.mobile-menu-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    margin-left: 15px;
}

.mobile-menu-toggle span {
    display: block;
    height: 2px;
    background-color: #fff;
    width: 100%;
}

/* Base sections */
.content-wrapper {
    position: relative;
    width: 100%;
    min-height: 100vh;
}

.content-section {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100vh;
    padding-top: 120px;
    /* Offset for header */
}

.container {
    max-width: 750px;
    margin: 0 auto;
    padding: 40px 20px;
    width: 90%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
}

h2 {
    font-size: 60px;
    line-height: 72px;
    margin-bottom: 40px;
}

p {
    font-family: 'Lato', Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 5px;
}

strong {
    font-weight: 700;
    margin-bottom: 20px;
}

/* Start Section */
#start {
    display: flex;
    align-items: center;
    justify-content: center;
}

#canvas-stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.start-content {
    transform: translateY(-36px);
}

.start-content h1 {
    font-size: 88px;
    font-weight: 700;
    line-height: 105.6px;
    color: #ffffff;
    letter-spacing: -2px;
    animation: fadeInScale 1.5s ease-out forwards;
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Custom Info Grid / Piotr Olech section */
.info-title {
    font-size: 58px;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 50px;
}

.custom-info-grid {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
    margin-top: 20px;
    align-items: flex-start;
}

.info-col {
    width: 50%;
    padding: 0 15px;
    margin-bottom: 30px;
}

.contact-block {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-icon {
    font-size: 32px;
    color: #01daeb;
    margin-top: 2px;
}

.contact-text {
    font-size: 16px;
    line-height: 1.8;
}

.contact-text a {
    color: #ffffff;
    transition: color 0.3s;
}

.contact-text a:hover {
    color: #01daeb;
}

.contact-text strong {
    font-size: 16px;
    font-family: 'Titillium Web', sans-serif;
    font-weight: 700;
}

/* Social Icon exact match */
.social-block {
    margin-top: 20px;
    padding-left: 15px;
    /* Alignment with address */
}

.fb-icon-link {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #01daeb;
    font-size: 16px;
    transition: all 0.3s ease;
}

.fb-icon-link:hover {
    border-color: #01daeb;
    background: rgba(1, 218, 235, 0.1);
    color: #01daeb;
}

/* Offer Section */
.offerContent ul {
    margin-left: 20px;
    margin-top: 16px;
    margin-bottom: 15px;
}

.offerContent li {
    font-family: 'Lato', Helvetica, Arial, sans-serif;
    font-size: 16px;
    margin-bottom: 0px;
    line-height: 1.4;
}

/* Animations */
.animated-section {
    animation: bounceInLeft 1s both;
}

@keyframes bounceInLeft {

    0%,
    60%,
    75%,
    90%,
    100% {
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    0% {
        opacity: 0;
        transform: translate3d(-3000px, 0, 0);
    }

    60% {
        opacity: 1;
        transform: translate3d(25px, 0, 0);
    }

    75% {
        transform: translate3d(-10px, 0, 0);
    }

    90% {
        transform: translate3d(5px, 0, 0);
    }

    100% {
        transform: translate3d(0, 0, 0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .bg-image {
        background-size: auto;
        background-position: 50% 0%;
        background-attachment: fixed;
    }

    .top-bar {
        height: 50px;
    }

    .mobile-menu-toggle {
        display: flex;
        position: absolute;
        right: 30px;
        left: auto;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1001;
        width: 18px;
        /* Smaller hamburger width */
        height: 14px;
        /* Smaller hamburger height */
    }

    .mobile-menu-toggle span {
        background-color: rgba(255, 255, 255, 0.75);
    }

    #main-menu {
        flex-direction: column;
        position: absolute;
        top: 50px;
        /* Aligned to new top-bar height */
        left: 0;
        width: 100%;
        height: auto;
        background: rgba(7, 17, 31, 0.95);
        display: none;
        padding: 10px 0;
        margin: 0;
    }

    #main-menu.show {
        display: flex;
    }

    #main-menu a {
        height: auto;
        padding: 10px 20px;
        border-bottom: none !important;
        justify-content: flex-start;
        text-align: left;
        color: rgba(255, 255, 255, 0.75);
        font-size: 14px;
        font-weight: 700;
        text-transform: uppercase;
    }

    #main-menu a.active {
        color: rgba(255, 255, 255, 0.95);
        background: transparent;
        border-bottom: none !important;
        /* Strip out desktop blue underline */
    }

    #canvas-stars {
        display: none;
    }

    .content-section {
        padding-top: 80px;
    }

    .container {
        width: 95%;
        padding: 20px 10px;
    }

    .start-content {
        justify-content: center;
        align-items: center;
        width: 100%;
        padding-left: 0;
        transform: translateY(-80px);
    }

    .start-content h1 {
        font-size: 42px;
        line-height: 1.1;
        margin: 0;
        text-align: center;
    }

    h2 {
        font-size: 38px;
        line-height: 1.2;
        margin-bottom: 24px;
        text-align: left;
    }

    .info-title {
        font-size: 38px;
        margin-bottom: 24px;
        text-align: left;
    }

    .info-col {
        width: 100%;
    }
}

/* Footer Stripe */
.footer-stripe {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: rgba(7, 17, 31, 0.9);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 1000;
}