:root {
    --cherry-dark: #800020;
    --cherry-red: #D2042D;
    --cherry-light: #ffc1cc;
    --accent-orange: #ffb347; /* pleasant pastel orange */
    --accent-green: #8fbc8f; /* pleasant soft green */
    --bg-color: #fff9f5;
    --text-dark: #2c1a1d;
    --text-light: #ffffff;
    --card-bg: rgba(255, 255, 255, 0.85);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    /* Soft gradient background mixing warm orange/cream and soft green */
    background: linear-gradient(135deg, #fff9f5 0%, #eef5ee 50%, #fff0e6 100%);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    background-attachment: fixed;
    color: var(--text-dark);
    line-height: 1.6;
    min-height: 100vh;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profile-section {
    text-align: center;
    margin-bottom: 2rem;
    width: 100%;
}

.profile-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--accent-green);
    box-shadow: 0 8px 20px rgba(143, 188, 143, 0.4);
    margin-bottom: 1rem;
    /* gradient showing cherry and orange vibes */
    background: linear-gradient(45deg, var(--cherry-light), var(--accent-orange));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: var(--cherry-red);
}

.profile-name {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--cherry-dark);
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.05);
}

.profile-bio {
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 500;
}

.contact-mail {
    display: inline-block;
    background: rgba(255, 179, 71, 0.2); /* soft orange bg */
    color: var(--cherry-dark);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    border: 1px solid var(--accent-orange);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.contact-mail:hover {
    background: var(--accent-orange);
    color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 179, 71, 0.3);
}

.business-btn {
    width: 100%;
    padding: 1rem;
    background: var(--cherry-light);
    color: var(--cherry-dark);
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.business-btn:hover {
    background: var(--cherry-red);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(210, 4, 45, 0.2);
}

.stats-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.5s ease-in-out;
    margin-bottom: 0;
}

.stats-section.active {
    max-height: 500px;
    opacity: 1;
    margin-bottom: 2rem;
}

.stat-card {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    border-top: 4px solid var(--accent-green);
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(143, 188, 143, 0.2);
}

.stat-icon {
    font-size: 2rem;
    color: var(--cherry-red);
    margin-bottom: 0.5rem;
}

.stat-value {
    font-size: 1.6rem;
    font-weight: bold;
    color: var(--text-dark);
}

.stat-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #555;
    font-weight: 600;
}

.links-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.link-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem;
    background: var(--card-bg);
    border: 2px solid transparent;
    border-left: 5px solid var(--accent-orange);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    backdrop-filter: blur(5px);
    position: relative;
}

.link-btn:hover {
    border-color: var(--cherry-red);
    background: rgba(255, 255, 255, 0.95);
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(210, 4, 45, 0.15);
}

.link-icon {
    position: absolute;
    left: 1.5rem;
    font-size: 1.3rem;
    color: var(--cherry-red);
}

/* Instagram Feed */
.instagram-feed {
    width: 100%;
    margin-top: 3rem;
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    border-top: 4px solid var(--cherry-light);
    backdrop-filter: blur(5px);
}

.feed-title {
    text-align: center;
    color: var(--cherry-dark);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.ig-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 10px;
}

.ig-post {
    display: block;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    transition: transform 0.3s ease;
    text-decoration: none;
    color: inherit;
    background: #f0f0f0;
}

.ig-post:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.ig-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reel-icon {
    position: absolute;
    top: 8px;
    right: 8px;
    color: white;
    font-size: 1.2rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
    z-index: 2;
}

.ig-post {
    position: relative;
    display: block;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    transition: transform 0.3s ease;
    text-decoration: none;
    color: inherit;
    background: #f0f0f0;
}

/* Admin Styles (simplified) */
.admin-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    min-height: 100vh;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--accent-green);
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--cherry-dark);
}

.form-control {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #eee;
    border-radius: 8px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-orange);
}

.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    background: var(--cherry-red);
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.btn:hover {
    background: var(--cherry-dark);
    transform: translateY(-2px);
}

.btn-danger {
    background: #dc3545;
}

.btn-danger:hover {
    background: #c82333;
}

.admin-section {
    background: var(--bg-color);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--cherry-light);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.admin-table th, .admin-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #ddd;
}
