/**
 * DAaM Static Site - Main Stylesheet
 * Clean, modern design for water utility digital transformation
 */

/* ========================================
   FONT DECLARATIONS - Self-Hosted Fonts
   ======================================== */

@font-face {
  font-family: 'Roboto';
  src: url('../fonts/Roboto/Roboto-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Roboto';
  src: url('../fonts/Roboto/Roboto-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Roboto';
  src: url('../fonts/Roboto/Roboto-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Roboto';
  src: url('../fonts/Roboto/Roboto-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ========================================
   CSS CUSTOM PROPERTIES / VARIABLES
   ======================================== */

:root {
    /* Colors - Exact WordPress Palette */
    --daam-primary: #338000 !important;
    --daam-primary-dark: #2A6600 !important;
    --daam-secondary: #dbecba !important;
    --daam-success: #338000 !important;
    --daam-danger: #dc3545 !important;
    --daam-warning: #ff9800 !important;
    --daam-info: #0066cc !important;
    --daam-light: #000000 !important;
    --daam-dark: #102005 !important;
    --daam-white: #FFFFFF !important;
    --daam-black: #000000 !important;
    --daam-cream: #F8F7F2 !important;
    --daam-medium: #3B4833 !important;

    /* Typography - Self-Hosted Roboto (matching WordPress) */
    --daam-font-primary: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --section-padding: 80px 20px;
    --container-max-width: 1200px;

    /* Color rendering optimization */
    color-scheme: dark;
}

/* ========================================
   GLOBAL RESET & BASE STYLES
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--daam-font-primary);
    color: var(--daam-white);
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    -webkit-text-size-adjust: 100%;
}

/* Force Roboto font on ALL elements (matching WordPress plugin behavior) */
body, body *, h1, h2, h3, h4, h5, h6, p, a, span, div, section, header, footer, nav, button {
    font-family: var(--daam-font-primary) !important;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    font-weight: 700;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: var(--daam-font-primary);
    cursor: pointer;
    border: none;
    background: none;
}

ul {
    list-style: none;
}

/* ========================================
   HEADER / NAVIGATION
   ======================================== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: transparent;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    padding: 20px 0;
}

.site-header.scrolled {
    background: rgba(0, 0, 0, 0.3);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    height: 50px;
    width: auto;
}

.main-navigation .menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.main-navigation a {
    color: var(--daam-white);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.main-navigation a:hover,
.main-navigation a.active-section {
    color: var(--daam-primary);
    font-weight: 600;
}

/* ========================================
   COMMON SECTION STYLES
   ======================================== */

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: var(--section-padding);
}

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */

.daam-fade-in {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.daam-fade-in.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.daam-fade-in.animate-out {
    opacity: 0;
    transform: translateY(60px);
}

.daam-fade-in.animate-out-top {
    opacity: 0;
    transform: translateY(-60px);
}

/* ========================================
   HERO SECTION
   ======================================== */

.daam-hero-section {
    background: transparent;
    padding: 80px 20px 120px;
    text-align: center;
    position: relative;
    z-index: 10;
}

.hero-badges {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.hero-badges span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--daam-white);
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
}

.hero-badges img {
    width: 24px;
    height: 24px;
}

.hero-badges .separator {
    color: var(--daam-primary);
    font-size: 16px;
    font-weight: 300;
}

.daam-hero-section h1 {
    color: var(--daam-white);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 auto 5px;
    max-width: 900px;
}

.daam-hero-section h2 {
    color: #338000 !important;
    color: var(--daam-primary) !important;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 auto 30px;
    max-width: 900px;
}

.daam-hero-section p {
    color: var(--daam-white);
    font-size: 16px;
    line-height: 1.6;
    margin: 0 auto 40px;
    max-width: 800px;
}

.hero-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.hero-benefit-card {
    background: rgba(42, 102, 0, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 30px 20px;
    min-height: 140px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.hero-benefit-content {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.hero-benefit-content img {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.hero-benefit-content p {
    color: var(--daam-white);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    text-align: left;
}

.hero-cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.daam-cta-button {
    border-radius: 30px;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.daam-cta-button.outline {
    border: 2px solid var(--daam-white);
    background: transparent;
    color: var(--daam-white);
}

.daam-cta-button.outline:hover {
    background: var(--daam-white);
    color: var(--daam-black);
}

.daam-cta-button.filled {
    background: var(--daam-primary);
    color: var(--daam-white);
    border: 2px solid var(--daam-primary);
}

.daam-cta-button.filled:hover {
    background: var(--daam-primary-dark);
    border-color: var(--daam-primary-dark);
}

/* ========================================
   HERO IMAGE SECTION
   ======================================== */

.daam-hero-image-section {
    background: transparent;
    padding: 0;
    margin-top: -150px;
    position: relative;
    z-index: 1;
    pointer-events: none;
}

.daam-hero-image-section .container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.daam-hero-image-section img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* ========================================
   ABOUT SECTION
   ======================================== */

.daam-about-section {
    padding: 80px 20px;
    background: transparent;
}

.daam-about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.daam-about-column {
    flex: 1 1 calc(25% - 15px);
    min-width: 250px;
}

.daam-about-intro {
    padding: 20px 0;
}

.daam-about-title {
    color: var(--daam-primary);
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: left;
}

.daam-about-subtitle {
    color: var(--daam-white);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: left;
}

.daam-about-intro p {
    color: var(--daam-white);
    font-size: 16px;
    line-height: 1.6;
}

.daam-about-card {
    background: rgba(51, 128, 0, 0.16);
    padding: 0 15px;
    border-radius: 12px;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    height: 580px;
    overflow: hidden;
}

.daam-about-card img {
    width: 100%;
    max-width: 150%;
    margin-bottom: 10px;
    object-fit: contain;
    margin-top: -60px;
}

.daam-about-card h3 {
    color: var(--daam-primary);
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 15px 0;
}

.daam-about-card p,
.daam-about-card div {
    color: var(--daam-white);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.daam-about-card strong {
    color: var(--daam-primary);
}

/* ========================================
   CAROUSEL / SERVICES SECTION
   ======================================== */

.daam-carousel-section {
    background: transparent;
    padding: 80px 20px;
}

.carousel-nav-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 5px;
}

.carousel-tab {
    background: transparent;
    color: var(--daam-white);
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    font-weight: 400;
    font-size: 14px;
    transition: all 0.3s ease;
}

.carousel-tab.active {
    color: var(--daam-primary);
    font-weight: 700;
}

.carousel-tab:hover {
    opacity: 0.8;
}

.carousel-container {
    position: relative;
    overflow: hidden;
}

.carousel-container.dragging {
    cursor: grabbing;
}

.carousel-slides {
    display: flex;
    transition: transform 0.5s ease;
    height: 350px;
    user-select: none;
}

.carousel-slide {
    min-width: 100%;
    display: flex;
    gap: 40px;
    align-items: center;
    padding: 0 80px;
}

.carousel-slide-content {
    flex: 1;
    padding-left: 50px;
}

.carousel-slide-content h3 {
    color: var(--daam-primary);
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 20px 0;
}

.carousel-slide-content p {
    color: var(--daam-white);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.carousel-slide-content .carousel-bullet {
    color: var(--daam-white);
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 12px 0;
}

.carousel-slide-image {
    flex: 1.2;
    margin-top: -160px;
}

.carousel-slide-image img {
    width: 100%;
    max-width: 700px;
    height: auto;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    color: var(--daam-primary);
    border: 2px solid var(--daam-primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-arrow:hover {
    opacity: 0.8;
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

/* ========================================
   TOOLS SECTION
   ======================================== */

.daam-tools-section {
    background: transparent;
    padding: 80px 20px;
}

.tools-header {
    text-align: center;
    margin-bottom: 50px;
}

.tools-header h2 {
    color: var(--daam-primary);
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.tools-header h2 span {
    color: var(--daam-white);
}

.tools-header p {
    color: var(--daam-white);
    font-size: 18px;
}

.tools-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 60px;
}

.tools-card {
    background: rgba(29, 69, 2, 0.29);
    padding: 0px 30px;
    border-radius: 12px;
    text-align: left;
    box-shadow: 0 4px 20px rgba(42, 102, 0, 0.4);
    display: flex;
    flex-direction: column;
}

.tools-card-content {
    flex: 1;
}

.tools-card-content img {
    width: 100%;
    max-width: 300px;
    height: auto;
    margin: -60px auto -20px auto;
    object-fit: contain;
}

.tools-card-content h3 {
    color: var(--daam-primary);
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 20px 0;
}

.tools-card-content .tools-description {
    color: var(--daam-white);
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.tools-card-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    padding-bottom: 20px;
}

.tools-card-icons img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

/* ========================================
   BLOGS SECTION
   ======================================== */

.daam-blogs-section {
    padding: 80px 20px;
    background: var(--daam-white);
}

.daam-blogs-section h2 {
    font-size: 2.5em;
    margin-bottom: 15px;
    color: var(--daam-black);
}

.daam-blogs-section p {
    font-size: 1.2em;
    color: #666666;
}

/* ========================================
   FAQS SECTION
   ======================================== */

.daam-faqs-section {
    padding: 80px 20px;
    background: transparent;
}

.daam-faqs-section h2 {
    font-size: 2.5em;
    margin-bottom: 15px;
    color: var(--daam-white);
}

.daam-faqs-section p {
    font-size: 1.2em;
    color: #CCCCCC;
}

/* ========================================
   BOTTOM NAVIGATION SECTION
   ======================================== */

.daam-bottom-nav-section {
    background: transparent;
    padding: 80px 20px;
    color: var(--daam-white);
}

.bottom-nav-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.bottom-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    padding-bottom: 30px;
    border-bottom: 1px solid #333333;
}

.bottom-nav-logo img {
    width: 140px;
    height: auto;
}

.bottom-nav-social {
    display: flex;
    align-items: center;
    gap: 20px;
}

.bottom-nav-social p {
    color: var(--daam-white);
    font-size: 14px;
    margin: 0;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: var(--daam-primary);
    font-size: 24px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--daam-primary-dark);
}

.bottom-nav-content {
    display: grid;
    grid-template-columns: 75% 25%;
    gap: 40px;
}

.bottom-nav-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
}

.nav-column h4 {
    color: var(--daam-primary);
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 20px 0;
}

.nav-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-column li {
    margin-bottom: 12px;
}

.nav-column a {
    color: #999999;
    font-size: 14px;
    transition: color 0.3s ease;
}

.nav-column a:hover {
    color: var(--daam-primary);
}

.bottom-nav-contact h4 {
    color: var(--daam-primary);
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 20px 0;
}

.bottom-nav-contact p {
    color: var(--daam-white);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* ========================================
   CONTACT FORM
   ======================================== */

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #333333;
    background: #1a1a1a;
    color: var(--daam-white);
    border-radius: 4px;
    font-size: 14px;
    font-family: var(--daam-font-primary);
}

.contact-form textarea {
    min-height: 100px;
    resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #999999;
}

.contact-form button {
    width: 100%;
    padding: 12px 24px;
    background: var(--daam-primary);
    color: var(--daam-white);
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: opacity 0.3s;
}

.contact-form button:hover {
    opacity: 0.9;
}

.daam-form-status {
    display: none;
    padding: 12px;
    border-radius: 4px;
    font-size: 14px;
    text-align: center;
}

.daam-form-status.success {
    background: var(--daam-primary);
    color: var(--daam-white);
}

.daam-form-status.error {
    background: #d32f2f;
    color: var(--daam-white);
}

/* ========================================
   CONTACT MODAL
   ======================================== */

.contact-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 99999;
    align-items: center;
    justify-content: center;
}

.contact-modal.active {
    display: flex;
}

.modal-content {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    color: #999999;
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: var(--daam-white);
}

.modal-content h3 {
    color: var(--daam-primary);
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 10px 0;
}

.modal-content p {
    color: var(--daam-white);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* ========================================
   FOOTER
   ======================================== */

.site-footer {
    background: var(--daam-black);
    padding: 30px 20px;
    /* margin-top: 0 !important; */
    /* padding-top: 0 !important; */
    text-align: center;
    border-top: 1px solid #333333;
}

.footer-content p {
    color: #999999;
    font-size: 14px;
    margin: 0;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1024px) {
    .daam-about-column {
        flex: 1 1 calc(50% - 10px);
        min-width: 280px;
    }

    .daam-about-card {
        height: auto;
        min-height: 500px;
    }

    .tools-grid {
        padding: 0 20px;
    }

    .bottom-nav-content {
        grid-template-columns: 1fr;
    }

    .bottom-nav-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .main-navigation .menu {
        gap: 15px;
        font-size: 12px;
    }

    .daam-hero-section h1,
    .daam-hero-section h2 {
        font-size: 32px;
    }

    .hero-benefits-grid {
        grid-template-columns: 1fr;
    }

    .daam-hero-image-section {
        margin-top: -80px;
    }

    .daam-about-container {
        flex-direction: column;
    }

    .daam-about-column {
        flex: 1 1 100%;
        min-width: 100%;
    }

    .daam-about-title,
    .daam-about-subtitle {
        font-size: 28px;
    }

    .daam-about-card {
        height: auto;
        min-height: 400px;
    }

    .carousel-slide {
        flex-direction: column;
        padding: 0 20px;
    }

    .carousel-slide-content {
        padding-left: 0;
    }

    .carousel-slide-image {
        margin-top: 0;
    }

    .carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .tools-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    .tools-header h2 {
        font-size: 32px;
    }

    .bottom-nav-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .bottom-nav-social {
        flex-direction: column;
        gap: 10px;
    }

    .bottom-nav-links {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ========================================
   WORDPRESS CUSTOM STYLES
   Migrated from WordPress site
   ======================================== */

/* BODY: Black background with Frame-247.svg pattern - NO OVERLAY */
body {
    background-color: #000000 !important;
    background-image: url('../images/Illustration_SVG/DAam/Frame-247.svg') !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
}

/* Force full opacity and sharp rendering on all content */
header, main, section, footer, div, h1, h2, h3, h4, h5, h6, p, span, a {
    opacity: 1 !important;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* Enhance color vibrancy and text sharpness */
.site-header,
.daam-hero-section,
.daam-about-section,
.daam-carousel-section,
.daam-tools-section,
.daam-bottom-nav-section {
    filter: contrast(1.02) brightness(1.0);
    will-change: transform;
    transform: translateZ(0);
}

/* Ensure green text is vibrant and sharp */
.daam-hero-section h2,
.daam-about-title,
.carousel-tab.active,
.tools-header h2 {
    text-shadow: 0 0 1px rgba(51, 128, 0, 0.2);
}

/* ========================================
   SCROLL ANIMATIONS - WordPress Style
   ======================================== */

/* Initial state: hidden and shifted down */
.daam-hero-section,
.daam-hero-image-section,
.daam-about-section,
.daam-carousel-section,
.daam-tools-section,
.daam-bottom-nav-section {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Animated state: visible and in place */
.daam-hero-section.animate-in,
.daam-hero-image-section.animate-in,
.daam-about-section.animate-in,
.daam-carousel-section.animate-in,
.daam-tools-section.animate-in,
.daam-bottom-nav-section.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Animate out bottom: hidden and moved down */
.daam-hero-section.animate-out,
.daam-hero-image-section.animate-out,
.daam-about-section.animate-out,
.daam-carousel-section.animate-out,
.daam-tools-section.animate-out,
.daam-bottom-nav-section.animate-out {
    opacity: 0;
    transform: translateY(60px);
}

/* Animate out top: hidden and moved up */
.daam-hero-section.animate-out-top,
.daam-hero-image-section.animate-out-top,
.daam-about-section.animate-out-top,
.daam-carousel-section.animate-out-top,
.daam-tools-section.animate-out-top,
.daam-bottom-nav-section.animate-out-top {
    opacity: 0;
    transform: translateY(-60px);
}

/* Sticky navigation with white text */
.main-navigation a {
    color: #FFFFFF !important;
}

.main-navigation a:hover,
.main-navigation a.active-section {
    color: #338000 !important;
}

/* Hero section margin adjustment */
.daam-hero-section {
    margin-top: -20px !important;
}

/* Hero image with 70vw max-width - Centered and Full Display */
.daam-hero-image-section {
    margin-left: calc(-50vw + 50%) !important;
    margin-right: calc(-50vw + 50%) !important;
    max-width: 100vw !important;
    width: 100vw !important;
    margin-top: -280px !important;
    overflow: visible !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

.daam-hero-image-section .container {
    max-width: 100% !important;
    padding: 0 !important;
    display: flex !important;
    justify-content: center !important;
}

.daam-hero-image-section img {
    max-width: 70vw !important;
    width: 70vw !important;
    height: auto !important;
    object-fit: contain !important;
    object-position: center center !important;
    display: block !important;
    margin: 0 auto !important;
}

/* Carousel prev/next buttons - fill on hover */
.carousel-arrow:hover {
    background: #338000 !important;
    color: #FFFFFF !important;
}

/* ========================================
   DARK READER OVERRIDE
   Prevent Dark Reader from changing colors
   ======================================== */

/* Force green color on all primary elements */
.daam-hero-section h2,
.daam-about-title,
.carousel-tab.active,
.tools-header h2,
.daam-about-card h3,
.carousel-slide-content h3,
.tools-card-content h3,
.nav-column h4,
.bottom-nav-contact h4,
.modal-content h3,
.main-navigation a:hover,
.main-navigation a.active-section,
.carousel-arrow,
.social-icons a {
    color: #338000 !important;
}

/* Force white color on text */
.daam-hero-section h1,
.daam-hero-section p,
.daam-about-subtitle,
.daam-about-intro p,
.carousel-slide-content p,
.tools-header h2 span,
body,
p,
span {
    color: #FFFFFF !important;
}

/* Prevent Dark Reader from modifying background */
body {
    filter: none !important;
}

/* Sections should have transparent backgrounds to show body pattern */
.daam-hero-section,
.daam-about-section,
.daam-carousel-section,
.daam-tools-section,
.daam-bottom-nav-section {
    background: transparent !important;
    filter: none !important;
}
