/* Reset and Basic Styles */
html {
    font-size: 16px;
    font-family: sans-serif;
    box-sizing: border-box;
    overflow-x: hidden;
}

*,
*::before,
*::after {
    box-sizing: inherit;
    margin: 0;
    padding: 0;
}

body {
    line-height: 1.6;
    color: #111;
    background-color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Typography */
p {
    margin-bottom: 1rem;
}

ul {
    margin: 20px 0;
    padding-left: 20px;
    list-style: none;
}

a {
    color: #deca97;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s, color 0.3s;
}

a:hover {
    color: #d5bc7b;
    border-bottom-color: #d5bc7b;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-section {
    background-image: url('./bg.png');
    background-position: center;
    background-size: cover;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 20px;
}

.hero-image {
    flex: 1;
    max-width: 50%; /* Adjust as needed */
    padding-right: 20px;
    max-height: 400px; /* Adjust as needed */
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* Ensures the image fits within the container without distortion */
}

.hero-text {
    flex: 1;
    max-width: 50%; /* Adjust as needed */
    text-align: center;
    padding: 20px;
}

.icon {
    display: block;
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
}

/* Button Styles */
.contact-btn {
    display: inline-block;
    background-color: #deca97;
    color: #000;
    padding: 15px 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    border-radius: 50px;
    border: 2px solid transparent;
    margin: 20px 0;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

.contact-btn:hover,
.contact-btn:focus {
    background-color: #d5bc7b;
    color: #000;
    border-color: #000;
}

.credit-text {
    font-size: 0.8rem;
    text-align: center;
    margin-top: 1rem;
}

.credit-text a {
  color: #888;
}

/* Footer */
.footer {
    text-align: center;
    padding: 1em;
    background-color: #333;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.footer p {
    margin: 0;
}


/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
    }
    .hero-image {
        max-width: 80%;
    }
     .hero-text {
        max-width: 80%;
     }
}