/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;  /* Applying Inter font */
}

body, html {
    height: 100%;
    background-color: #FFFFFF;  /* White background for a clean look */
    color: #000000;  /* Black text for contrast */
    font-size: 16px;
    overflow: hidden;  /* Prevent scrolling */
}

/* Fullscreen Container */
.fullscreen-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 100vh;
    padding: 40px 20px;
    position: relative;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
 
    max-width: 1200px;
    position: absolute;

    padding: 0 20px;
}

/* Logo */
.logo {
    font-size: 24px;
    font-weight: 600;
    color: #000;
}

/* Menu Button */
.menu-button {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #000;
}

/* Main Content */
.main-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    height: 100vh;  /* Takes full screen height */
    padding: 0 20px;
    box-sizing: border-box;
}

/* Headline */
.main-content h2 {
    font-size: 10vw;  /* Responsive font size based on viewport width */
    font-weight: 400;
    line-height: 1.2;
    color: #000;
    margin: 0;
    max-width: 90vw;  /* Allows some space around the text */
}

/* Highlighted Text */
.highlight {
    font-weight: 700;
    display: inline-block;
    position: relative;
    padding-bottom: 5px;
}

.highlight::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 4px;
    background: linear-gradient(to right, #ff3b3f, #ff9100);
}

/* Call to Action Link */
.cta-link {
    font-size: 1.5vw;  /* Responsive font size */
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    margin-top: 40px;
}

.cta-link:hover {
    text-decoration: underline;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .main-content h2 {
        font-size: 12vw;  /* Increase font size for smaller screens */
    }

    .cta-link {
        font-size: 4vw;
    }

    .logo {
        font-size: 20px;
    }

    .menu-button {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .main-content h2 {
        font-size: 14vw;  /* Further increase font size for very small screens */
    }

    .cta-link {
        font-size: 5vw;
    }
}
