/* Global Styles */
* {
    box-sizing: border-box;
}

:root {
    --primary-color: #1a3c34; /* Dark Green */
    --accent-color: #e67e22; /* Orange */
    --bg-cream: #fdfaf5;
    --text-dark: #333333;
    --white: #ffffff;
    --dark-bg: #121212;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-cream);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--primary-color);
}

/* Typography Responsive */
h1 {
    font-size: 2.2rem;
}

h2.section-title {
    font-size: 2rem;
    position: relative;
    padding-bottom: 15px;
}

h2.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--accent-color);
}

@media (max-width: 991px) {
    h1 { font-size: 1.8rem; }
    h2.section-title { font-size: 1.6rem; }
}

@media (max-width: 767px) {
    h1 { font-size: 1.4rem; }
    h2.section-title { font-size: 1.2rem; }
    .navbar-brand span { font-size: 1rem; }
}

/* Navbar */
.navbar {
    background-color: transparent;
    transition: all 0.4s ease;
    padding: 15px 0;
        background-color: #1a3c34;
        color: #fff;
}

.navbar.scrolled {
    background-color: var(--primary-color);
    padding: 10px 0;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.navbar-brand img {
    height: 40px;
}

.navbar-brand span {
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.navbar.scrolled .navbar-brand span, 
.navbar.scrolled .nav-link {
    color: var(--white) !important;
}

.nav-link {
    font-weight: 600;
    color: #fff;
    margin-left: 20px;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--accent-color);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: url('photos/content/eco-hero-bg.webp') center/cover no-repeat;
    position: relative;
    color: var(--white);
    padding-top: 100px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 60, 52, 0.9) 0%, rgba(26, 60, 52, 0.4) 100%);
}

.hero-section h1 {
    color: var(--white);
}

.hero-benefits i {
    color: var(--accent-color);
}

.btn-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    font-weight: 700;
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: #d35400;
    border-color: #d35400;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(230, 126, 34, 0.4);
}

.bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-10px);}
    60% {transform: translateY(-5px);}
}

/* Process Cards */
.process-card {
    background: var(--white);
    border-radius: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(0,0,0,0.05);
    padding: 30px 15px !important;
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.icon-box i {
    color: var(--accent-color);
}

/* Portfolio */
.portfolio-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    height: 350px;

    h4{
        color: #fff !important;
    }
}

.portfolio-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(#000000bd, rgba(0,0,0,0.8));
    color: var(--white);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s;
}

.portfolio-card:hover img {
    transform: scale(1.1);
}

.portfolio-card:hover .portfolio-overlay {
    transform: translateY(0);
    opacity: 1;
}

/* Price Card */
.price-value {
    color: var(--primary-color);
}

.price-value .amount {
    font-size: 4rem;
    font-weight: 800;
}

.price-value .currency {
    font-size: 1.5rem;
    vertical-align: super;
}

/* Footer */
.footer {
    background-color: var(--dark-bg) !important;
}

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

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.contact-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Cookie Banner */
.cookie-banner {
    z-index: 1050;
    border-top: 3px solid var(--accent-color);
    display: none;
}

/* Responsive Mobile Adjustments */
@media (max-width: 1100px) {
    .navbar-collapse {
        background: var(--white);
        padding: 20px;
        border-radius: 10px;
        margin-top: 10px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    
    .navbar.scrolled .navbar-collapse {
        background: var(--primary-color);
    }

    .nav-link {
        margin-left: 0;
        padding: 10px 0;
        color: var(--primary-color) !important;
    }

    .navbar.scrolled .nav-link {
        color: var(--white) !important;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding: 120px 0 60px;
    }
    
    .price-value .amount {
        font-size: 3rem;
    }
}

/* Forms */
.form-control {
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.25rem rgba(230, 126, 34, 0.25);
}/* Container padding: top and sides */
.consentTunnelGrid {
    padding-top: 24px;
    padding-left: 20px;
    padding-right: 20px;
}

/* Paragraph styles */
.consentTunnelGrid p {
    font-size: 14px;
    line-height: 1.6;
    margin-top: 0;
    margin-bottom: 16px;
    color: #333;
}

/* Heading styles with moderate sizes */
.consentTunnelGrid h1, 
.consentTunnelGrid h2, 
.consentTunnelGrid h3, 
.consentTunnelGrid h4, 
.consentTunnelGrid h5 {
    margin-top: 24px;
    margin-bottom: 12px;
    font-weight: 600;
    line-height: 1.3;
    color: #000;
}

.consentTunnelGrid h1 {
    font-size: 22px;
}

.consentTunnelGrid h2 {
    font-size: 20px;
}

.consentTunnelGrid h3 {
    font-size: 18px;
}

.consentTunnelGrid h4 {
    font-size: 16px;
}

.consentTunnelGrid h5 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* List styles */
.consentTunnelGrid ul {
    margin-top: 0;
    margin-bottom: 16px;
    padding-left: 20px;
    list-style-type: disc;
}

.consentTunnelGrid li {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 8px;
    color: #333;
}

/* Remove margin from the last element to avoid double spacing */
.consentTunnelGrid > *:last-child {
    margin-bottom: 0;
}


footer h5{
    color: #fff !important;
}

/* .navbar-toggler{
    filter: invert(1);
} */

.display-4{
    font-size: clamp(24px, 4vw, 56px) !important;
}

body, html{
    overflow-x: hidden;
}

@media (max-width: 767px){
    .contact-info{
        .d-flex.align-items-center.mb-3{
            flex-direction: column !important;
            justify-content: center !important;
            text-align: center;

            .contact-icon{
                margin-right: 0 !important;
                margin-bottom: 14px;
            }
        }
    }
}

.wr{
    display: flex;
    flex-direction: column;
    min-height: 100vh;

    main{
        flex: 1;
    }
}