/* Resetting default margins and paddings */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    color: #333;
    background-color: #fff;
}

/* Header Navigation */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.5); /* Semi-transparent background */
    backdrop-filter: blur(10px); /* Blur effect for transparency */
    padding: 10px 5%;
    display: flex;
    justify-content: center; /* Centering the navigation */
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}



.logo {
    font-size: 1.2cm;
    font-weight: bold;
    color: #333;
    /*margin-right: auto; /* Pushes the logo to the left */
    display: flex;
    justify-content: left;
    align-items: left;
}


/* Hero Section */
.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 95vh;
    background: url('/images/large.png') no-repeat center center/cover;
    background-attachment: fixed; /* Parallax effect */
    padding-top: 60px; /* Adjust for fixed header */
}

.hero-content {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 10px;
}

.hero h1 {
    font-size: 2.5em;
    color: #333;
}

.hero p {
    font-size: 1.2em;
    margin: 20px 0;
}


/* Sections */
section {
    padding: 60px 10%;
    text-align: center;
}

h2 {
    font-size: 2em;
    color: #333;
    margin-bottom: 20px;
}

.services-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.service {
    background-color: #f9f9f9;
    padding: 20px;
    margin: 10px;
    border-radius: 8px;
    flex-basis: 45%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.service h3 {
    color: #333;
    margin-bottom: 10px;
}

.service p {
    color: #666;
}

/* Footer */
footer {
    text-align: center;
    /*padding: 20px 10%;*/
    background-color: rgba(255, 255, 255, 0.5); /* Semi-transparent background */
    backdrop-filter: blur(10px); /* Blur effect for transparency */
    padding: 10px 5%;
    color: #333;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        gap: 10px;
    }
    .hero h1 {
        font-size: 2em;
    }
    h2 {
        font-size: 1.8em;
    }
    .services-container {
        flex-direction: column;
    }
    .service {
        flex-basis: 100%;
    }
}