@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
    --bg-color: #0f0f0f;
    --text-primary: #f5f5f5;
    --text-secondary: #a0a0a0;
    --accent-start: #9c27b0;
    --accent-end: #e91e63;
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(255, 255, 255, 0.08);
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    --transition: all 0.3s ease;
    --font-main: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
    -webkit-hyphens: auto;
    width: 100%;
    max-width: 100%;
}

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

a {
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent-end);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; text-align: center; margin-bottom: 3rem; }
h3 { font-size: 1.5rem; }

.gradient-text {
    background: linear-gradient(45deg, var(--accent-start), var(--accent-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background: linear-gradient(45deg, var(--accent-start), var(--accent-end));
    color: #fff;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(45deg, var(--accent-end), var(--accent-start));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.5);
    color: #fff;
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid var(--accent-start);
    box-shadow: none;
}

.btn-secondary:hover {
    background: var(--accent-start);
    color: #fff;
    transform: translateY(-2px);
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 100px 0;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(15, 15, 15, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid var(--card-border);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(rgba(15, 15, 15, 0.7), rgba(15, 15, 15, 0.9)), url('images/hero.jpg') center/cover;
    text-align: center;
    padding-top: 120px;
    padding-bottom: 60px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

/* Glassmorphism Cards */
.card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.blog-card {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.blog-card-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.blog-card-desc {
    color: #ccc;
    font-size: 0.9rem;
    flex-grow: 1;
}

.blog-hero {
    background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('images/hero8.jpg');
    padding: 5rem 0;
    min-height: 40vh;
}

.blog-grid-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.blog-guide-section {
    padding: 4rem 0;
}

.blog-guide-content {
    color: #ccc;
    line-height: 1.8;
}

.blog-guide-content h2 {
    margin-bottom: 2rem;
}

.blog-guide-content h3 {
    color: #d4af37;
    margin-top: 2rem;
}

.blog-card-link {
    font-weight: bold;
}

.card:hover {
    transform: translateY(-5px);
    border-color: rgba(233, 30, 99, 0.3);
}

/* Grid Layouts */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    align-items: center;
}

/* Images */
.img-fluid {
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    fill: url(#gradient);
}

/* FAQ */
.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 10px;
    margin-bottom: 15px;
    padding: 20px;
}

.faq-question {
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--accent-end);
}

.faq-answer {
    color: var(--text-secondary);
}

/* Footer */
.footer {
    background: #080808;
    padding: 60px 0 20px;
    border-top: 1px solid var(--card-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: var(--accent-start);
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--text-secondary);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--card-border);
    color: var(--text-secondary);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
}

.mobile-menu-toggle .bar {
    height: 3px;
    width: 100%;
    background-color: var(--text-primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Responsive */
@media (max-width: 992px) {
    .grid-3, .grid-2, .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(15, 15, 15, 0.98);
        -webkit-backdrop-filter: blur(15px);
        backdrop-filter: blur(15px);
        flex-direction: column;
        padding: 20px 0;
        gap: 20px;
        border-bottom: 1px solid var(--card-border);
        box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        display: none; /* Hidden by default */
        z-index: 1000;
        text-align: center;
    }
    
    .nav-links.active {
        display: flex;
    }

    .mobile-menu-toggle.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .mobile-menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    h1 { font-size: 2rem; }
    .grid-3, .grid-2, .footer-grid {
        grid-template-columns: 1fr;
    }
}

.text-center { text-align: center; }
.mt-4 { margin-top: 2rem; }
.mb-4 { margin-bottom: 2rem; }

/* Utilities extracted from inline styles */
.bg-dark-secondary { background-color: #080808; }
.rounded-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}
.shadow-light {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Flexbox Layouts for Text & Images */
.flex-row {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
}
.flex-row.reverse {
    flex-direction: row-reverse;
}
.flex-row .text-content,
.flex-row .image-content {
    flex: 1 1 45%;
}

@media (max-width: 768px) {
    .flex-row, .flex-row.reverse {
        flex-direction: column;
    }
    .flex-row .text-content,
    .flex-row .image-content {
        flex: 1 1 100%;
    }
}
.section-subtitle {
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: var(--text-secondary);
}
.img-spaced { margin-bottom: 20px; }
.card-img-fixed { height: 200px; object-fit: cover; }
.mt-30 { margin-top: 30px; }

/* Data-Driven Analytical Styles (for hamburg.html) */
.table-responsive {
    overflow-x: auto;
    width: 100%;
}
.data-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1rem;
    background-color: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
}
.data-table th, .data-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--card-border);
}
.data-table th {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    font-weight: 600;
}
.data-table tr:hover {
    background-color: rgba(255, 255, 255, 0.02);
}

.text-link {
    color: var(--accent-end);
    text-decoration: underline;
    text-underline-offset: 4px;
    font-weight: 500;
}
.text-link:hover {
    color: var(--accent-start);
}

.styled-list {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
    margin-bottom: 1rem;
}
.styled-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: var(--text-secondary);
}
.styled-list li strong {
    color: var(--text-primary);
}
.styled-list li::before {
    content: "▹";
    position: absolute;
    left: 0;
    color: var(--accent-end);
    font-weight: bold;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    background: var(--card-bg);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
    border-left: 4px solid var(--accent-end);
    transition: var(--transition);
}
.faq-item:hover {
    transform: translateX(5px);
}
.faq-item h4 {
    margin-top: 0;
    margin-bottom: 10px;
    color: var(--text-primary);
    font-size: 1.1rem;
}
.faq-item p {
    margin-bottom: 0;
    color: var(--text-secondary);
}
.mb-20 { margin-bottom: 20px; }
.img-shadow { box-shadow: var(--shadow); border-radius: 10px; }
.rtl-layout { direction: rtl; }
.ltr-layout { direction: ltr; }

/* Breadcrumbs */
.breadcrumb-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    font-size: 0.9rem;
}
.breadcrumb-item {
    margin-right: 0.5rem;
    color: #888;
}
.breadcrumb-item::after {
    content: ">";
    margin-left: 0.5rem;
    color: #888;
}
.breadcrumb-item:last-child::after {
    content: "";
}
.breadcrumb-item.active {
    color: #fff;
}
.breadcrumb-link {
    color: #d4af37;
    text-decoration: none;
}
.breadcrumb-link:hover {
    color: var(--accent-end);
}


.safety-card {
    background: rgba(233, 30, 99, 0.1) !important;
    border-color: rgba(233, 30, 99, 0.3) !important;
}
.safety-list {
    list-style-position: inside;
    padding-left: 20px;
    color: var(--text-secondary);
}
.faq-container-narrow {
    max-width: 900px;
    margin: 0 auto;
}
.cta-section {
    background: linear-gradient(rgba(15, 15, 15, 0.8), rgba(15, 15, 15, 0.9)), url('images/hero-bg1.jpg') center/cover;
    padding: 120px 0;
}
.cta-text {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.btn-large {
    font-size: 1.2rem;
    padding: 15px 40px;
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.4);
}
.btn-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}
.step-icon {
    width: 60px;
    height: 60px;
    background: var(--card-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    color: var(--accent-start);
    margin-bottom: 20px;
}
.footer-desc { color: var(--text-secondary); margin-bottom: 20px; }

/* Fixed Height Image Row */
.img-row-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
}
.img-row-item {
    flex: 1 1 calc(50% - 20px);
    max-width: calc(50% - 20px);
}
.img-row-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
@media (max-width: 768px) {
    .img-row-item {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

/* About Page & Privacy Page Styles */
.page-hero {
    background: linear-gradient(rgba(15, 15, 15, 0.8), rgba(15, 15, 15, 0.9)), url('images/hero10.jpg') center/cover;
    padding: 150px 0 80px;
    text-align: center;
}

.content-section {
    padding: 80px 0;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
}

.content-wrapper p {
    margin-bottom: 20px;
}

.content-wrapper h2, .content-wrapper h3 {
    color: var(--text-primary);
    margin-top: 40px;
    margin-bottom: 20px;
}

.image-gallery-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.image-gallery-3 img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

@media (max-width: 768px) {
    .image-gallery-3 {
        grid-template-columns: 1fr;
    }
}

.hero-subtitle {
    color: #ccc;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
}

.cta-btn-group {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: 30px;
    margin-bottom: 50px;
}

.btn-secondary-accent {
    background: transparent;
    color: var(--accent-start);
    border: 2px solid var(--accent-start);
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-secondary-accent:hover {
    background: var(--accent-start);
    color: #fff;
}

.privacy-contact-link {
    color: var(--accent-end);
    text-decoration: underline;
}

.privacy-btn-group {
    justify-content: center;
}


