/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #000000;
    color: #ffffff;
}

/* Header Section */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background-color: #1a1a1a;
    border-bottom: 2px solid #ffffff;
}

.logo h1 {
    font-size: 60px;
    font-weight: bold;
    color: #ffffff;
    margin: 0;
}

.header-text h2 {
    font-size: 24px;
    margin: 0;
}

.header-text p {
    font-size: 18px;
    color: #d4af37;
}

/* Navigation Bar */
.navbar {
    background-color: #121212;
    border-bottom: 2px solid #d4af37;
    padding: 10px 20px;
    text-align: center;
}

.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: inline-flex;
    gap: 30px;
}

.nav-links li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    transition: color 0.3s;
}

.nav-links li a:hover {
    color: #d4af37;
}

/* Responsive Navigation */
@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        gap: 15px;
    }
}

/* Owner Section */
.owner-section {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 40px;
    background-color: #1a1a1a;
    border-bottom: 2px solid #ffffff;
}

.owner-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #d4af37;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
}

.owner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.owner-details {
    text-align: left;
    max-width: 500px;
}

.owner-details h3 {
    font-size: 22px;
    margin: 0;
    color: #ffffff;
}

.owner-details p {
    font-size: 18px;
    margin: 5px 0;
}

/* Services Section */
.services-section {
    text-align: center;
    padding: 40px;
    background-color: #1a1a1a;
    border-bottom: 2px solid #ffffff;
}

.services-section h3 {
    font-size: 24px;
    color: #d4af37;
    margin-bottom: 20px;
}

.services-list {
    list-style: none;
    padding: 0;
    font-size: 18px;
}

.services-list li {
    list-style-type: none;
    margin: 10px 0;
    color: #ffffff;
}

/* Business Info Section */
.business-info {
    padding: 40px;
    text-align: center;
    background-color: #1a1a1a;
}

.business-info h3 {
    font-size: 20px;
    color: #d4af37;
    border-bottom: 2px solid #d4af37;
    display: inline-block;
    padding-bottom: 5px;
}

.business-info p {
    font-size: 18px;
    line-height: 1.6;
}

.business-info a {
    color: #d4af37;
    text-decoration: none;
}

.business-info a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    text-align: center;
    padding: 15px;
    background-color: #1a1a1a;
    border-top: 2px solid #ffffff;
}

footer p {
    margin: 0;
    font-size: 14px;
}

/* Back to Top Button */
#backToTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #d4af37;
    color: black;
    border: none;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    font-size: 20px;
}

#backToTop:hover {
    background: #b2952e;
}

/* Responsive Design */
@media (max-width: 768px) {
    .owner-section {
        flex-direction: column;
        text-align: center;
    }

    .owner-image {
        margin-bottom: 20px;
    }

    .header-text h2 {
        font-size: 20px;
    }

    .logo h1 {
        font-size: 40px;
    }
}
