/* css/style.css */
:root {
    --primary-color: #3b2e50; /* Factum Blue */
    --secondary-color: #a77c2c; /* Brighter Blue for CTAs */
    --tertiary-color: #e69500; /* Darker than factum's footer, for contrast */
    --accent-color: #FFA500; /* Orange/Gold for Centurion */
    --light-bg: #e9ecef; /* A bit darker for more contrast */
    --dark-bg: #2A3F54; /* Darker than factum's footer, for contrast */
    --text-color-dark: #333;
    --text-color-light: #f1f1f1;
    --heading-font: 'Open Sans', sans-serif; /* Or 'Roboto', 'Lato' */
    --body-font: 'Open Sans', sans-serif;
    --border-radius: 8px; /* Increased for more visible rounding */
    --box-shadow: 0 6px 20px rgba(0,0,0,0.12); /* More pronounced shadow */
    --swiper-theme-color: #2A3F54;
    --success-color: #376e3a;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--body-font); line-height: 1.6; color: var(--text-color-dark); background-color: var(--light-bg); font-size: 16px; }
.container { width: 90%; max-width: 1100px; margin: 0 auto; padding: 0 15px; } /* Updated max-width */

/* Header & Nav */
#main-header { background-color: var(--light-bg); padding: 1rem 0; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
#main-header nav { display: flex; justify-content: space-between; align-items: center; }
#logo { max-height: 50px; display: block; } /* Updated logo size */
#nav-menu { list-style: none; display: flex; }
#nav-menu li { margin-left: 25px; } /* Updated spacing */
#nav-menu a { text-decoration: none; color: var(--text-color-dark); font-weight: 500; transition: color 0.3s ease; padding: 5px 0; font-size: 1rem;}
#nav-menu a:hover, #nav-menu a.active { color: var(--secondary-color); border-bottom: 2px solid var(--secondary-color); }

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin-left: 1rem;
}

.lang-link {
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    background-color: transparent;
}

.lang-link:hover {
    background-color: var(--primary-color);
    color: var(--light-bg);
}

.lang-link.active {
    background-color: var(--accent-color);
    color: var(--light-bg);
    border-color: var(--accent-color);
}

#mobile-menu-toggle { display: none; background: none; border: none; font-size: 1.5rem; color: var(--primary-color); cursor: pointer; }

/* General Section Styling */
.section-padding { padding: 60px 0; } /* Updated padding */
.bg-light { background-color: var(--light-bg); }
.bg-dark { background-color: var(--dark-bg); }
.text-light { color: var(--text-color-light) !important; }
.text-light a { color: var(--text-color-light) !important; }
.text-light a:hover { color: var(--secondary-color) !important; }
h1, h2, h3, h4 { font-family: var(--heading-font); color: var(--primary-color); margin-bottom: 0.7rem; line-height: 1.3; }
.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark h4,
.text-light h1, .text-light h2, .text-light h3, .text-light h4 { color: var(--text-color-light); }
h1 { font-size: 2.8rem; margin-bottom: 1rem; } /* Updated font size */
h2 { font-size: 2.2rem; text-align: center; margin-bottom: 1.5rem; } /* Updated font size */
h3 { font-size: 1.6rem; } /* Updated font size */
.section-subtitle { text-align: center; font-size: 1.1rem; color: #555; max-width: 700px; margin: 0 auto 2.5rem auto; }

/* Buttons */
.btn { display: inline-block; padding: 12px 28px; border-radius: var(--border-radius); text-decoration: none; font-weight: bold; transition: all 0.3s ease; cursor: pointer; border: 2px solid transparent; font-size: 1rem;}
.btn-primary { background-color: var(--secondary-color); color: var(--light-bg); border-color: var(--secondary-color); }
.btn-primary:hover { background-color: var(--accent-color); border-color: var(--accent-color); transform: translateY(-2px); }
.btn-secondary { background-color: var(--accent-color); color: var(--light-bg); border-color: var(--accent-color); }
.btn-secondary:hover { background-color: var(--tertiary-color); border-color: var(--tertiary-color); transform: translateY(-2px); }
.btn-outline { background-color: transparent; color: var(--secondary-color); border-color: var(--secondary-color); }
.hero .btn-outline { color: var(--light-bg); border-color: var(--light-bg); }
.hero .btn-outline:hover { background-color: var(--light-bg); color: var(--primary-color); }
.btn-outline:hover { background-color: var(--secondary-color); color: var(--light-bg); }
.btn-large { padding: 15px 35px; font-size: 1.1rem; }
.btn-small { padding: 7px 15px; font-size: 0.8rem;}
.text-center { text-align: center; }
.cta-buttons { margin-top: 2rem; }
.cta-buttons .btn { margin: 0.5rem; }
.cta-section { margin-top: 3rem; }

/* Hero Section for Var2 */
.hero { background-repeat: no-repeat; background-position: center center; background-size: cover; color: var(--text-color-light); padding: 70px 0; text-align: center; }
.hero h1 { color: #fff; font-size: 3rem; }
.hero .subtitle { font-size: 1.4rem; margin-bottom: 1.5rem; font-weight: 300; }

/* Wer wir sind & Unsere Strategie */
.about-strategy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.about-strategy-grid h2 { text-align: center; font-size: 1.8rem; margin-bottom: 0.8rem; }
.about-strategy-grid p { font-size: 0.95rem; }

/* Vorteile auf einen Blick */
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin-top: 1.5rem; }
.benefit-card { background-color: #fff; padding: 25px; border-radius: var(--border-radius); box-shadow: var(--box-shadow); text-align: center; }
.benefit-card i.fas { font-size: 2.5rem; color: var(--secondary-color); margin-bottom: 1rem; display: block; }
.benefit-card h3 { font-size: 1.3rem; color: var(--primary-color); margin-bottom: 0.5rem; }
.benefit-card p { font-size: 0.95rem; }

/* Factum in Zahlen */
#factum-in-zahlen h2 { color: var(--primary-color); }
.factum-zahlen-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; margin-top: 1.5rem; }
.factum-zahl-item { background-color: #fff; padding: 20px; border-radius: var(--border-radius); box-shadow: var(--box-shadow); }
.factum-zahl-item i.fas { font-size: 2rem; color: var(--accent-color); margin-bottom: 0.8rem; display: block;}
.factum-zahl-item .zahl { font-size: 1.8rem; font-weight: bold; color: var(--primary-color); display: block; margin-bottom: 0.3rem;}
.factum-zahl-item p { font-size: 0.9rem; color: #555; }


/* Erstes Objekt Var2 */
.objekt-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.objekt-container h3 {
    margin-top: 1.5rem;
}
.objekt-image { max-width: 600px; width: 100%; height: auto; border-radius: var(--border-radius); box-shadow: var(--box-shadow); margin: 1rem auto; display: block; }
.objekt-details-list {
    list-style: none;
    padding-left: 0;
    text-align: left;
    margin: 1rem 0;
    width: -moz-fit-content;
    width: fit-content;
}
.objekt-details-list li { font-size: 0.95rem; margin-bottom: 0.4rem; }

/* Zwei Token Var2 */
.zwei-token-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 1.5rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.token-info { background-color: #fff; padding: 20px; border-radius: var(--border-radius); box-shadow: var(--box-shadow); }
.token-info h3 { font-size: 1.2rem; color: var(--primary-color); margin-bottom: 0.5rem; }
.token-info h3 i.fas { margin-right: 8px; color: var(--accent-color); }
.token-info p { font-size: 0.9rem; }

/* Tokenomics List for Var2 */
.tokenomics-list-var1 { list-style: none; padding-left: 0; margin-top: 1.5rem; }
.tokenomics-list-var1 li { background-color: #fff; padding: 10px 15px; border-radius: var(--border-radius); margin-bottom: 8px; font-size: 0.9rem; border-left: 3px solid var(--secondary-color); }
.tokenomics-list-var1 li strong { color: var(--primary-color); }

/* Info Grid (Frühinvestor, Exit, DeFi) */
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin-top: 1.5rem; }
.info-item { background-color: #fff; padding: 20px; border-radius: var(--border-radius); box-shadow: var(--box-shadow); }
.info-item h3 { font-size: 1.2rem; color: var(--primary-color); margin-bottom: 0.6rem; }
.info-item p { font-size: 0.9rem; margin-bottom: 0.8rem; }
.info-item ul { list-style: disc; padding-left: 18px; font-size: 0.9rem; margin-bottom: 0.8rem; }
.info-item ul li { margin-bottom: 0.2rem; }
.info-item .btn-small { margin-top: 0.3rem; }

/* Final CTA / Invest Section */
.invest-section h2 { margin-bottom: 1rem; }
.invest-section .btn-accent { background-color: var(--accent-color); color: var(--light-bg); border-color: var(--accent-color); }
.invest-section .btn-accent:hover { background-color: var(--tertiary-color); border-color: var(--tertiary-color); }
.invest-section .btn-accent .primary-text { color: var(--primary-color); }
.risk-notice { margin-top: 1.5rem; font-size: 0.85rem; line-height: 1.5; max-width: 700px; margin-left: auto; margin-right: auto; }

/* Footer */
#main-footer { padding: 40px 0 20px 0; font-size: 0.9rem; background-color: var(--dark-bg); color: var(--text-color-light); }
.footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; margin-bottom: 30px; }
.footer-column h4 { margin-bottom: 1rem; font-size: 1.1rem; }
.footer-column ul { list-style: none; padding-left: 0; }
.footer-column ul li { margin-bottom: 0.7rem; }
.footer-column a { text-decoration: none; color: var(--text-color-light); transition: color 0.3s ease; }
.footer-column a:hover { text-decoration: underline; color: var(--secondary-color); }
.copyright { text-align: center; padding-top: 20px; border-top: 1px solid #4f5d6b; font-size: 0.85rem; }

.cookie-consent-banner a {
  color: #fff;
  text-decoration: underline;
}

/* Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal-content {
  position: relative;
  background-color: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  max-width: 550px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  background: transparent;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: #888;
}

.modal-close-btn:hover {
  color: #000;
}

/* Remove default styles from newsletter container inside modal */
#newsletter-container {
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
  max-width: none !important;
}

/* Add styles for form elements inside the modal */
#whitelist-modal input[type="text"],
#whitelist-modal input[type="email"],
#whitelist-modal input[type="number"],
#whitelist-modal select {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  background-color: #f9f9f9;
  font-size: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

#whitelist-modal input:focus,
#whitelist-modal select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

#whitelist-modal label {
  font-weight: bold;
  color: #333;
}