/* styles.css */



.logo {
    position: absolute; /* Positions the logo absolutely within the parent container */
    top: 40px;          /* Distance from the top of the page */
    left: 40px;         /* Distance from the left of the page */
    width: 150px;       /* Width of the logo (adjust as needed) */
    height: auto;       /* Maintains aspect ratio of the image */
}
.logo img {
    max-width: 100%;    /* Ensures the image scales within the container */
    height: auto;       /* Maintains aspect ratio */
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #333;
    padding: 10px;
}

.socialfb {
    top: 15px;          /* Distance from the top of the page */
    right: 185px;         /* Distance from the left of the page */
    width: 150px;       /* Width of the logo (adjust as needed) */
    height: auto;   
    position: fixed;    /* Maintains aspect ratio of the image */

}
.socialfb img, .socialli img {
    width: 25px; /* Adjust size */
    height: 25px;
    transition: transform 0.3s ease;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.2); /* Soft shadow */
    transition: transform 0.3s ease;
}

.socialfb img:hover, .socialli img:hover {
    transform: scale(1.1); /* Slight hover effect */
}
.socialli {
    top: 15px;          /* Distance from the top of the page */
    right: 150px;         /* Distance from the left of the page */
    width: 150px;       /* Width of the logo (adjust as needed) */
    height: auto;   
    position: fixed;    /* Maintains aspect ratio of the image */
    
}
.socialli img, .socialli img {
    width: px; /* Adjust size */
    height: 25px;
    transition: transform 0.3s ease;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.2); /* Soft shadow */
    transition: transform 0.3s ease;
}

.socialli img:hover, .socialli img:hover {
    transform: scale(1.1); /* Slight hover effect */
}
.rounded-button {
    top: 60px;
    right: 190px;
    position: fixed;
    display: inline-block;
    padding: 15px 30px;
    background-color: none; /* Button color */
    color: rgb(42, 92, 64);
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    border-radius: 12px; /* Rounded corners */
    cursor: pointer;
    border: 2px solid #a9aea9;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2); /* Shadow effect */
}

/* Hover effect */
.rounded-button:hover {
    display: inline-block;
            padding: 15px 30px;
            background-color: none; /* Light green background */
            color: rgb(23, 38, 29);
            font-weight: bold; /* Bold text */
            text-align: center;
            text-decoration: none;
            font-size: 16px;
            border-radius: 12px; /* Rounded corners */
            cursor: pointer;
            
            
}

/* Hamburger menu icon styling */
.menu-icon {
    display: none; /* Hidden by default */
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.menu-icon .line {
    width: 25px;
    height: 3px;
    background-color: white;
}

/* Navigation links */
.nav-links {
    list-style: none;
    display: flex;
    gap: 15px;
}

.nav-links li a {
    color: rgb(92, 47, 163);
    text-decoration: none;
}

/* Hamburger menu icon */
.hamburger {
    font-size: 30px;
    font-family: 'Calibri', sans-serif;
    cursor: pointer;
    padding: 10px;
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 1000; /* Make sure it stays on top */
}

/* Hidden by default */
.menu {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 200px;
    background-color: #fbf5f5;
    padding-top: 60px;
    box-shadow: -2px 0 5px rgba(0,0,0,0.5);
    z-index: 999; /* Make sure it stays below the hamburger icon */
    opacity: 1;
    visibility: hidden;
    transform: translateY(-20px); /* Menu starts slightly above */
    transition: opacity 1.3s ease, transform 1.3s ease, visibility 1.3s;
    
}
.menu.open {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(3);
    transition: max-height 2.5s ease-out;
   
}

.menu ul {
    list-style-type: none;
    padding: 0;
    transition: transform 0.3s ease;
}

.menu ul li {
    padding: 15px 20px;
}

.menu ul li a {
    color: rgb(18, 94, 5);
    text-decoration: none;
    font-size: 18px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.menu ul li a:hover {
    transform: translate(-10px, -10px);
    font-weight: bold;
    
}



.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/background.jpg') no-repeat center center fixed;
    opacity: .2;
    background-repeat: no-repeat;
            background-position: center center;
            background-attachment: fixed;
            background-size: cover;
            height: 100vh;
            width: 100%;
    z-index: -1;
}
.footer {
    margin-top: 10%; /* Pushes this section to the bottom */
    padding: 30px;
    background-color: none;
    text-align: center;
}
.fade-in-text {
    opacity: 0; /* Start invisible */
    animation: fadeIn 4s forwards; /* Fade in over 2 seconds */
}

@keyframes fadeIn {
    to {
        opacity: 1; /* End fully visible */
    }
}
h1 {
    
    font-family: 'Salsa', sans-serif; /* Fallback to sans-serif if Salsa isn't available */
    font-weight: lighter;
    color: rgb(120, 120, 126);
    font-size: 25px !important;
}
h2 {
    
    font-family: 'Salsa', sans-serif; /* Fallback to sans-serif if Salsa isn't available */
    font-weight: lighter;
    color: rgb(120, 120, 126);
    font-size: 18px !important;
}
h3 {
    
    font-family: 'Salsa', sans-serif; /* Fallback to sans-serif if Salsa isn't available */
    font-weight: lighter;
    color: rgb(120, 120, 126);
    font-size: 16px
}



