/* Reset some default browser styles */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    background: url('../images/carwash.png') no-repeat center center fixed;
    background-size: cover;
    color: #ffffff;
}

/* Navigation Styles */
.logo-container {
    text-align: center;  /* center logo */
    margin-bottom: 1rem;
}

.logo-container .logo {
    height: 180px; /* bigger logo */
    display: inline-block;
}

/* Nav without logo now */
nav {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    justify-content: center; /* center nav links */
}

nav .logo {
    height: 140px;
    margin-right: 1rem;
    display: block;
}

nav a {
    color: #ffffff;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.2);
    font-weight: bold;
    transition: background 0.3s;
}

nav a:hover {
    background: rgba(255, 255, 255, 0.4);
}

/* Buttons */
button,
.btn-primary {
    background-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s;
    border: 2px solid #ffffff;
}

button:hover,
.btn-primary:hover {
    background-color: rgba(255, 255, 255, 0.5);
    color: #000000;
}

.btn-primary {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 6px;
    box-shadow: 0 0 15px #ffffff55;
}

.btn-primary:hover {
    box-shadow: 0 0 25px #ffffffaa;
}

/* Overlay for page content */
.overlay {
    background-color: rgba(0, 0, 0, 0.4);
    min-height: 100vh;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    color: #ffffff;
}

/* Service Cards Custom Styles */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2em;
    justify-items: center;
}

.service-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.5em;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    color: #eee;
    position: relative;
    display: flex;
    flex-direction: column;
    height: auto;
}

.service-card h3 {
    margin-top: 0;
    color: #00c3ff;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1em 0;
}

.service-card li {
    margin-bottom: 0.4em;
    padding-left: 1em;
    position: relative;
}

.service-card li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ff3cac;
}

.btn-book {
    display: inline-block;
    margin-top: 1em;
    padding: 0.6em 1.2em;
    background: linear-gradient(90deg, #00c3ff, #784ba0);
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 0 15px #00c3ff55;
    transition: all 0.3s ease;
    border: none;
}

.btn-book:hover {
    background: linear-gradient(90deg, #ff3cac, #784ba0);
    box-shadow: 0 0 25px #ff3cacaa;
}

/* Portfolio Gallery Styles */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.gallery img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 0 5px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.gallery img:hover {
    transform: scale(1.05);
}

/* Footer Styles */
footer {
    color: #ffffff;
}

/* Animations */
@keyframes gradientBorder {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

