/* Global Styles */


body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    background-color: #1a3c40;
    color: #f0f0f0;
}

/* Navbar Logo Styling */
.logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.1);
}

/* Navbar Styling */
.custom-navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(to right, #1a3c40, #2c5364);
    padding: 20px 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease-in-out;
    margin-bottom: 0;
}

.custom-navbar .navbar-brand {
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
    display: flex;
    align-items: center;
}

.custom-navbar .navbar-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
    /* Adds space between nav links */
}

.custom-navbar .navbar-brand:hover {
    color: #4f9c91;
    text-decoration: none;
}

.custom-navbar .navbar-toggler {
    border: none;
    outline: none;
}

.custom-navbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(255, 255, 255, 0.8)' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Navbar Links */
.custom-navbar .navbar-nav .nav-link {
    font-size: 1.2rem;
    color: #ccc;
    margin-left: 1rem;
    transition: color 0.3s, transform 0.3s ease;
}

.custom-navbar .navbar-nav .nav-link:hover {
    color: #4f9c91;
    transform: scale(1.1);
}

.nav-link.active {
    font-weight: bold;
    color: #4f9c91;
}

/* Button Login Styling */
.custom-navbar .btn-login {
    margin-left: 1rem;
}

.btn-login {
    font-size: 1rem;
    font-weight: bold;
    color: #ffffff;
    background: linear-gradient(to right, #3c7a74, #4f9c91);
    border: none;
    border-radius: 25px;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.btn-login:hover {
    background: linear-gradient(to right, #4f9c91, #5fb0a7);
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 992px) {
    .custom-navbar {
        flex-direction: column;
        /* Stack items vertically */
        align-items: flex-start;
        /* Align items to the left */
        padding: 15px;
    }

    .custom-navbar .navbar-brand {
        margin-bottom: 10px;
        /* Adds space between logo and nav links */
        align-self: flex-start;
        /* Ensure brand stays at the top */
    }

    .custom-navbar .navbar-nav {
        flex-direction: column;
        /* Stack nav links vertically */
        align-items: flex-start;
        /* Align nav links to the left */
        width: 100%;
        /* Full width for better alignment */
        gap: 0.5rem;
    }

    .custom-navbar .btn-login {
        align-self: flex-start;
        /* Align button to the left */
        width: auto;
        /* Prevent full-width button */
        margin: 10px 0;
    }

    .custom-navbar .navbar-toggler {
        display: block;
        /* Tampilkan tombol toggler */
        margin-left: auto;
        border: none;
    }

    .custom-navbar .navbar-toggler-icon {
        width: 25px;
        height: 25px;
    }
}

/* Hero Section Styling */
.hero {
    background: linear-gradient(135deg, rgba(26, 60, 64, 0.9), rgba(42, 84, 82, 0.9)), url('/images/hero.jpeg') no-repeat center / cover;
    color: #ffffff;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: radial-gradient(circle, rgba(79, 156, 145, 0.3) 0%, transparent 80%); */
    z-index: 1;
    animation: pulse 4s infinite;
}

html,
body {
    scroll-behavior: smooth;
    height: 100%;
}

.hero-content {
    z-index: 2;
    animation: fadeIn 1.5s ease;
}

.hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 4rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.5;
    position: relative;
    animation: textGlow 3s infinite alternate;
}

.hero h1 span {
    color: #4f9c91;
}

.hero p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    margin: 20px 0;
    animation: fadeIn 2s ease;
    color: #d7f0e9;
}

.hero .explore-btn {
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(90deg, #4f9c91, #3c7a74);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease-in-out;
    animation: buttonGlow 2.5s infinite alternate;
}

.hero .explore-btn:hover {
    transform: translateY(-5px) scale(1.1);
    background: linear-gradient(90deg, #3c7a74, #2b5a56);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.7);
}

/* Animations */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        opacity: 0.5;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(1.5);
    }
}

@keyframes textGlow {
    0% {
        text-shadow: 0 0 10px #4f9c91, 0 0 20px #4f9c91, 0 0 30px #3c7a74;
    }

    100% {
        text-shadow: 0 0 20px #3c7a74, 0 0 30px #2b5a56, 0 0 40px #1a3c40;
    }
}

@keyframes buttonGlow {
    0% {
        box-shadow: 0 0 15px #4f9c91, 0 0 30px #3c7a74;
    }

    100% {
        box-shadow: 0 0 30px #3c7a74, 0 0 45px #2b5a56;
    }
}

/* About Section */
.about-section {
    background: linear-gradient(135deg, #ffffff, #1a3c40);
    color: #fff;
    padding: 50px 20px;
    font-family: 'Roboto', sans-serif;
    margin: 0;
}

.about-section .section-title {
    font-size: 3rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeInUp 1s ease-in-out;
}

.about-section .section-desc {
    font-size: 1.2rem;
    color: #000000;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.7;
    animation: fadeInUp 1.5s ease-in-out;
}

/* Styling for each image */
.about-section .about-img {
    width: 100%;
    height: 100%;
    max-width: 400px;
    /* Set the max width of images */
    height: 250px;
    /* Fixed height to make it square */
    object-fit: cover;
    /* Ensures the image covers the space without stretching */
    border: 4px solid #fff;
    /* White border to make it look modern */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    /* Subtle shadow for depth */
    transition: all 0.3s ease;
    /* Smooth transition for hover effect */
    border-radius: 10px;
    /* Slight rounding for a modern look */
    animation: fadeInUp 2s ease-in-out;
}

/* Hover Effect on Image */
.about-section .about-img:hover {
    transform: scale(1.1);
    /* Zoom in effect */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    /* Bigger shadow on hover */
    border-color: #034a53;
    /* Change border color on hover */
}

/* Styling for text under each image */
.about-section h5 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #000000;
    margin-top: 20px;
    text-transform: capitalize;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

/* Hover Effect on Text */
.about-section h5:hover {
    color: #545656;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Animations */
[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive adjustments for smaller devices */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
        /* Resize for mobile */
    }

    .hero p {
        font-size: 1rem;
    }

    .about-section .about-img {
        height: auto;
        /* Maintain aspect ratio */
        max-width: 100%;
        /* Fit smaller screens */
    }
}

@media (max-width: 576px) {
    .hero-content {
        padding: 20px;
        /* Add padding for small screens */
    }

    .about-section .section-title {
        font-size: 2rem;
        /* Smaller font for titles */
    }
}

/* About Page Section */
.about-page {
    background: linear-gradient(135deg, #1a3c40, #1a3c20);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    padding-top: 50px;
    padding-bottom: 80px;
}

/* Section Title */
.about-page .section-title {
    font-size: 3rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff;
    margin-bottom: 20px;
}

/* Section Description */
.about-page .section-desc {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    color: #f7f7f7;
    line-height: 1.7;
}

/* Features List */
.features-list {
    list-style-type: none;
    padding-left: 0;
    color: #f7f7f7;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.features-list li {
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.features-list li:hover {
    color: #00bcd4;
}

/* Section Subtitle */
.about-page .section-subtitle {
    font-size: 2rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 15px;
}

/* Value Items */
.value-item h4 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #00bcd4;
    margin-bottom: 10px;
}

.value-item p {
    font-size: 1rem;
    color: #f7f7f7;
    line-height: 1.5;
}

/* Image Styles */
.about-page .about-img {
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-page .about-img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* Button Styles */
.custom-btn {
    background-color: #126730;
    color: #fff;
    border-radius: 25px;
    padding: 12px 30px;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.custom-btn:hover {
    background-color: #3a8d99;
    text-decoration: none;
}

/* Animations */
[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="fade-right"] {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

[data-aos="fade-right"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

[data-aos="fade-left"] {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

[data-aos="fade-left"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 992px) {
    .about-page .section-title {
        font-size: 2rem;
    }

    .about-page .section-desc {
        font-size: 0.95rem;
    }

    .features-list {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .about-page .section-title {
        font-size: 1.8rem;
    }

    .about-page .section-desc {
        font-size: 0.9rem;
    }

    .custom-btn {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #0f2b2f;
    margin: 0;
    padding: 0;
}

/* Button Style */
.futuristic-btn {
    display: inline-block;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    background: linear-gradient(90deg, #3c7a74, #2b5a56);
    border: none;
    border-radius: 30px;
    box-shadow: 0px 8px 15px rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.futuristic-btn:hover {
    color: #fff;
    background: linear-gradient(90deg, #3c7a74, #2b5a56);
    box-shadow: 0px 15px 20px rgba(13, 174, 107, 0.4);
    transform: translateY(-5px);
}

.futuristic-btn i {
    margin-right: 10px;

}

@keyframes icon-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.menu-page {
    background: linear-gradient(120deg, #1a3c40, #0f2b2f);
    margin-bottom: 3rem;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.section-desc {
    font-size: 1.25rem;
    opacity: 0.8;
}

.menu-category {
    font-size: 1.8rem;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.menu-card {
    background-color: transparent;
    border-radius: 10px;

    text-align: center;
    margin: 20px 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.menu-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 10px;
}

.menu-title {
    margin-top: 15px;
    font-size: 1.25rem;
    font-weight: bold;
    color: #ffffff;
}

.menu-title:hover {
    color: #0e5c62;
}

@media (max-width: 800px) {
    .menu-img {
        height: 200px;
    }
}

/* Testimonials Section Styling */
.testimonials-page {
    background: linear-gradient(135deg, #1a3c40, #1a3c20);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    padding: 50px 15px;
}

.section-title {
    font-size: 2.5rem;
    color: #fff;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
    margin-bottom: 2rem;
}

.testimonial-card {
    background-color: #2a5452;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.testimonial-card p {
    font-size: 1rem;
    line-height: 1.5;
    margin: 0 0 15px 0;
}

.testimonial-card footer {
    font-size: 1.1rem;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 992px) {

    /* Tablet */
    .section-title {
        font-size: 2rem;
    }

    .testimonial-card p {
        font-size: 0.9rem;
    }

    .testimonial-card footer {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {

    /* Mobile */
    .section-title {
        font-size: 1.8rem;
    }

    .testimonial-card {
        padding: 15px;
    }

    .testimonial-card p {
        font-size: 0.85rem;
    }

    .testimonial-card footer {
        font-size: 0.95rem;
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a3c40, #1a3c20);
    color: #ffffff;
    font-size: 0.9rem;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-text {
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.footer-text a {
    color: #6fc3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-text a:hover {
    color: #ffffff;
}

.footer-instagram {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.instagram-item {
    position: relative;
    flex: 0 0 calc(50% - 5px);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.instagram-item img {
    width: 100%;
    height: auto;
    display: block;
}

.instagram-item:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.instagram-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
    color: #ffffff;
    font-size: 2rem;
}

.instagram-item:hover .overlay {
    opacity: 1;
}

.text-center {
    margin-top: 30px;
}

.text-center .footer-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

/* Animations */
.fade-in {
    animation: fadeIn 1.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Dashboard Widget Hover Effect */
.small-box {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.small-box:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

@media (max-width: 992px) {

    .footer .col-md-6,
    .footer .col-sm-12 {
        text-align: center;
        /* Pusatkan teks */
    }

    .footer-title {
        margin-bottom: 1rem;
        font-size: 1.25rem;
    }

    .footer-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    iframe {
        height: 150px;
    }

    .footer-title {
        font-size: 1.1rem;
    }
}