/* 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');

/* Global styles */
* {
    margin: 0;
    padding: 0;
    font-family: sans-serif; /* Default font family for the entire document */
    box-sizing: border-box;
    outline: none; /* Removing outline on focus */
    border: none; /* Removing default borders */
    text-decoration: none; /* Removing underline from links */
    text-transform: capitalize; /* Capitalize text */
}

/* Adjusting root font size and overflow behavior */
html {
    font-size: 95.5%; /* Setting base font size */
    overflow-x: hidden; /* Prevent horizontal scrolling */
    scroll-padding-top: 9rem; /* Adjusting scroll padding top */
    scroll-behavior: smooth; /* Smooth scrolling behavior */
    box-sizing: border-box;
}

/* Customizing scrollbar styles */
html::-webkit-scrollbar {
    width: .8rem;
}

html::-webkit-scrollbar-track {
    background: transparent;
}

html::-webkit-scrollbar-thumb {
    background: #f8f6f6; /* Light scrollbar color */
    border-radius: 5rem;
}

/* Banner section styles */
.banner {
    width: 100%;
    height: 100vh; /* Full viewport height */
    background-image: url(Images/cup-coffee-hands-man-woman-selective-focus.jpg); /* Background image */
    background-size: cover;
    background-position: center;
    transition: .2s linear; /* Smooth transition effect */
}

/* Content section styles */
.contentevent {
    width: 100%;
    position: absolute;
    top: 50%; /* Centering vertically */
    transform: translateY(-50%);
    text-align: center;
    color: white; /* Text color */
}

.contentevent h1 {
    margin-top: 80px; /* Top margin */
    font-family: 'Caveat', cursive; /* Custom font */
    font-size: 250px; /* Font size */
}

/* Navigation bar styles */
.navbar {
    width: 85%;
    margin: auto; /* Centering horizontally */
    padding: 35px 0; /* Padding */
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.icon img {
    float: left;
    background-color: rgba(8, 4, 0, 0.8); /* Background color for the icon */
    border-radius: 50%;
}

.logo {
    color: white;
    font-size: 30px;
    font-family: 'Caveat', cursive; /* Custom logo font */
    padding-left: 10px;
    float: left;
    padding-top: 10px;
}

.navbar ul li {
    list-style: none; /* Removing default list styles */
    display: inline-block;
    margin: 0 20px; /* Margin between navigation items */
    position: relative;
}

.navbar ul li a {
    text-decoration: none;
    color: white;
    text-transform: uppercase;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif; /* Font for navigation links */
    font-size: 1.2rem; /* Font size */
}

.navbar ul li::after {
    content: '';
    height: 3px; /* Bottom border height */
    width: 0%; /* Initial width */
    background: white; /* Border color */
    position: absolute;
    left: 0;
    bottom: -10px; /* Positioning */
    transition: 0.5s; /* Transition effect */
}

.navbar ul li:hover::after {
    width: 100%; /* Full width on hover */
}

/* Contact section styles */
#contact {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh; /* Full viewport height */
    background-color: #f5f5f5; /* Background color */
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white; /* Container background color */
    border-radius: 10px; /* Border radius */
    padding: 20px; /* Padding */
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1); /* Box shadow */
}

.row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap; /* Allowing items to wrap */
}

.col-md-7, .col-md-5 {
    padding: 20px; /* Padding for columns */
}

.col-md-7 {
    flex: 1; /* Flex basis */
    background-color: #fff; /* Background color */
}

.col-md-5 {
    background-color: #000; /* Background color */
    color: #fff; /* Text color */
    border-radius: 10px; /* Border radius */
    padding: 20px; /* Padding */
}

.heading {
    font-size: 30px; /* Font size */
    font-weight: bold; /* Font weight */
    color: #b2744c; /* Heading color */
    margin-bottom: 20px; /* Bottom margin */
}

#contact p {
    font-weight: bold;
    font-size: 13px; /* Font size */
    color: black; /* Text color */
    margin-bottom: 20px; /* Bottom margin */
}

.form-control {
    width: 100%;
    margin-bottom: 15px; /* Bottom margin */
    border: none; /* Removing borders */
    border-bottom: 1px solid #b2744c; /* Bottom border color */
}

#contact-btn {
    width: 100%;
    height: 36px; /* Button height */
    border: none; /* Removing borders */
    background: #b2744c; /* Button background color */
    color: white; /* Button text color */
    font-weight: bold; /* Font weight */
    margin-top: 20px; /* Top margin */
    cursor: pointer; /* Cursor style */
}

#col h1 {
    font-size: 30px; /* Font size */
    font-weight: bold; /* Font weight */
    color: #fff; /* Text color */
    margin-bottom: 20px; /* Bottom margin */
}

#col p {
    font-size: 14px; /* Font size */
    color: #fff; /* Text color */
    line-height: 1.5; /* Line height */
}

#col i {
    color: #b2744c; /* Icon color */
    margin-right: 10px; /* Right margin */
}

/* Footer section styles */
.footer {
    padding: 0px; /* Padding */
    margin: 0; /* Margin */
    box-sizing: border-box; /* Box sizing */
    background: black; /* Background color */
    color: white; /* Text color */
    backdrop-filter: blur(10px); /* Background blur */
    -webkit-backdrop-filter: blur(10px); /* Safari blur */
    opacity: 0.9; /* Opacity */
    border: none; /* Removing borders */
}

.footer-container {
    width: 100%;
    padding: 60px 30px 20px; /* Padding */
}

.footer-logo {
    text-align: center; /* Center alignment */
    margin-bottom: 20px; /* Bottom margin */
}

.footer-links {
    margin: 30px 0; /* Margin */
    text-align: center; /* Center alignment */
}

.footer-links h1 {
    font-size: 1.5em; /* Font size */
    margin-bottom: 20px; /* Bottom margin */
}

.footer-links ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap; /* Allowing items to wrap */
    list-style-type: none; /* Removing default list styles */
    padding: 0; /* Padding */
}

.footer-links ul li {
    margin: 10px; /* Margin */
}

.footer-links ul li a {
    color: white; /* Text color */
    text-decoration: none; /* Removing underline */
    font-size: 1.3em; /* Font size */
    opacity: 0.9; /* Opacity */
    transition: 0.5s; /* Transition */
}

.footer-links ul li a:hover {
    background-color: rgba(8, 4, 0, 0.8); /* Transparent dark brown color for hover effect */
    transition: 0.5s; /* Transition */
}

.footer-links ul li a:hover i {
    color: white; /* Icon color on hover */
    transition: 0.5s; /* Transition */
}

.social-icons {
    display: flex;
    justify-content: center; /* Center alignment */
    margin-top: 20px; /* Top margin */
}

.social-icons a {
    text-decoration: none; /* Removing underline */
    padding: 10px; /* Padding */
    background-color: white; /* Background color */
    margin: 10px; /* Margin */
    border-radius: 50%; /* Border radius */
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icons a i {
    font-size: 2em; /* Icon size */
    color: black; /* Icon color */
    opacity: 0.9; /* Opacity */
}

.social-icons a:hover {
    background-color: rgba(8, 4, 0, 0.8); /* Transparent dark brown color for hover effect */
    transition: 0.5s; /* Transition */
}

.social-icons a:hover i {
    color: white; /* Icon color on hover */
    transition: 0.5s; /* Transition */
}

/* Responsive styles for smaller screens */
@media (max-width: 700px) {
    .footer-links ul {
        flex-direction: column; /* Stacking links vertically */
    }
    .footer-links ul li {
        width: 100%;
        text-align: center; /* Center alignment */
    }
}
