@font-face {
    font-family: 'GeneralSansRegular';
    src: url(/assets/fonts/GeneralSans-Regular.woff2)
}
@font-face {
    font-family: 'GeneralSansRegularItalic';
    src: url(/assets/fonts/GeneralSans-RegularItalic.woff2)
}
@font-face {
    font-family: 'GeneralSansLight';
    src: url(/assets/fonts/GeneralSans-Light.woff2)
}
@font-face {
    font-family: 'BoskaLight';
    src: url(/assets/fonts/Boska-Light.woff2)
}
@font-face {
    font-family: 'BoskaItalicLight';
    src: url(/assets/fonts/Boska-LightItalic.woff2)
}
@font-face {
    font-family: 'BoskaItalicRegular';
    src: url(/assets/fonts/Boska-RegularItalic.woff2)
}
/* Base styles */
body {
    cursor: url('/storage/Artboard3.png'), auto !important;
    font-family: 'GeneralSansRegular';
    background-color: #f6f5e9;
}

.footer-inner {
    width: 100%;
    justify-self: center;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    /* border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px; */
    /* background-color: #d3ff6a; */
}
.banner-image{
    position: absolute;
    z-index: 1;
    height: auto;
    padding-left: 50%;
}
.footer-svg img {
    height: 100%; /* Set tinggi img mengikuti tinggi footer-svg */
    width: auto;  /* Menjaga proporsi lebar */
    object-fit: contain; /* Memastikan gambar sesuai dengan kontainer tanpa terpotong */
}
.footer-svg{
    padding: 40px;
    max-width: 100%;
    z-index: 1;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center; 
}
.social-media-section {
    display: flex;
    align-items: left; /* Align icons with the text */
}

.social-media-section p {
    margin: 0;
    padding-top: 10px;
    margin-right: 10px; /* Space between text and icons */
    color: #1c1c1a;
    font-size: 16px;
}

.social-icons a {
    display: inline-block;
    margin-right: 50px;
    color: #1c1c1a;
    font-size: 30px;
    transition: transform 0.3s ease, color 0.3s ease; /* Smooth hover effect */
    text-align: left;
}

.social-icons a:hover {
    color: #1c1c1a;
    transform: scale(1.1); /* Slight scale on hover */
}


.footer-wave path {
    fill: #d3ff6a; /* Wave color */
}

.footer-signup {
    flex: 1; 
    width: 50%;
}

.footer-signup h3 {
    margin-bottom: 10px;
    font-size: 20px;
}

.footer-signup p {
    margin-bottom: 20px;
}

.email-form {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.email-form input {
    width: 250px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-right: 10px;
}

.email-form button {
    background-color: white;
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 4px;
}

.footer-links h4 {
    margin-bottom: 10px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    text-decoration: none;
    color: white;
}

/* .country-selector {
    background-color: transparent;
    color: #1c1c1a;
    border: 1px solid #1c1c1a;
    padding: 10px;
    border-radius: 4px;
    cursor: pointer;
} */

.legal-links {
    display: flex;
    list-style: none;
    padding: 0;
}

.legal-links li {
    margin-right: 15px;
}

.legal-links li a {
    text-decoration: none;
    color: #1c1c1a;
    font-size: 12px;
}

.social-icons {
    display: flex; /* Use flexbox for alignment */
    align-items: center; /* Center items vertically */
}

.social-icons a {
    display: inline-block; /* Ensure proper spacing */
    margin-right: 15px; /* Space between icons */
    color: #1c1c1a; /* Default icon color */
    font-size: 30px; /* Icon size */
    transition: transform 0.3s ease, color 0.3s ease; /* Smooth hover effect */
}

.social-icons a:hover {
    color: #1c1c1a;
    transform: scale(1.1); /* Slight size increase on hover */
}

.footer-divider {
    border: none; /* Remove default border */
    height: 1px; /* Line height */
    background-color: #1c1c1a; /* Line color */
    margin: 20px 0; /* Spacing above and below */
    opacity: 0.5; /* Optional transparency */
}
.footer-bottom-text {
    text-align: center; /* Center the text horizontally */
    font-size: 12px; /* Set font size to 10px */
    margin-top: auto; /* Push it to the bottom of the container */
    margin-right: -20%;
    margin-bottom: -40px;
}
.footer-text {
    display: none;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Space between items */
    flex-wrap: wrap; 
}

.footer-bottom p {
    margin: 0 15px; /* Optional margin between elements */
}

.footer-bottom ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-bottom ul li {
    margin-right: 15px;
}
@media (max-width: 1080px) {
    body{
        font-size: 12px;
    }
    .banner-image {
        display: none;
    }
    .footer-svg{
        padding: 30px;
        max-width: 100%;
        z-index: 1;
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center; 
        flex-wrap: wrap;
    }
    
    .footer-signup .social-media-section p {
        flex: 1; 
        width: 100%;
    }
    .social-icons a {
        display: inline-block; /* Ensure proper spacing */
        margin-right: 15px; /* Space between icons */
        color: #1c1c1a; /* Default icon color */
        font-size: 20px; /* Icon size */
        transition: transform 0.3s ease, color 0.3s ease; /* Smooth hover effect */
    }
    .social-media-section {
        display: relative;
        align-items: right; /* Align icons with the text */
    }
    
    .social-media-section p {
        margin: 0;
        padding-top: 10px;
        margin-right: 10px; /* Space between text and icons */
        color: #1c1c1a;
        font-size: 14px;
    }
    
    .footer-bottom-text1 {/* Center the text horizontally */
        font-size: 12px; /* Set font size to 10px */
        padding-bottom: 8px; /* Add padding from the bottom */
        margin-top: auto; /* Push it to the bottom of the container */
        text-align: center; 
    }
    .footer-bottom-text {/* Center the text horizontally */
        display: none;
    }
    }


