/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Londrina+Shadow&family=Alegreya+Sans+SC&family=Chango&family=Caladea&family=Rubik+Moonrocks&family=Bungee+Inline&family=Alegreya+Sans+SC&family=Rammetto+One&family=Michroma&family=Nosifer&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Bowlby+One&family=Days+One&family=Lilita+One&family=Titan+One&display=swap');

body {
    font-family: "Open Sans", sans-serif;
    color: #444444;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    color: #000000;
    text-decoration: none;
}

    a:hover {
        color: #5faee3;
        text-decoration: none;
    }

h1, h4, h5, h6 {
    font-family: "Poppins", sans-serif;
}

h2, h3 {
    font-family: "Playfair Display", serif;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    background: #ffffff; /* Light background color for hero section */
    min-height: 100vh;
    max-height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    font-weight: 600;
    overflow: hidden;
    padding-top: 100px;
}

    #hero .hero-info {
        color: #333;
        text-align: center;
        z-index: 2;
    }

    #hero h1 {
        font-size: 80px;
        font-family: Days One, sans-serif;
        ;
        font-weight: 400;
    }


/* Keyframes for the text color change */
@keyframes textColorChange {
    0% {
        color: #000000;
        /* Initial color */
    }

    50% {
        transform: scale(0.7);
        color: #55575b;
    }

    100% {
        transform: scale(1);
        color: #2a2a2b;
    }
}

#hero h3 {
    font-size: 30px;
    font-family: 'Caladea', serif;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #000000;
}

#hero h2 {
    font-size: 30px;
    font-family: 'Alegreya Sans SC', sans-serif;
    margin-bottom: 30px;
    font-weight: 400;
    color: #555;
}

/* Floating Object Styles */
.floating-objects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* Prevent interactions with floating objects */
}

    .floating-objects .float-object {
        position: absolute;
        background-color: rgba(0, 204, 255, 0.5); /* Semi-transparent blue */
        border-radius: 50%;
        animation: float 10s infinite linear;
    }

.float-object.one {
    width: 50px;
    height: 50px;
    left: 5%;
    animation-duration: 12s;
}

.float-object.two {
    width: 70px;
    height: 70px;
    left: 20%;
    animation-duration: 15s;
}

.float-object.three {
    width: 60px;
    height: 60px;
    left: 35%;
    animation-duration: 10s;
}

.float-object.four {
    width: 40px;
    height: 40px;
    left: 50%;
    animation-duration: 18s;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-50px) rotate(180deg);
    }

    100% {
        transform: translateY(0) rotate(360deg);
    }
}

/* Button Row Container */
.button-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 35px;
}

    .button-row a {
        display: inline-block;
    }

/* Custom Button Styles */
.custom-btn {
    font-size: 18px;
    padding: 15px 46px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

    /* Button 1 - Gradient + Hover Animation */
    .custom-btn.btn-1 {
        align-content: center;
        background: linear-gradient(45deg, #13106e, #feb47b);
        color: white;
        box-shadow: 0 9px 15px rgb(0 0 0 / 47%);
    }

        .custom-btn.btn-1:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 25px rgb(0 0 0 / 10%);
        }

        .custom-btn.btn-1::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.3);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.4s ease;
        }

        .custom-btn.btn-1:hover::after {
            transform: scaleX(1);
            transform-origin: left;
        }

    /* Button 2 - Black and White */
    .custom-btn.btn-2 {
        align-content: center;
        background: linear-gradient(45deg, #541e53, #60b2c4);
        color: white;
        box-shadow: 0 9px 15px rgb(0 0 0 / 47%);
    }

        .custom-btn.btn-2:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 25px rgb(101 99 99 / 10%);
        }

        .custom-btn.btn-2::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.3);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.4s ease;
        }

        .custom-btn.btn-2:hover::after {
            transform: scaleX(1);
            transform-origin: left;
        }

    /* Button 3 - Black and White with Box Shadows */
    .custom-btn.btn-3 {
        align-content: center;
        background: linear-gradient(45deg, #5a89be, #8e2d8f);
        color: white;
        box-shadow: 0 9px 15px rgb(0 0 0 / 47%);
    }

        .custom-btn.btn-3:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 25px rgb(0 0 0 / 10%);
        }

        .custom-btn.btn-3::after {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.3);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.4s ease;
        }

        .custom-btn.btn-3:hover::after {
            transform: scaleX(1);
            transform-origin: left;
        }

    /* Button 4 - Gradient with Thin Border */
    .custom-btn.btn-4 {
        background: linear-gradient(45deg, #008080, #ff6347);
        color: white;
        box-shadow: 0 9px 15px rgb(0 0 0 / 47%);
    }

        .custom-btn.btn-4:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 25px rgb(0 0 0 / 10%);
        }

        .custom-btn.btn-4::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.3);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.4s ease;
        }

        .custom-btn.btn-4:hover::after {
            transform: scaleX(1);
            transform-origin: left;
        }

/* Styling for Footer */
#footer {
    background-color: #1c1c1c;
    color: #fff;
    padding: 50px 0;
}

.footer-logo img {
    max-width: 100%;
    margin-bottom: 20px;
}

.footer-logo h1 {
    color: #fff;
    font-size: 50px;
}

/* Keyframes for movement and rotation */
@keyframes moveAndRotate {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.5;
    }

    50% {
        transform: translate(20px, -20px) rotate(45deg);
        opacity: 0.8;
    }

    100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.5;
    }
}

/* Style for the shapes */
.shape {
    position: absolute;
    width: 100px;
    height: 100px;
    background-color: transparent;
    box-shadow: 0 4px 10px rgb(0 0 0 / 43%);
    animation: moveAndRotate 6s infinite ease-in-out;
    opacity: 0.6;
}

    /* Square shapes (no border-radius) */
    .shape.square {
        border-radius: 0%;
    }

    /* Rounded shapes */
    .shape.rounded {
        border-radius: 50%; /* Circle */
    }

    .shape:nth-child(1) {
        top: 10%;
        left: 20%;
        animation-delay: 0s;
    }

    .shape:nth-child(2) {
        top: 10%;
        left: 30%;
        animation-delay: 2s;
    }

    .shape:nth-child(3) {
        top: 35%;
        left: 16%;
        animation-delay: 4s;
    }

    .shape:nth-child(4) {
        top: 10%;
        left: 45%;
        animation-delay: 1s;
    }

    .shape:nth-child(5) {
        top: 75%;
        left: 75%;
        animation-delay: 2.5s;
    }

    .shape:nth-child(6) {
        top: 75%;
        left: 15%;
        animation-delay: 3s;
    }

    .shape:nth-child(7) {
        top: 15%;
        left: 90%;
        animation-delay: 4.5s;
    }

    .shape:nth-child(8) {
        top: 40%;
        left: 80%;
        animation-delay: 1.5s;
    }

    .shape:nth-child(9) {
        top: 75%;
        left: 25%;
        animation-delay: 5s;
    }

    .shape:nth-child(10) {
        top: 75%;
        left: 85%;
        animation-delay: 2s;
    }

/* Mobile responsiveness */
@media (max-width: 991px) {
    .shape {
        width: 50px;
        height: 50px;
    }

    #hero {
        height: 100%;
    }

        #hero h1 {
            font-size: 60px;
            font-weight: 600;
        }

        #hero h2 {
            font-size: 20px;
        }

    .hero-info {
        margin-bottom: 40px;
    }

    /* Custom Button Styles */
    .custom-btn {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .shape {
        width: 40px;
        height: 40px;
    }

    #hero {
        height: 90vh;
    }

        #hero h1 {
            font-size: 60px;
        }

        #hero h2 {
            font-size: 18px;
        }

    /* Button Row on mobile */
    .button-row {
        display: flex;
        justify-content: space-between; /* Space buttons evenly */
        gap: 15px; /* Margin between buttons */
        width: 100%; /* Ensure the buttons take up full width */
        flex-wrap: wrap; /* Allow buttons to wrap if necessary */
        margin-top: 20px;
    }

    .custom-btn {
        font-size: 16px;
        padding: 12px 25px;
        flex: 1 0 48%; /* Make each button take 48% of the width, with 2 buttons per row */
        margin: 5px 0; /* Add margin around buttons */
    }

    /* Button hover effects remain the same */
}

@media (max-width: 575px) {
    .shape {
        width: 30px;
        height: 30px;
    }

    #hero {
        height: 80vh;
    }

        #hero h1 {
            font-size: 50px;
        }

        #hero h2 {
            font-size: 16px;
        }

    .custom-btn {
        font-size: 14px;
        padding: 13px 20px;
    }
}
