/* Import custom WOFF font */
@font-face {
    font-family: 'Hoves';
    src: url('assets/tthoves.woff') format('woff'); /* Adjust path to your font file */
    font-weight: normal;
    font-style: normal;
}

/* Reset and Box Model */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body and HTML Setup */
body, html {
    height: 100%;
    font-family: 'Hoves', sans-serif; /* Apply the custom web font */
}

/* Container for all elements */
.container {
    position: relative;
    height: 100vh;
    width: 100vw;
    background: url('assets/background-image.jpg') no-repeat center center/cover;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Logo styling (Top-right) */
.logo {
    position: absolute;
    top: 20px;
    right: 30px;
    width: 300px; /* Increased size */
}

/* Main text styling with line break and custom font */
.main-text {
    position: absolute;
    bottom: 40px; /* Added padding to bottom */
    left: 40px; /* Added padding to left */
    font-size: 5em; /* Large size for desktop */
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.1em;
    color: transparent; /* Transparent fill to show only the outline */
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.5); /* White with reduced opacity */
}

/* Social icons (Bottom-right) */
.social-icons {
    position: absolute;
    bottom: 40px; /* Added padding to bottom */
    right: 45px;
    display: flex;
    gap: 15px;
}

.social-icons img {
    width: 70px; /* Reduced size for desktop */
    cursor: pointer;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .main-text {
        font-size: 2em; /* Reduce font size for mobile */
        -webkit-text-stroke: 0.5px rgba(255, 255, 255, 0.5); /* Thinner stroke on mobile */
        bottom: 100px; /* Raise position to align with social icons */
        left: 20px; /* Less padding on mobile */
    }

    .logo {
        right: 12px;
        width: 200px; /* Adjust logo size for mobile */
    }

    .social-icons {
        bottom: 100px; /* Align with text by raising it */
        right: 22px; /* Less padding on mobile */
         gap: 10px;
    }

    .social-icons img {
        width: 25px; /* Adjust icon size for mobile */
    }
}
