/* Reset and General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #FFFFFF; /* White background for the main page */
    font-family: "Nunito", sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px;
}

/* Navbar Styles */
nav {
    background-color: #1A1A1A; /* Dark background for navbar */
    color: #FFFFFF;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav a.logo {
    font-family: "Bebas Neue", sans-serif;
    color: #FFD60A; /* Bright yellow logo */
    font-size: clamp(18px, 5vw, 24px);
    text-decoration: none;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 15px;
}

nav ul li a {
    text-decoration: none;
    color: #FFFFFF;
    font-weight: bold;
    font-size: clamp(14px, 2vw, 18px);
}

nav ul li:hover {
    background-color: #333333; /* Darker hover effect */
    transition: 0.3s;
}

/* Header (Landing Fold View) */
header {
    min-height: 100vh;
    padding-top: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #FFB703; /* Bitcoin-inspired orange for landing page */
    color: #FFFFFF;
}

header .overlay {
    background: rgba(0, 0, 0, 0.5); /* Dark overlay */
}

header .header-content {
    color: #FFFFFF;
    padding: 20px;
    font-size: clamp(16px, 4vw, 32px);
}

header h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(32px, 6vw, 48px);
    color: #FFD60A; /* Bright yellow text */
}

header p {
    font-size: 18px;
}

header .btn {
    background-color: #8338EC; /* Purple button */
    color: #FFFFFF;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

header .btn:hover {
    background-color: #6A00F4; /* Darker purple on hover */
}

/* Section Styling */
section {
    padding: 60px 15px;
}

section#about {
    background: #FFFFFF; /* White background for about section */
    text-align: center;
    color: #333;
}

section#about img {
    max-width: 100%;
    border-radius: 10px;
}

/* Services Section */
section#services {
    background-color: #F9F9F9; /* Light grey background for services */
    text-align: center;
    color: #333;
}

section#services .service-item img {
    max-width: 80px;
    margin-bottom: 10px;
}

/* Contact Section */
section#contact {
    text-align: center;
    background: #FFFFFF; /* White background for contact section */
}

section#contact button.btn {
    background-color: #8338EC; /* Purple button */
    color: #FFFFFF;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

section#contact button.btn:hover {
    background-color: #6A00F4;
}

/* Footer */
footer {
    background: #1A1A1A; /* Dark footer background */
    color: white;
    padding: 20px 15px;
    text-align: center;
}

footer .social-media a img {
    filter: brightness(0) invert(1); /* White icons */
    margin: 0 10px;
}

#navbarBookBtn {
    background-color: #8338EC; /* Purple button for navbar */
    color: #FFFFFF;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
}

#navbarBookBtn:hover {
    background-color: #6A00F4;
}
