@font-face {
    font-family: 'Courier Prime Code';
    src: url('../assets/Courier Prime Code.ttf') format('truetype');
    font-weight: 500;
}

html {
    font-size: clamp(10px, .6944444444444444vw, 16px);
    scroll-behavior: smooth;
    font-weight: bold;

}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Courier Prime Code', 'Inter';
    font-weight: bold;
}


body {
    font-family: 'Courier Prime Code', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.4;
    color: #000;
    background: #FFF;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #FFF;
    padding: 0.8rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    /* border-bottom: 1px solid #e5e5e5; */
}

.logo,
.logo-bottom {
    font-size: 2.4rem;
    font-weight: 700 !important;
    color: #000;
    text-decoration: none;
    letter-spacing: 0.175rem;
    /* border: 1px solid #000; */
}

.logo-bottom {
    font-size: 3.8rem;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 2.5px;
    cursor: pointer;
}

.hamburger span {
    width: 26px;
    height: 5.5px;
    background: #000;
    display: block;
    border-radius: 5px;
}

/* Main Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}



/* Newsletter Section */
.newsletter-section {
    overflow: hidden;
    height: 46rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    position: relative;
    margin-top: 120px;
    margin: 0 3rem;
    z-index: -10;
}

.newsletter-bg{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden; 
}


.newsletter-bg::before {
    content: '';
    position: absolute;
    top: -74%;
    left: -12%;
    width: 120vw;
    height: 105vh;
    background: conic-gradient(from 180deg at bottom,
        #02affb,
        #02affb,
        #e59d97,
        #e59d97
    );

    background-repeat: no-repeat;
    z-index: -1;
    animation: spin 12s linear infinite;
    transform-origin: 50% 100%;
}

.newsletter-bg::after {
    content: '';
    position: absolute;
    top: -74%;
    left: -12%;
    width: 120vw;
    height: 105vh;
    background: conic-gradient(from 0deg at top center,
        #01ec3e,
        #01ec3e,
        #e912b3,
        #170f15
    );
    background-size: cover;
    background-repeat: no-repeat;
    margin-top: 105vh;
    animation: spin 12s linear infinite ;
    transform-origin: 50% 0%;
}

@media (max-width: 768px) {
    .newsletter-bg{

    }
    .newsletter-bg::before {
        top: -33%;
        left: -50vw;
        width: 200vw;
        height: 55vh;
    }
    
    .newsletter-bg::after {
        top: -33%;
        left: -50vw;
        width: 200vw;
        height: 55vh;
        margin-top: 55vh;
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}



@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}


.newsletter-left {
    height: 100%;
    position: relative;
}

.newsletter-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    letter-spacing: -.02em;
    margin-bottom: 3rem;
    position: absolute;
    top: 2.5rem;
    margin-left: 3rem;
}

.hero-image {
    width: 100%;
    position: absolute;
    bottom: 0;
    object-fit: cover;
    border-radius: 0;
}

.newsletter-right {
    padding: 35px 15px 35px 0px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #000;
}

.main-headline {
    font-size: 3.5rem;
    font-weight: lighter;
    line-height: 0.9;
    text-transform: uppercase;
    margin-bottom: 0px;
    position: relative;
}

.headline-line {
    display: block;
    position: relative;
    margin-bottom: 6px;
}

.headline-line::after {
    content: '';
    position: absolute;
    bottom: -4px !important;
    left: 0;
    width: 100%;
    height: 0.07rem;
    background: #6f7274;
}



.headline-line:first-child::before {
    content: '';
    position: absolute;
    top: -4px;
    left: 0;
    width: 100%;
    height: 0.07rem;
    background: #6f7274;
}

.newsletter-form {
    display: flex;
    gap: 16px;
    align-items: center;
    /* max-width: ; */
}

.email-input {
    flex: 1;
    padding: 16px 24px;
    border: none;
    border-radius: 50px;
    background: #FFF;
    font-size: 1.6rem;
    font-weight: 500;
    outline: none;
    color: #000;
    height: 40px;
}

.email-input::placeholder {
    color: #999;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
    font-size: 1.4rem;
    font-family: 'Courier Prime Code', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.send-button {
    font-family: 'Courier Prime Code', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    padding: 10px 32px;
    background: #1f1f1f;
    color: #919598;
    border: none;
    border-radius: 50px;
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    height: 40px;
}

.send-button:hover {
    background: #333;
    transform: translateY(-2px);
}

/* Text Block Section */
.text-section {
    background: #FFF;
    padding: 5rem 0 40px 0;

}

.item-title {
    font-size: 5rem;
    font-weight: bold;
    color: #000;
    margin-bottom: 6rem;
    line-height: 1;
    letter-spacing: -2px;
}

.text-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}



.text-line {
    display: block;
    margin-bottom: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        padding: 16px 20px;
    }


    .container,
    .newsletter-left,
    .newsletter-right {
        padding-left: 20px;
        padding-right: 20px;
    }

    .newsletter-section {
        grid-template-columns: 1fr;
        margin-top: 60px;
    }

    .newsletter-left {
        order: 2;
        padding: 40px 20px;
    }

    .newsletter-right {
        order: 1;
        padding: 60px 20px 40px;
    }

    .newsletter-form {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .send-button {
        align-self: flex-start;
        min-width: 120px;
    }

    .main-headline,
    .text-headline {
        font-size: clamp(36px, 8vw, 48px);
    }

    .text-section {
        padding: 80px 0;
    }

    .text-content {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {

    .main-headline,
    .text-headline {
        font-size: clamp(15px, 4.5vw, 30px);
        line-height: 1.5;
        margin-top: 40px;
    }

    .newsletter-form {
        max-width: 100%;
        display: flex;
    }

    .email-input {
        font-size: 1.4rem;
        padding: 1.2rem 1.6rem;
    }

    .send-button {
        width: 100%;
    }

    .newsletter-title {
        left: 5px;
    }

    .item-title {
        font-size: 1.7rem;
    }

    .logo-bottom {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .footer-bottom {
        width: 100%;
        flex-direction: row;
    }
}


.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: white;
    padding: 60px 80px;
    position: relative;
}

/* 
        .logo {
            position: absolute;
            top: 60px;
            left: 80px;
            border: 2px solid black;
            padding: 8px 16px;
            font-weight: bold;
            font-size: 18px;
            letter-spacing: 1px;
        } */

.main-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-left: 3rem;
    margin-right: 3rem;
}



.taglin e h1 {
    font-size: 50px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -2px;
    margin: 0;
    text-transform: uppercase;
    margin-bottom: 50px;
}

.contact-info {
    flex-shrink: 0;
    width: 50%;
}

.contact-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
    border-bottom: 1.5px solid #bbbbbb;
    /* border-top: 1.5px solid #707375; */
    font-size: 1.4rem;
    font-weight: 700;
}

.border-top {
    border-top: 1.5px solid #bbbbbb;
}




.contact-text {
    color: #333;
    letter-spacing: 0px;
}

.contact-dot {
    width: 1rem;
    height: 1rem;
    background-color: black;
    border-radius: 50%;
    flex-shrink: 0;
}

.footer-bottom {
    width: 50%;
    margin-left: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 100px;
    font-size: 1.4rem;
    color: #000;
    font-weight: 700;
    padding-right: 3rem;
}

.copyright {
    letter-spacing: 1px;
}

.website-credit {
    letter-spacing: 0.5px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-container {
        padding: 4rem 3rem;
    }

    .logo {
        top: 40px;
        left: 3rem;
        font-size: 16px;
        padding: 6px 12px;
    }

    .main-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .tagline {
        margin-right: 0;
        margin-bottom: 40px;
    }

    .tagline h1 {
        font-size: 48px;
    }

    .contact-info {
        width: 100%;
        min-width: auto;
        flex: 1;
    }

    .footer-bottom {
        width: 100%;
        padding-left: 3rem;
    }
}

.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background: #111;
    color: #111 !important;
    direction: rtl;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    text-align: end !important;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;


}

.menu-item {
    position: relative;
    cursor: pointer;
    height: 23.33vh;
    font-size: 4.5rem;
    padding: 3rem;
    background-color: #FFF;
    display: block;
    text-decoration: none;
    color: inherit;
}

.menu-item::before {
    content: '';
    position: absolute;
    top: 3rem !important;
    right: 3rem;
    width: 1.5rem;
    height: 1.5rem;
    border: #000 0.6rem solid;
    border-radius: 50%;
    z-index: 10;
}

.fullscreen-menu.active {
    opacity: 1;
    pointer-events: auto;
}

.fullscreen-menu ul {
    list-style: none;
    padding: 0;
    /* text-align: center; */
}

.fullscreen-menu li {
    margin: 2rem 0;
    font-size: 2rem;
    letter-spacing: 2px;
}

.close-menu {
    background: none;
    border: none;
    cursor: pointer;
    margin-bottom: 2rem;
    font-size: 22.5rem;
    padding: 2rem;
    color: #111;
    line-height: 21.5rem;
}

.menu-logo {
    position: absolute;
    top: 3rem;
    left: 3rem;
    font-size: 2.4rem;
    color: #fff;
}

/*
    Responsive enhancements (mobile-first overrides that do not affect desktop)
*/
@media (max-width: 768px) {
    .newsletter-section {
        height: auto;
        padding: 3rem 2rem;
        margin: 0 1.5rem;
    }

    .newsletter-title {
        position: static;
        margin: 0 0 1.5rem;
    }

    .newsletter-right {
        padding: 2rem 0 0;
    }

    .close-menu {
        font-size: 12.5rem;

    }

    .menu-item {
        padding-top: 5rem;
    }
}

@media (max-width: 480px) {
    .main-content {
        margin-left: 1.5rem;
        margin-right: 1.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding-right: 0;
        width: 100%;
    }

    .newsletter-section {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }

    .newsletter-form {
        width: 100%;
    }

    .email-input {
        width: 100%;
    }

    .close-menu {
        font-size: 7.5rem;
    }
}