body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #0a0a0a;
    color: white;
}

.dark-overlay {
    background: rgba(0, 0, 0, 0.7); /* Darker overlay for readability */
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.hero-buttons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    justify-content: center;
}

.parallax-section .content {
    position: relative;
    z-index: 2; /* Ensure content is above the overlay */
}

.projects-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.project-item {
    width: 30%;
    text-align: center;
    border-radius: 10px;
    overflow: hidden;
    background: #1a1a1a;
    padding: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.project-item img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.project-item h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: gold;
    margin-top: 10px;
}

.project-item p {
    font-size: 0.9rem;
    color: #ddd;
    margin-top: 5px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #444;
    border-radius: 5px;
    background-color: #1a1a1a;
    color: white;
}

.contact-form button {
    padding: 10px;
    background-color: gold;
    color: black;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: white;
}

.hero {
    height: 100vh;
    background: url('../images/hero.webp') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.6);
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    letter-spacing: 3px;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-top: 10px;
}

.hero-button {
    margin-top: 20px;
    padding: 15px 30px;
    background: gold;
    color: black;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    transition: 0.3s;
}

.hero-button:hover {
    background: white;
    color: black;
}

.parallax-section {
    position: relative;
    height: 400px;
    background: url('../images/parallax.webp') no-repeat center center/cover;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 50px 20px;
}

.collection {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin: 50px auto;
    max-width: 1200px;
}

.collection-item {
    width: 30%;
    text-align: center;
    background-color: #1a1a1a;
    padding: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.collection-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.collection-item img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 10px;
}

.collection-item-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: gold;
}

.collection-item-description {
    font-size: 0.9rem;
    color: #ddd;
    margin-top: 5px;
}

.footer {
    background-color: #111; /* Match the site's dark theme */
    padding: 20px 0;
    text-align: center;
    color: #fff; /* White text for contrast */
    font-size: 14px;
    border-top: 1px solid #444; /* Subtle top border for separation */
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px;
}

.footer-nav {
    margin-top: 10px;
}

.footer-link {
    color: #ffd700; /* Gold color to match the luxurious theme */
    text-decoration: none;
    margin: 0 10px;
    font-size: 16px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-link:hover {
    color: #fff; /* White on hover for emphasis */
    transform: scale(1.1); /* Subtle zoom effect */
}