/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Global Styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-image: url('/images/background.jpg'); /* Add background image URL here */
    background-size: cover;
    background-position: center;
    color: #333;
}

.container {
    width: 80%;
    margin: auto;
    padding: 20px;
}

/* Header Styles */
header {
    background: rgba(255, 255, 255, 0.8);
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 50px; /* Adjust as needed */
}

nav ul {
    list-style-type: none;
}

nav ul li {
    display: inline;
    margin-left: 20px;
    position: relative;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    position: relative;
    transition: color 0.3s ease; /* Added transition for smoother color change */
}

nav ul li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #ff6347, #e74c3c);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

nav ul li a:hover {
    color: #ff6347; /* Change text color on hover */
}

nav ul li a:hover::after {
    transform: scaleX(1);
}


.active {
    font-weight: bold;
}

/* Hero Section Styles */
.hero {
    text-align: center;
    padding: 100px 0;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ff6347; /* Change to your desired button color */
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #e74c3c; /* Change to your desired button hover color */
}

/* Footer Styles */
footer {
    background: rgba(255, 255, 255, 0.8);
    padding: 20px 0;
    text-align: center;
    position: fixed;
    bottom: 0;
    width: 100%;
}

/* Media Query for Responsive Design */
@media (max-width: 768px) {
    .container {
        width: 90%;
    }

    .logo img {
        height: 40px;
    }

    .hero h1 {
        font-size: 2.5em;
    }

    .hero p {
        font-size: 1em;
    }
}

/* Add this CSS code to your existing stylesheet */

@keyframes wobble {
    0% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
    100% { transform: rotate(-5deg); }
}

.logo img {
    height: 50px; /* Adjust as needed */
    animation: wobble 5s ease infinite; /* Change the duration and timing function as needed */
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ff6347;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease; /* Added transition for smoother animation */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); /* Add shadow effect */
}

.btn:hover {
    transform: scale(1.05); /* Increase size by 5% */
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5); /* Increase shadow size */
}

.about {
    background-color: rgba(206, 206, 206, 0.8); /* Semi-transparent white background */
    padding: 20px;
    border-radius: 10px; /* Add some rounded corners for style */
    margin-top: 50px; /* Adjust margin to separate from the hero section */
}

.about-content {
    color: #333; /* Set text color */
    font-size: 1.1em; /* Adjust font size as needed */
    line-height: 1.6; /* Improve line spacing for readability */
}

/* Floating island styles */
.floating-island {
    position: absolute;
    top: calc(100% + 20px); /* Adjust as needed */
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 0.8); /* Adjust background color and transparency */
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: opacity 0.3s ease;
    opacity: 0;
    pointer-events: none;
}

/* Show floating island when hovering over "Over Mij" */
nav ul li:hover .floating-island {
    opacity: 1;
    pointer-events: auto;
}

/* Style for floating island options */
.floating-island ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.floating-island li {
    margin-bottom: 10px;
}

.floating-island li a {
    display: block;
    text-decoration: none;
    color: #333; /* Adjust text color */
    font-size: 16px; /* Adjust font size */
}

.floating-island li a:hover {
    color: #ff6347; /* Adjust hover color */
}

.about-content {
    color: #dddddd; /* Adjust the color to a lighter shade of gray */
    font-size: 1.1em;
    line-height: 1.6;
}

/* Additional styles for the Pricing page */
.pricing {
    text-align: center;
    padding: 100px 0;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.5);
}

.pricing h2 {
    font-size: 3em;
    margin-bottom: 20px;
}

.pricing-content img {
    max-width: 25%; /* Ensure the image doesn't exceed the container width */
    height: auto; /* Ensure the aspect ratio is maintained */
    border-radius: 10px; /* Add rounded corners for style */
}

/* Media Query for Mobile Devices */
@media (max-width: 768px) {
    .pricing-content img {
        max-width: 80%; /* Adjust the maximum width for mobile devices */
    }
}

#small-logo {
    position: fixed;
    bottom: 10px;
    right: 10px;
    width: 50px;
    height: 50px;
    background-image: url('ref.png');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.35;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  }
  
  #small-logo:hover {
    opacity: 1;
    transform: scale(1.1);
  }
  
  .logo-container {
    display: inline-block;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000; 
    opacity: 0.45;
    transition: all 0.3s ease;
  }
  
  .logo {
    width: 50px; 
    height: auto;
    border: 5px solid #ffffff;
    border-radius: 50%;
  }
  
  .logo-container:hover .logo {
    width: 60px; 
    opacity: 0.9; 
  }
  