/* styles.css - Clean version for index.php + guided.php */

body {
    margin: 0;
    padding: 0;
    background: #0a0703;
    color: #f5e8c7;
    font-family: Georgia, serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-screen {
    max-width: 420px;
    width: 100%;
    padding: 30px 20px;
    text-align: center;
}

.mansion-image img {
    width: 100%;
    max-width: 340px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.7);
    margin-bottom: 30px;
}

.maureen-credit {
    font-size: 1.15rem;
    letter-spacing: 4px;
    color: #d4af77;
    margin: 20px 0 40px 0;
}

.buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.btn-guided, .btn-free {
    background-image: url('button.jpg');
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 85px;
    border: none;
    cursor: pointer;
    border-radius: 12px;
}

.btn-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.25rem;
    font-weight: bold;
    color: #1a1208;
    text-shadow: 0 2px 4px rgba(255,255,255,0.7);
    width: 100%;
    text-align: center;
}

/* Language dropdown */
.language-picker {
    margin-bottom: 30px;
}
.label {
    display: block;
    font-size: 1rem;
    color: #d4af77;
    margin-bottom: 8px;
}
.language-select {
    width: 100%;
    padding: 14px;
    background: #3a2a1f;
    color: #f5e8c7;
    border: 2px solid #d4af77;
    border-radius: 12px;
    font-size: 1.1rem;
}

/* Guided Tour square buttons */
.tour-list {
    margin-top: 30px;
    background: rgba(26, 18, 8, 0.95);
    border-radius: 16px;
    padding: 24px;
}

.tour-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.tour-btn {
    width: 170px;
    height: 170px;
    background-size: cover;
    background-position: center;
    border: none;
    cursor: pointer;
    border-radius: 16px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    transition: all 0.2s;
}

.tour-btn:hover {
    transform: scale(1.05);
}

.back-btn {
    margin-top: 30px;
    padding: 14px 28px;
    background: #3a2a1f;
    color: #d4af77;
    border: 2px solid #d4af77;
    border-radius: 12px;
    cursor: pointer;
    font-size: 1rem;
}

/* Home buttons with button.jpg and 16px overlaid text */
/* FORCE HOME BUTTONS - button.jpg with 16px text */
.btn-guided, .btn-free {
    background-image: url('button.png') !important;
    background-size: cover !important;
    background-position: center !important;
    width: 100% !important;
    height: 85px !important;
    border: none !important;
    cursor: pointer !important;
    border-radius: 12px !important;
    position: relative !important;
    overflow: hidden !important;
}

.btn-text {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    font-size: 16px !important;
    font-weight: bold !important;
    color: #1a1208 !important;
    text-shadow: 0 2px 4px rgba(255,255,255,0.7) !important;
    width: 100% !important;
    text-align: center !important;
}

/* Voice input section */
.voice-input {
    margin-top: 40px;
    text-align: center;
}

.mic-button {
    background: #d4af77;
    color: #1a1208;
    border: none;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 12px;
    cursor: pointer;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mic-button:hover {
    background: #e8c89c;
}

.mic-icon {
    font-size: 1.3rem;
}

.mic-instructions {
    font-size: 0.9rem;
    color: #d4af77;
    opacity: 0.8;
    margin-bottom: 12px;
}

.text-input {
    width: 80%;
    padding: 14px;
    margin-bottom: 12px;
    background: #3a2a1f;
    border: 2px solid #d4af77;
    border-radius: 12px;
    color: #f5e8c7;
    font-size: 1rem;
}

.send-button {
    background: #d4af77;
    color: #1a1208;
    border: none;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 12px;
    cursor: pointer;
}

.send-button:hover {
    background: #e8c89c;
}