/* Reset and Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-family: sans-serif; */
}

body {
    overflow-x: hidden;
}

/* Hero Section */
.hero {
    width: 100%;
    height: 100vh;
    /* background-image: linear-gradient(rgba(12, 3, 51, 0.3), rgba(12, 3, 51, 0.3)); */
    position: relative;
    padding: 0 5%;
    display: flex;
    flex-direction: column; /* Stack content vertically */
    align-items: center;
    justify-content: center;
    overflow: hidden;
    font-family: sans-serif;
}

/* Content Section */
.content {
    text-align: center;
    z-index: 0;
}

.content h1 {
    font-size: 160px;
    margin-bottom: 10px;
    color: #fff;
    font-weight: 600;
    -webkit-text-stroke: 0; /* No border by default */
    transition: color 0.3s ease, -webkit-text-stroke 0.3s ease; /* Smooth transition */
}

.content h1:hover {
    color: transparent; /* Makes the text inside transparent */
    -webkit-text-stroke: 1px #fff; /* Adds a visible white border */
}
.content a {
    text-decoration: none;
    color: #fff;
    font-size: 24px;
    border: 2px solid #fff;
    padding: 14px 70px;
    border-radius: 50px;
    margin-top: 20px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.content a:hover {
    background-color: #fff;
    color: #000;
}

/* Video Background */
.back-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -2;
}

/* Aspect Ratio Adjustments */
@media (min-aspect-ratio: 16/9) {
    .back-video {
        width: 100vw;
        height: auto;
    }
}

@media (max-aspect-ratio: 16/9) {
    .back-video {
        width: auto;
        height: 100vh;
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
 
    .content h1 {
        font-size: 110px;
    }

    .content a {
        font-size: 16px;
        padding: 10px 40px;
    }
}

@media (max-width: 480px) {
    
    .content h1 {
        
        font-size: 85px;
        margin-bottom: 10px;
    }

    .content a {
        font-size: 14px;
        padding: 8px 30px;
    }
  
}
