/* reset css first, then apply changes */
@import url('reset.css');
@import url('menu.css');
@import url('typography.css');
@import url('color.css');
@import url('layout.css');

/* other CSS files you can create: footer, layout, buttons */
/* Primary Button Styling */
.primaryButton {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--primaryColor); /* Uses your primary color */
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

/* Hover Effect */
.primaryButton:hover {
    background-color: var(--primaryNeutral); /* Uses your secondary color */
    color: var(--primaryColor);
    transform: translateY(-3px);
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.15);
}

/* Active/Click Effect */
.primaryButton:active {
    transform: scale(0.98);
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
}

/* Secondary Button Styling */
.secondaryButton {
    display: inline-block;
    padding: 10px 22px;
    background-color: transparent; /* No background */
    color: var(--primaryColor); /* Uses primary color for text */
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    border: 2px solid var(--primaryColor); /* Outlined style */
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

/* Hover Effect */
.secondaryButton:hover {
    background-color: var(--primaryColor);
    color: white;
    transform: translateY(-2px);
}

/* Active/Click Effect */
.secondaryButton:active {
    transform: scale(0.98);
}

/* Foreground Section Styling */
.foreground {
    background-color: var(--primaryNeutral); /* Uses the neutral color */
    width: 100%;
    height: 30vh; /* Adjust as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--primaryColor);
    font-size: 20px;
    font-weight: bold;
}

/* Center the content inside */
.foreground .content {
    max-width: 800px;
    padding: 20px;
}

/* Headline Styling */
.foreground h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

/* Paragraph Styling */
.foreground p {
    font-size: 18px;
    font-weight: normal;
    color: #555; /* Slightly lighter than primary color */
}

/* About Page Styles */
.about {
    padding: 50px;
    background-color: var(--primaryNeutral);
    color: var(--primaryColor);
    text-align: center;
}

.about h1 {
    font-size: 8rem;
    margin-bottom: 20px;
}

.about p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.about h2 {
    font-size: 2.5rem;
    margin-top: 40px;
    margin-bottom: 15px;
}

.about .primaryButton {
    padding: 10px 20px;
    background-color: var(--primaryColor);
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.about .primaryButton:hover {
    background-color: darken(var(--primaryColor), 10%);
}

/* Service Section Styling */
.service {
    padding: 60px 20px;
    background-color: #f4f4f4;
    text-align: center;
}

.service h1 {
    font-size: 8rem;
    margin-bottom: 20px;
}

.service p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: var(--primaryColor);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.service-item {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--primaryColor);
}

.service-item p {
    font-size: 1rem;
    color: #555;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.service-link {
    text-decoration: none; /* Remove underline */
    display: block; /* Make the entire div clickable */
}

.service-item {
    padding: 20px;
    border: 1px solid #ccc;
    background-color: #f9f9f9;
    transition: background-color 0.3s ease;
}

.service-item:hover {
    background-color: #e0e0e0; /* Optional: Add hover effect */
}

/* Approach Section */
.approach {
    background-color:var(--primaryNeutral);
    padding: 60px 20px;
    text-align: center;
}

.approach h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.approach p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
}

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

.approach li {
    font-size: 18px;
    color: #555;
    margin-bottom: 10px;
}

/* Portfolio Section */
.portfolio {
    background-color: #f4f4f4;
    padding: 60px 20px;
    text-align: center;
}

.portfolio h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

.portfolio .grid{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.portfolio .item {
    width: 30%;
    margin: 10px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
}

.item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.portfolio .item .imgFirst {
    background-color: #333;
    height: 200px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.portfolio .item .description h3 {
    font-size: 24px;
    color: #333;
    
}

.portfolio .item .description p {
    font-size: 16px;
    color: #555;
}

/* Consulting Approach Section */
.consulting-approach {
    background-color: #ffffff;
    padding: 50px 20px;
    text-align: center;
}

.consulting-approach h2 {
    font-size: 30px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.consulting-approach p {
    font-size: 18px;
    margin-bottom: 30px;
}

.consulting-approach ul {
    list-style-type: none;
    padding: 0;
    font-size: 16px;
}

.consulting-approach ul li {
    margin: 10px 0;
}

/* Testimonials Section */
.testimonials {
    background-color: #ecf0f1;
    padding: 50px 20px;
    text-align: center;
}

.testimonials h2 {
    font-size: 30px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.testimonials .testimonial {
    margin-bottom: 30px;
    font-size: 18px;
}

.testimonials .testimonial p {
    font-style: italic;
}

/* Contact Section */
.contact {
    background-color: var(--primaryNeutral);
    padding: 60px 20px;
    text-align: center;
}

.contact h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.contact p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #555;
}

/* Strategy Process Section */
.strategy-process {
    background-color: white;
    padding: 60px 20px;
    text-align: center;
}

.strategy-process h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.strategy-process p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.strategy-process ul {
    list-style: none;
    padding: 0;
}

.strategy-process li {
    font-size: 18px;
    margin: 10px 0;
}

/* Case Studies Section */
.case-studies {
    background-color: #f4f4f4;
    padding: 60px 20px;
    text-align: center;
}

.case-studies h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

.case-studies .grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.case-studies .item {
    width: 30%;
    margin: 10px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
}

.case-studies .item .imgSecond {
    background-color: #333;
    height: 200px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.case-studies .item .description h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.case-studies .item .description p {
    font-size: 16px;
    color: #555;
}



/* CTA Button (Primary) */
.primaryButton {
    padding: 12px 25px;
    background-color: var(--primaryColor);
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 5px;
    display: inline-block;
    margin-top: 40px;
    transition: background-color 0.3s ease;
}

.primaryButton:hover {
    background-color: darken(var(--primaryColor), 10%);
}

/* Responsive Layout */
@media screen and (max-width: 768px) {
    .service-grid {
        grid-template-columns: 1fr; /* Stack service items on small screens */
    }
}


footer {
    background-color: #333;
    color: white;
    padding: 40px 40px;
    text-align: center;
    font-size: 14px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-logo {
    flex: 1;
    text-align: left;
}

.footer-logo h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.footer-logo p {
    font-size: 16px;
}

.footer-contact,
.footer-social {
    flex: 1;
    text-align: right;
}

/* Footer email link */
.footer-contact a {
    color: white; /* Change link color to white */
    text-decoration: none; /* Optional: removes underline */
}

.footer-contact a:hover {
    color: #f0f0f0; /* Optional: changes color on hover */
}

.footer-contact h3,
.footer-social h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-contact p,
.footer-social ul {
    font-size: 16px;
}

.footer-social ul {
    list-style: none;
    padding: 0;
}

.footer-social li {
    margin-bottom: 10px;
}

.footer-social a {
    text-decoration: none;
    color: white;
    font-size: 16px;
}

.footer-social a:hover {
    color: #ff9f00; /* Add hover effect */
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
    font-size: 12px;
}

.footer-bottom p {
    margin: 0;
}

/* General Styles for Contact Page */
.contact-section {
    background-color: var(--primaryNeutral);
    padding: 40px 60px ;
    font-family: Arial, sans-serif;
}

.contact-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-header h1 {
    font-size: 8rem;
    color: #333;
}

.contact-header p {
    font-size: 18px;
    color: #777;
}

.contact-container {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    flex-wrap: wrap;
    padding: 20px;
}

.contact-form {
    flex: 1;
    background-color: #fff;
    padding: 20px 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 100%;
}

.contact-form .form-group {
    margin: 20px;
}

.contact-form label {
    font-size: 16px;
    color: #333;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form .submit-btn {
    background-color: #3f3f3f;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-form .submit-btn:hover {
    background-color: #ff9f00;
}

.contact-info {
    flex: 1;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 16px;
    margin-bottom: 15px;
}

.contact-info a {
    color: #3f3f3f;
    text-decoration: none;
}

.contact-info a:hover {
    color: #f6d195;
}

/* Google Map Styling */
.map {
    margin-top: 20px;
    border-radius: 8px;
    overflow: hidden;
}

/* Responsive Design for Small Screens */
@media screen and (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        align-items: center;
    }

    .contact-form,
    .contact-info {
        width: 90%;
        max-width: none;
    }
}



/* media queries last */
@import url('media.css');


/* no actual css in here */
