/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Georgia, 'Times New Roman', serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    color: #B8860B;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #8B6508;
}

/* Header */
header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #ffffff;
    padding: 50px 0;
    text-align: center;
    border-bottom: 4px solid #D4A843;
}

header h1 {
    font-size: 3.5em;
    font-weight: 400;
    font-style: italic;
    letter-spacing: 8px;
    margin-bottom: 10px;
    color: #D4A843;
}

header .subtitle {
    font-size: 1.2em;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    letter-spacing: 2px;
}

header .khmer-script {
    font-size: 2em;
    color: rgba(212, 168, 67, 0.6);
    margin-bottom: 10px;
}

/* Sections */
section {
    background: white;
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #D4A843;
}

section h2 {
    font-size: 2em;
    font-style: italic;
    color: #1a1a2e;
    margin-bottom: 25px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #D4A843, #B8860B);
}

section p {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Hero Section */
.hero {
    border-left: none;
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, #fff 0%, #fdf6e3 100%);
}

.hero .meaning {
    font-size: 1.8em;
    font-style: italic;
    color: #B8860B;
    margin: 30px 0;
    padding: 20px;
    border-top: 2px solid #D4A843;
    border-bottom: 2px solid #D4A843;
}

.hero .khmer-large {
    font-size: 4em;
    color: #D4A843;
    margin: 20px 0;
    line-height: 1.2;
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 25px;
}

.info-card {
    padding: 25px;
    background: #fdf6e3;
    border-radius: 8px;
    border-top: 3px solid #D4A843;
}

.info-card h3 {
    font-size: 1.3em;
    color: #B8860B;
    margin-bottom: 15px;
    font-style: italic;
}

.info-card p {
    font-size: 1.05em;
    line-height: 1.8;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 25px;
}

.contact-info {
    padding: 25px;
    background: #fdf6e3;
    border-radius: 8px;
    border-top: 3px solid #D4A843;
}

.contact-info h3 {
    font-size: 1.3em;
    color: #B8860B;
    margin-bottom: 15px;
    font-style: italic;
}

.contact-info p {
    font-size: 1.05em;
    line-height: 1.8;
}

.contact-info a {
    color: #1a1a2e;
    transition: color 0.3s;
}

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

/* Legal Content */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h3 {
    font-size: 1.4em;
    color: #B8860B;
    margin-top: 30px;
    margin-bottom: 15px;
    font-style: italic;
}

.legal-content p {
    font-size: 1.05em;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-content a {
    color: #B8860B;
}

.legal-content a:hover {
    color: #8B6508;
    text-decoration: underline;
}

.back-link {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #f0f0f0;
}

.back-link a {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #D4A843, #B8860B);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1em;
    transition: all 0.3s ease;
}

.back-link a:hover {
    transform: translateX(-5px);
    box-shadow: 0 4px 15px rgba(212, 168, 67, 0.3);
    color: white;
}

/* Map */
.map-container {
    margin-top: 30px;
}

/* ===== EINHEITLICHER FOOTER ===== */
.footer {
    background: #2c2c2c;
    color: #ffffff;
    padding: 40px 20px 0;
    border-top: 4px solid #E85D33;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 18px;
    font-style: italic;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #E85D33;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    margin-bottom: 8px;
}

.footer-col a {
    color: #F4A460;
    font-size: 16px;
    display: block;
    margin-bottom: 8px;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #E85D33;
    text-decoration: underline;
}

.footer-bottom {
    max-width: 1100px;
    margin: 30px auto 0;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
}

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    z-index: 9999;
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: #ffffff;
}

/* ===== KONTAKTFORMULAR ===== */
.contact-form-section {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px solid #f0f0f0;
}

.contact-form-section h3 {
    font-size: 2em;
    font-style: italic;
    color: #1a1a2e;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.contact-form-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #D4A843, #B8860B);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 0.95rem;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #D4A843;
    box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-btn {
    background: linear-gradient(135deg, #D4A843, #B8860B);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 15px rgba(212, 168, 67, 0.3);
}

.form-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 168, 67, 0.4);
}

.form-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-note {
    font-size: 0.85rem;
    color: #888;
    margin-top: 10px;
    text-align: center;
}

.form-status {
    padding: 15px 20px;
    border-radius: 4px;
    margin-top: 15px;
    display: none;
    text-align: center;
}

.form-status.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-status.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    header h1 {
        font-size: 2.5em;
        letter-spacing: 4px;
    }

    header .subtitle {
        font-size: 1em;
    }

    .hero .khmer-large {
        font-size: 2.5em;
    }

    .hero .meaning {
        font-size: 1.4em;
    }

    section {
        padding: 25px;
    }

    section h2 {
        font-size: 1.6em;
    }

    .info-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }
}

@media (max-width: 500px) {
    header h1 {
        font-size: 2em;
        letter-spacing: 3px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
