@font-face {
    font-family: "regularfont";
    src: url(InstrumentSans-Regular.otf);
}

@font-face {
    font-family: "boldbaddiefont";
    src: url(InstrumentSans-Bold.otf);
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Common Hero Section Styling */
.hero {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

/* Background Image */
.background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

/* Text Styling */
.text-container {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -30%);
    text-align: center;
    color: white;
}

.text-container h1 {
    font-family: regularfont;
    font-size: 5rem;
    margin: 0;
    margin-top: -150px;
}

.text-container h2 {
    font-family: boldbaddiefont;
    font-size: 2rem;
    margin: 0;
}

/* === FLOAT IN ANIMATIONS === */

/* 1st Image (Oil Bottle) */
.oil-image {
    position: absolute;
    bottom: -50vh;
    left: 50%;
    transform: translateX(-50%);
    width: 28%;
    opacity: 0;
    transition: bottom 1.5s ease-in-out, opacity 1.5s ease-in-out;
}

.hero-1.visible .oil-image {
    bottom: 10%;
    opacity: 1;
}

/* 2nd Image (Dropper) */
.dropper-image {
    position: absolute;
    bottom: -50vh;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    opacity: 0;
    transition: bottom 1.5s ease-in-out, opacity 1.5s ease-in-out;
}

.hero-2.visible .dropper-image {
    bottom: 10%;
    opacity: 1;
}

.hero-2 .text-container h1{
    font-size: 4rem;
}


.hero-2 .text-container h2{
    font-size: 1.5rem;
}

/* 3rd Image (Hair Root) */
.hair-root-image {
    position: absolute;
    left: 5%; 
    top: 50%;
    transform: translateY(-50%);
    width: 35%; 
}

.hero-3 .text-container {
    position: absolute;
    top: 50%;
    right: 5%; 
    transform: translateY(-50%);
    text-align: left; 
    width: 40%; 
}

.hero-3 .text-container h1 {
    font-size: 3rem;
    margin: 0;
}

.hero-3 .text-container h2 {
    font-size: 1.5rem;
    margin: 0;
}

/* 4th Image (Hair Growth)*/
.hair-growth-image {
    position: absolute;
    right: 5%; 
    top: 50%;
    transform: translateY(-50%);
    width: 35%;
}

.hero-4 .text-container {
    position: absolute;
    top: 50%;
    left: 5%; 
    transform: translateY(-50%); 
    text-align: left; 
    width: 40%; 
}

.hero-4 .text-container h1 {
    font-size: 3rem;
    margin: 0;
}

.hero-4 .text-container h2 {
    font-size: 1.5rem;
    margin: 0;
}












/* Hero Section */
.hero-5 {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    color: white;
    display: flex;
    align-items: center; /* Center vertically */
    justify-content: center; /* Center horizontally */
}

/* Background Image */
.hero-5 .background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

/* Content Container */
.hero-5 .content-container {
    text-align: center;
    width: 80%;
}

/* Title Styling */
.hero-5 h1 {
    font-family: "boldbaddiefont";
    font-size: 3rem;
    margin-bottom: 20px;
}

/* Features List */
.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-family: "regularfont";
    font-size: 1.2rem;
    text-align: center; /* Center the text */
    margin-bottom: 30px;
}

.features-list li {
    display: flex;
    align-items: center;
    justify-content: center; /* Center icons and text */
    margin-bottom: 10px;
}

.features-list .icon {
    width: 32px;
    height: 32px;
    margin-right: 10px;
    object-fit: contain;
}

/* Buttons */
.buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center; /* Center the buttons */
}

/* Remove default anchor link styles */
a {
    text-decoration: none; /* Removes the underline */
    color: inherit; /* Ensures the text color is inherited from the parent */
    font-family: boldbaddiefont; /* Apply the desired font */
}

/* Button Styling */
.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: black;
    color: white;
    border: none;
    border-radius: 30px;
    padding: 10px 10px;
    font-size: 1rem;
    width: 500px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn .button-icon {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    object-fit: contain;
}

.btn:hover {
    background-color: #444;
}

/* Make sure the anchor inside the button has the same styling */
a.btn {
    font-family: boldbaddiefont; /* Ensure the correct font */
    font-size: 1rem;
    color: white; /* Make sure the text is white */
}

