:root {
    --bg-color: #FAFAFA;
    --app-bg: #FFFFFF;
    --text-main: #111111;
    --text-light: #555555;
    --accent: #E11D48; /* Pinkish Red */
    --accent-light: #FFF1F2;
    --call-btn: #111827;
    --wa-btn: #25D366;
    --border: #E5E7EB;
    --footer-bg: #111111;
    --card-bg: #FFFFFF;
}

/* Dark Mode Variables */
[data-theme="dark"] {
    --bg-color: #0A0A0A;
    --app-bg: #121212;
    --text-main: #F3F4F6;
    --text-light: #9CA3AF;
    --accent-light: #3F0E1A; 
    --border: #2D3748;
    --call-btn: #374151;
    --card-bg: #1E1E1E;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; }

html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { background-color: var(--bg-color); color: var(--text-main); display: flex; justify-content: center; overflow-x: hidden; transition: background-color 0.3s; }

/* Mobile App Wrapper */
.app-container {
    width: 100%; max-width: 480px; 
    background-color: var(--app-bg); min-height: 100vh;
    box-shadow: 0 0 40px rgba(0,0,0,0.1); position: relative; overflow-x: hidden;
    transition: background-color 0.3s;
}

/* Scroll Animation Classes */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* Age Verification */
.age-modal { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.9); backdrop-filter: blur(10px); display: flex; justify-content: center; align-items: center; z-index: 9999; padding: 1.5rem; }
.age-content { background: var(--app-bg); padding: 2.5rem 2rem; border-radius: 16px; text-align: center; width: 100%; max-width: 400px; }
.age-content h1 { font-size: 1.8rem; margin-bottom: 1rem; color: var(--accent); }
.age-content p { color: var(--text-light); margin-bottom: 2rem; font-size: 1rem; line-height: 1.5; }
.btn-age { width: 100%; padding: 1rem; border: none; border-radius: 8px; font-size: 1.1rem; font-weight: bold; cursor: pointer; margin-bottom: 1rem; }
.btn-enter { background: var(--accent); color: white; }
.btn-exit { background: var(--border); color: var(--text-main); }

/* Header & Hamburger */
header {
    padding: 1rem 1.5rem; display: flex; justify-content: space-between; align-items: center;
    border-bottom: 1px solid var(--border); position: sticky; top: 0;
    background: var(--app-bg); z-index: 100;
}
.logo-container { display: flex; flex-direction: column; align-items: flex-start; }
.logo { font-size: 1.6rem; font-weight: 900; color: var(--text-main); letter-spacing: -0.5px; }
.logo span { color: var(--accent); }
.sub-logo { font-size: 0.8rem; color: var(--text-light); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-top: 2px; }

.hamburger { background: none; border: none; font-size: 1.8rem; color: var(--text-main); cursor: pointer; }

/* Sidebar Drawer */
.sidebar {
    position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
    background: var(--card-bg); z-index: 1000; transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1); display: flex; flex-direction: column;
}
.sidebar.active { right: 0; }
.sidebar-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5); z-index: 999; display: none; opacity: 0;
    transition: opacity 0.3s ease;
}
.sidebar-overlay.active { display: block; opacity: 1; }
.close-sidebar { align-self: flex-end; padding: 1rem; background: none; border: none; font-size: 2rem; color: var(--text-main); cursor: pointer; }
.sidebar-content { padding: 1rem 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.sidebar-item {
    text-decoration: none; color: var(--text-main); font-size: 1.1rem; font-weight: 600;
    padding: 1rem 0; border-bottom: 1px solid var(--border); display: block; background: none; border-top: none; border-left: none; border-right: none; text-align: left; cursor: pointer; width: 100%;
}

/* Hero Section */
.hero { position: relative; padding: 4.5rem 1.5rem; text-align: center; background-size: cover; background-position: center; transition: background-image 1s ease-in-out; min-height: 320px; display: flex; flex-direction: column; justify-content: center; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.6); z-index: 1; }
.hero-content { position: relative; z-index: 2; color: white; }
.hero h2 { font-size: 2.2rem; line-height: 1.2; margin-bottom: 1rem; font-weight: 800; }
.hero p { font-size: 1.05rem; line-height: 1.6; color: #E5E7EB; }

.location-badge { display: inline-block; background: #FFFFFF; color: var(--accent); border: 2px solid var(--accent); padding: 0.35rem 1.2rem; border-radius: 25px; font-weight: 800; font-size: 0.85rem; margin-bottom: 1.5rem; box-shadow: 0 4px 15px rgba(225, 29, 72, 0.2); }

/* Our Services Section */
.services-section { padding: 1.5rem; margin-top: 1rem; }
.services-section h3 { font-size: 1.4rem; margin-bottom: 1rem; text-align: center; color: var(--text-main); }
.service-list { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; }
.service-list li { background: var(--card-bg); padding: 1rem; border-radius: 8px; border: 1px solid var(--border); font-size: 0.95rem; font-weight: 600; display: flex; justify-content: space-between; align-items: center; color: var(--text-main); }
.service-list li::after { content: '♥'; color: var(--accent); font-weight: bold; font-size: 1.2rem;}

/* Brighter Heart Line Animation */
.heart-line-container { width: 100%; height: 40px; position: relative; overflow: hidden; margin: 1rem 0; display: flex; align-items: center; justify-content: center; opacity: 1; }
.heart-line { width: 100%; height: 2px; background: linear-gradient(90deg, transparent, var(--accent), transparent); position: absolute; }
.heart-icon { font-size: 24px; color: var(--accent); animation: pulse 1.2s infinite; background: var(--app-bg); padding: 0 15px; z-index: 2; text-shadow: 0 0 10px rgba(225, 29, 72, 0.5); }
@keyframes pulse { 0% { transform: scale(1); } 50% { transform: scale(1.3); } 100% { transform: scale(1); } }

/* Intro Section */
.intro-section { padding: 0 1.5rem 1rem 1.5rem; text-align: center; }
.intro-section h3 { font-size: 1.3rem; margin-bottom: 0.5rem; color: var(--text-main); }
.intro-section p { color: var(--text-light); font-size: 0.95rem; line-height: 1.6; }

/* Profiles Grid */
.profiles { padding: 1rem 1.5rem; display: flex; flex-direction: column; gap: 2.5rem; }
.profile-card { background: var(--card-bg); border-radius: 12px; overflow: hidden; border: 1px solid var(--border); box-shadow: 0 4px 15px rgba(0,0,0,0.06); }

/* --- HARDCODED 4:5 ASPECT RATIO --- */
.img-container { 
    width: 100%; 
    aspect-ratio: 4 / 5; /* Forces the box to always be 4:5 */
    position: relative; 
    background: var(--border); 
    overflow: hidden;
}
.img-container img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; /* Crops any image to perfectly fill the 4:5 space without distortion */
    object-position: center; /* Keeps the subject centered */
}

/* Profile Info & Bubbles */
.profile-info { padding: 1.5rem 1.2rem; text-align: center; }
.profile-info h3 { font-size: 1.5rem; margin-bottom: 0.5rem; color: var(--text-main); }
.service-bubbles { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem; margin-top: 0.8rem; }
.bubble { background: var(--accent-light); color: var(--accent); padding: 0.4rem 0.8rem; border-radius: 20px; font-size: 0.85rem; font-weight: 600; }

/* Direct Action Buttons */
.actions { display: flex; gap: 0.8rem; padding: 0 1.2rem 1.5rem 1.2rem; }
.action-btn { flex: 1; padding: 1rem 0; border: none; border-radius: 8px; font-weight: bold; font-size: 1rem; cursor: pointer; text-decoration: none; text-align: center; display: flex; justify-content: center; align-items: center; gap: 0.5rem; color: white; }
.btn-call { background: var(--call-btn); }
.btn-whatsapp { background: var(--wa-btn); }

/* Detailed Footer */
footer { background: var(--footer-bg); color: white; margin-top: 1rem; }
.footer-content { padding: 3rem 1.5rem; text-align: center; }
.footer-content h3 { font-size: 1.8rem; color: var(--accent); margin-bottom: 0.2rem; }
.footer-content > p { color: #A1A1AA; margin-bottom: 2rem; font-size: 0.95rem; }
.contact-info { background: #1F2937; padding: 1.5rem; border-radius: 12px; text-align: left; border: 1px solid #374151; margin-bottom: 2rem; }
.contact-title { color: var(--accent) !important; font-weight: bold; margin-bottom: 1rem !important; font-size: 1.1rem !important; text-align: center; }
.contact-info p { margin-bottom: 0.8rem; font-size: 0.95rem; color: #E5E7EB; }
.footer-links { margin-bottom: 1rem; }
.footer-links a { color: #A1A1AA; text-decoration: none; font-size: 0.9rem; padding: 0 0.5rem; }
.footer-bottom { background: #000000; padding: 1.5rem; text-align: center; font-size: 0.8rem; color: #71717A; }

/* Legal Pages Styling */
.legal-page { padding: 2.5rem 1.5rem; min-height: 80vh;}
.legal-page h1 { color: var(--accent); margin-bottom: 1.5rem; }
.legal-page h3 { color: var(--text-main); margin-top: 1.5rem; margin-bottom: 0.5rem; }
.legal-page p { color: var(--text-light); line-height: 1.6; margin-bottom: 1rem; }
