/* Root variables for colors and font family */
:root {
    --primary-color: #ffffff; /* Blue */
    --secondary-color: #A27706; /* Green */
    --accent-color: #A27706; /* Red */
    --background-color: #000000; /* background */
    --background-color-alt: #c1c4cf; /* Alternative background */
    --text-color-dark: #d1c7c7; /* Dark Gray */
    --text-color-light: #000000; /* Dark Gray */
    --shadow-color:#36363688; /*dark gray */
    --font-family: 'Open Sans', sans-serif; /* Placeholder font */
}

body {
    background-color: var(--background-color);
    margin: 0;
    padding: 0;
    font-family: var(--font-family);
}

a {
    text-decoration: none;
}
.page-title {
    text-align: center;
    font-size: 1.5em;
    color: var(--text-color-dark);
}

.path-style-dark {
    fill: var(--text-color-dark);
}

.path-style-light {
    fill: var(--text-color-light);
}

.section-light {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 1em;
    color: var(--text-color-dark);
}

.section-dark {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1em;
    background-color: var(--primary-color);
    color: var(--text-color-light);
}

.button-default {
    background-color: var(--secondary-color);
    color: var(--text-color-dark);
    font-size: 1.2rem;
    border: none;
    cursor: pointer;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease;
    padding: 0.8em 1em;
    margin: 0;
    text-decoration: none;
}

.button-dark {
    background: var(--primary-color);
    color: var(--text-color-light);
    font-size: 1rem;
    border: none;
    cursor: pointer;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease;
    padding: 0.8em 1em;
    margin: 0;
    text-decoration: none;
}

.button-default:hover{
        background-color: var(--accent-color);
        color: var(--text-color-dark);
}

.button-dark:hover{
    background-color: var(--accent-color);
    color: var(--text-color-dark);
}

.contact-item *{
    display:inline;
}
.contact-item svg {
    height: 1em;
    width: 1em;
    padding: 0;
    margin: 0;
}

/* Navbar main styles */

.navbar {
    display: flex;
    width: 100%; /* Full width */
    background-color: var(--primary-color);
    z-index: 1000; /* Make sure navbar is above other content */
    min-height: 3em; /* Minimum height for navbar */
    margin: 0;
    padding: 0;
}

.navbar-main {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    flex: 1;
}

.nav-logo-container{
    display: flex;
    flex-direction: row;
    margin: 0;
    padding: 0;
    align-items: center;
    justify-content: center;
}

.logo {
    width: auto; /* Keep the aspect ratio */
    max-height: 2.5em; /* Keep logo within a reasonable height */
    margin: 0.5em;
    padding: 0;
}

.company-name {
    color: var(--text-color-light);
    font-size: 1.2rem; /* Adjust font size */
    font-weight: bold;
    margin: 0;
    padding: 0;
}

.navbar-menu {
    display: flex;
    justify-content: end;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 2; /* Allow menu to take remaining space */
}

.navbar-menu li {
    margin-right: 2vw; /* Responsive spacing based on viewport width */
}

.navbar-menu a {
    color: var(--text-color-light);
    text-decoration: none;
    font-size: 1rem;
}

.hamburger {
    display: none; /* Hidden by default */
}

/* Hero Section Styles */

.hero {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    background-color: var(--primary-color);
    min-height: 40vh;
    padding: 1em;
    margin: 0;
    position: relative;
}

.hero-left {
    flex: 1;
    color: var(--text-color-light);
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    margin: 2em;
    margin-right: 0;
}

.hero-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.hero-heading {
    font-size: 3rem;
    font-weight: bold;
    margin: 0;
    padding: 0;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin: 0;
    padding: 0;
    margin-bottom: 1em;
}

.hero-description {
    font-size: 1rem;
    margin: 0;
    padding: 0;

}

.hero-cta {
    margin-top: 2em;
    flex: 1;
}

/* Hero Image */
.hero-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--text-color-light);

}

.hero-image {
    width: 60%;
    object-fit: cover;
}

/* Wave shape 
.hero::after {
    content: "";
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='10'><linearGradient id='gradient'><stop offset='10%' stop-color='%23F00'/><stop offset='90%' stop-color='%23fcc'/> </linearGradient><rect fill='url(%23gradient)' x='0' y='0' width='100%' height='100%'/></svg>");
    background-size: cover;
}
    https://getwaves.io/
figure this shit later */



/* Card Section */

.card-holder {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 0.5rem;
    padding: 1rem;
}

/* Basic cards with borders and img */

/* Individual Basic Cards */
.basic-card {
    background: var(--background-color-alt);
    border-radius: 0.5em;
    color: var(--text-color-dark);
    box-shadow: 0 4px 8px var(--shadow-color);
    padding: 1rem;
    flex: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

.basic-card:hover {
    transform: translateY(0.3vh);

}

/* Basic Card Image */
.basic-card img {
    width: 20vw;
    height: auto;
    border-radius: 0.5em;
    margin-bottom: 1rem;
}

/* Broderless cards with img */
.borderless-card {
    padding: 1rem;
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

.borderless-card:hover {
    transform: translateY(0.3vh);

}

/* Basic Card Image */
.borderless-card img {
    width: 20vw;
    height: auto;
    border-radius: 0.5em;
    margin-bottom: 1rem;
}

/* Card Text */
.card-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.card-description {
    font-size: 1rem;
    margin-bottom: 1rem;
}

/* Gallery Cards */

.gallery-card {
    border-radius: 0.5em;
    box-shadow: 0 4px 8px var(--shadow-color);
    min-width: 25vw;
    flex: 1;
    margin: 1em;
    padding: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

.gallery-card:hover {
    transform: translateY(0.3vh);
}

.gallery-card img {
    width: 100%;
    height: auto;
    border-radius: 0.5em;
}


/* Split Section */
.split-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 4rem 2rem;
}

/* Image Side */
.split-right {
    flex: 1;
}

.split-right img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Text Content Side */
.split-left {
    flex: 1;
    text-align: left;
}

.split-heading {
    font-size: 2rem;
    color: var(--text-color-dark);
    margin-bottom: 1rem;
}

.split-text {
    font-size: 1.2rem;
    color: var(--text-color-dark);
    margin-bottom: 1.5rem;
}

/* Banner Section */
.banner-section {
    text-align: center;
    padding: 2rem;
    color: var(--text-color-dark);
}

.banner-title {
    font-size: 2rem;
    color: var(--text-color-dark);
    margin-bottom: 1rem;
}

.banner-image {
    width: 100%;
    max-width: 80vw;
    border-radius: 1em;
}

.banner-text {
    font-size: 1.2rem;
    color: var(--text-color-dark);
    margin-top: 1rem;
}


/* Footer */
.footer {
    display: flex;
    justify-content: space-between;
    background: var(--primary-color);
    color: var(--text-color-light);
    padding: 2rem;
    flex-wrap: wrap;
}

/* Footer Sections */
.footer-section {
    flex: 1;
    min-width: 20vw;
    text-align: center;
    padding: 1rem;
}

/* Links */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin: 0.5rem 0;
}

.footer-links a {
    color: var(--text-color-light);
    text-decoration: none;
    text-align: center;
}

/* Subscribe */
.subscribe-form {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.subscribe-form input {
    padding: 0.5rem;
    border: none;
    border-radius: 5px;
    width: 70%;
}

.subscribe-form button {
    background: var(--accent-color);
    color: var(--text-color-light);
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: 5px;
}


/* Horizontal Card Section */
.horizontal-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem;
}

/* Individual Card */
.horizontal-card {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-radius: 10px;
    gap: 1rem;
}

/* Card Image */
.horizontal-card-image {
    max-height: 22vh;
    border-radius: 1em;
}

/* Card Content */
.horizontal-card-content {
    flex: 1;
}

.horizontal-card-title {
    font-size: 1.5rem;
    color: var(--text-color-dark);
    margin-bottom: 0.5rem;
}

.horizontal-card-text {
    font-size: 1rem;
    color: var(--text-color-dark);
}


/* Contact Form Section */
.contact-section {
    flex: 2;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background: var(--background-color);
}

.contact-section a {
    margin: 1em;
}

.contact-section a svg {
    width: 10vw;
    height: 10vh;
    flex: 0;
}






/* Media Queries remember to do this for all cards and hero and split */

/* Mobile (up to 600px) */
@media (max-width: 600px) {

    /* navbar */
    .navbar {
        display: flex;
        flex-direction: column;
    }
    .navbar-main {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex: 1;
    }
    .navbar-menu {
        display: none; /* Hide menu by default */
        flex-direction: column;
        background-color: var(--primary-color);
        width: 100%;
        text-align: center;
    }

    .navbar-menu li {
        margin: 1em 0;
    }

    .hamburger {
        display: block; /* Show hamburger */
        background: none;
        border: none;
        color: var(--text-color-light);
        font-size: 1.5rem;
        flex: 0; /* Do not grow/shrink */
        margin: 0.5em;
        padding: 0;
    }

    .navbar-menu.active {
        display: flex; /* Show menu when active */
    }

    /* hero */

    .hero {
        display: flex;
        flex-direction: column-reverse;
        justify-content: space-between;
        background-color: var(--primary-color);
        min-height: 40vh;
        padding: 0.5em;
        margin: 0;
        position: relative;
    }

    .hero-left {
        margin: 1em;
        text-align: center;
        justify-content: center;
        align-items: center;
    }

    .hero-text {
        display: flex;
        flex-direction: column;
        flex: 1;
    }

    .hero-heading {
        font-size: 1.7rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    /* Split section  */

    .split-section {
        flex-direction: column;
        text-align: center;
    }

    .split-image, .split-content {
        width: 100%;
    }

    /* section for cards */

    /* Card Section */

    .card-holder {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .basic-card {
        width: 90vw;
        padding: 1rem;
    }
    .basic-card img {
        width: 100%;
    }

    .borderless-card {
        width: 90vw;
        padding: 1rem;
    }

    .borderless-card img {
        width: 100%;
    }

    /* gallery cards */
    .gallery-card {
        width: 90vw;
    }

    /* footer */
    /* Footer */
    .footer {
        display: flex;
        flex-direction: column;
    }
}