/* CSS Styling */

/* Global Styles */
body {
    margin: 0;
    background-color: #002b36; /* Solarized Base03 */
    overflow-x: hidden;
    font-family: Georgia, serif;
    color: #839496; /* Solarized Base0 */
}

h2, h3 {
    font-family: Georgia, serif;
    color: #93a1a1; /* Solarized Base1 */
}

p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 20px 0;
    color: #93a1a1; /* Solarized Base1 */
}

a {
    color: #268bd2; /* Solarized Blue */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

ul {
    list-style: none;
    padding: 0;
}

li {
    margin-bottom: 30px;
}

/* Navigation Menu */
header {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 100;
}

.nav-menu {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    margin: 0;
    padding: 20px 50px;
    background-color: #073642; /* Solarized Base02 */
}

.nav-menu li {
    margin-left: 20px;
}

.nav-menu a {
    color: #93a1a1; /* Solarized Base1 */
    text-decoration: none;
    font-size: 1.2rem;
}

.nav-menu a:hover {
    color: #268bd2; /* Solarized Blue */
}

/* Main Container */
.main-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    margin-top: 100px;
}

.letter-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    margin: 0 10px;
}

.big-letter {
    font-size: 15vw;
    color: #839496; /* Solarized Base0 */
}

.small-letter {
    font-size: 5vw;
    color: #839496; /* Solarized Base0 */
    margin-top: -2vw;
}

/* Subtitle */
.subtitle {
    font-size: 4vw;
    color: #839496; /* Solarized Base0 */
    opacity: 1; /* Start hidden for animation */
    margin-top: 20px;
    font-family: Georgia, serif;
}

/* Call to Action Button */
.cta-button {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 30px;
    background-color: #268bd2; /* Solarized Blue */
    color: #fdf6e3; /* Solarized Base3 */
    text-decoration: none;
    font-size: 1.5vw;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #2aa198; /* Solarized Cyan */
}

/* Sections */
section {
    padding: 60px 20px;
    max-width: 800px;
    width: 100%;
}

section h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #93a1a1; /* Solarized Base1 */
}

section h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #93a1a1; /* Solarized Base1 */
}

.services-list {
    margin-top: 40px;
}

.services-list li {
    margin-bottom: 40px;
}

/* Footer */
footer {
    width: 100%;
    text-align: center;
    padding: 10px 0;
    background-color: #073642; /* Solarized Base02 */
    color: #93a1a1; /* Solarized Base1 */
    position: relative;
    bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .big-letter {
        font-size: 25vw;
    }
    .small-letter {
        font-size: 8vw;
    }
    .subtitle {
        font-size: 6vw;
    }
    .cta-button {
        font-size: 3vw;
    }
    .nav-menu a {
        font-size: 1.8rem;
    }
    section {
        padding: 40px 20px;
    }
    section h2 {
        font-size: 2.5rem;
    }
    section h3 {
        font-size: 1.8rem;
    }
    p {
        font-size: 1rem;
    }
}
.company-logo {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}
