@font-face {
    font-family: 'HeavyFont';
    src: url('heavy.otf') format('opentype');
}

@font-face {
    font-family: 'LightFont';
    src: url('light.otf') format('opentype');
}

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

header {
    text-align: center;
    background: #101010;
    color: #fff;
    padding: 20px;
}

.header-heavy {
    width: 100%;
    font-size: auto;
    font-family: 'HeavyFont', sans-serif;
    margin: 0;
}

.header-light {
    font-size: 2em;
    font-family: 'LightFont', sans-serif;
    color: #B68D2C;
    margin: 0;
}

main {
    position: relative;
    width: 100%;
    height: 100vh;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: none;
}

footer {
    text-align: center;
    padding: 20px;
    background: black;
    color: #fff;
}

.fancy-table {
    width: 100%;
    border-collapse: collapse;
}
.fancy-table td {
    padding: 10px;
    border: 1px solid #0ff0fc;
}
.gtt {
    width: 100%;
    border-collapse: collapse;
}
.gtt td {
    padding: 10px;
    border: 1px solid silver;
}
.gtt td2 {
    padding: 10px;
    border: 1px solid #101010;
}

.gtt tr {
    padding: 10px;
    border: 1px solid #101010;
}
.gtt tdleft {
    padding: 50px;
    border: 1px solid silver;
    align: center;
}
.gttimg {
    max-width: 100%;
    max-height: auto;
    text-align: left;
    align: left;
}

.visit-button {
    background-color: #4CAF50;
    color: white;
    padding: 8px 20px;
    border: none;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
    transition-duration: 0.4s;
}
.visit-button:hover {
    background-color: #45a049;
}
.company-logo {
    max-width: 170px;
    max-height: auto;
}
.company-name {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 25px;
    font-weight: bold;
}


.club-members {
    font-size: 2em;
    font-family: 'LightFont', sans-serif;
    margin-bottom: 20px;
}

.logos {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logos a {
    margin: 0 15px;
}

.logos img {
    width: 100px; /* Adjust based on your preference */
    height: auto;
}

#contact-form {
    margin-top: 20px;
    text-align: center;
}

#contact-form form {
    margin-bottom: 20px;
}

#contact-form input, #contact-form textarea {
    margin: 10px 0;
    padding: 10px;
    width: calc(100% - 22px); /* Adjust input width considering padding */
}

#contact-form button {
    background-color: #333;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
}

/* Additional responsive adjustments as needed */
