/* Importing Google Fonts */
@import url('https://fonts.googleapis.com/css?family=Roboto:wght@100;300;400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400..700&display=swap');

/* Reset CSS Resets default browser styles for consistency */
* {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: none;
    text-transform: capitalize;
}
/* Global HTML styles */
html {
    font-size: 95.5%;
    overflow-x: hidden;
    scroll-padding-top: 9rem; 
    scroll-behavior: smooth;
}
/* Custom scrollbar styles */
html::-webkit-scrollbar {
    width: .8rem;
}

html::-webkit-scrollbar-track {
    background: transparent;
}

html::-webkit-scrollbar-thumb {
    background: #fff;
    border-radius: 5rem;
}

/* Banner Section - Full screen background image */
.banner {
    width: 100%;
    height: 100vh;
    background-image: url(Images/coffee-beans-cup-table.jpg);
    background-size: cover;
    background-position: center;
    transition: .2s linear;
}

/* Navigation Bar */
.navbar {
    width: 85%;
    margin: auto;
    padding: 35px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.icon img {
    float: left;
    background-color: rgba(8, 4, 0, 0.8);
    border-radius: 50%;
}

/* Logo text styles */
.logo {
    color: white;
    font-size: 30px;
    font-family: 'Caveat', cursive;
    padding-left: 10px;
    float: left;
    padding-top: 10px;
}
/* Navigation links styles */
.navbar ul li {
    list-style: none;
    display: inline-block;
    margin: 0 20px;
    position: relative;
}
/* Navigation link anchor styles */
.navbar ul li a {
    text-decoration: none;
    color: white;
    text-transform: uppercase;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.2rem;
}

/* Navigation link hover animation */
.navbar ul li::after {
    content: '';
    height: 3px;
    width: 0%;
    background: white;
    position: absolute;
    left: 0;
    bottom: -10px;
    transition: 0.5s;
}

.navbar ul li:hover::after {
    width: 100%;
}

/* Content Section - Centered text */
.content {
    width: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    color: white;
}
/* Main heading styles */
.content h1 {
    margin-top: 80px;
    font-family: 'Caveat', cursive;
    font-size: 150px;
}
/* Sub-heading paragraph styles */
.content p {
    margin: 20px auto;
    font-size: 50px;
    font-weight: 100;
    line-height: 25px;
    font-family: 'Caveat', cursive;
   
}

/* Button Styles */
.aqua-button {
    background-color:burlywood; /* Aqua color */
    color: white;
    border: none;
    padding: 15px 25px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
/* Button hover effect */

.aqua-button:hover {
    background-color:rgb(110, 83, 46);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}
/* Button active state */
.aqua-button:active {
    background-color: #00cccc;
    box-shadow: 0 2px 4px rgba(153, 1, 1, 0.2);
}
/* Footer styles */
.footer {
    padding: 0px;
    margin: 0;
    box-sizing: border-box;
    background-color: black;
    color: white;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0.9;
}
/* Footer container */
.footer-container {
    width: 100%;
    padding: 60px 30px 20px;
}

/* Footer logo section (currently empty) */
.footer-logo {
    text-align: center;
    margin-bottom: 20px;
}
/* Footer quick links section */
.footer-links {
    margin: 30px 0;
    text-align: center;
}

/* Footer quick links heading */
.footer-links h1 {
    font-size: 1.5em;
    margin-bottom: 20px;
}
/* Footer quick links list */
.footer-links ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    list-style-type: none;
    padding: 0;
}

/* Footer quick links list items */
.footer-links ul li {
    margin: 10px;
}
/* Footer quick links anchor styles */

.footer-links ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.3em;
    opacity: 0.9;
    transition: 0.5s;
}
/* Footer quick links hover effect */
.footer-links ul li a:hover {
    background-color: rgba(8, 4, 0, 0.8); /* Transparent dark brown color for hover effect */
    transition: 0.5s;
}

.footer-links ul li a:hover i {
    color: white;
    transition: 0.5s;
}
/* Social icons container */
.social-icons {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
/* Social icons link styles */
.social-icons a {
    text-decoration: none;
    padding: 10px;
    background-color: white;
    margin: 10px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* Social icons styles */
.social-icons a i {
    font-size: 2em;
    color: black;
    opacity: 0.9;
}
/* Social icons hover effect */
.social-icons a:hover {
    background-color: rgba(8, 4, 0, 0.8); /* Transparent dark brown color for hover effect */
    transition: 0.5s;
}

.social-icons a:hover i {
    color: white;
    transition: 0.5s;
}
/* Responsive design for footer links on smaller screens */
@media (max-width: 700px) {
    .footer-links ul {
        flex-direction: column;
    }
    .footer-links ul li {
        width: 100%;
        text-align: center;
    }
}
