:root {
    --bg-color: #FDFBF7;
    --text-color: #5D5353;
    --accent-color: #E27ECD;
    --accent-hover: #d06bbd;
    --secondary-text: #8c8080;
    --card-bg: #FFFFFF;
    --border-color: rgba(226, 126, 205, 0.3);
    --font-main: 'Montserrat', sans-serif;
    --font-script: 'Great Vibes', cursive;
    --shadow-soft: 0 10px 30px rgba(0,0,0,0.05);
    --radius-card: 20px;
    --radius-btn: 30px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

.main-container {
    max-width: 480px; /* Taplink style width */
    margin: 0 auto;
    background-color: var(--bg-color);
    min-height: 100vh;
    padding-bottom: 80px; /* Space for sticky button */
    position: relative;
    box-shadow: 0 0 50px rgba(0,0,0,0.03);
}

/* Typography */
h1, h2, h3 {
    font-weight: normal;
}

.section-title {
    font-family: var(--font-script);
    font-size: 48px;
    color: var(--accent-color);
    text-align: center;
    margin: 40px 0 30px;
    line-height: 1.2;
}

/* Hero Section */
.hero-section {
    padding: 60px 20px 40px;
    text-align: center;
    background: radial-gradient(circle at top right, rgba(226, 126, 205, 0.1), transparent 70%);
}

.brand-name {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: var(--secondary-text);
}

.hero-title {
    font-family: var(--font-script);
    font-size: 56px;
    color: var(--accent-color);
    line-height: 1.1;
    margin-bottom: 10px;
    transform: rotate(-3deg);
}

.hero-subtitle {
    font-size: 14px;
    border: 1px solid var(--accent-color);
    display: inline-block;
    padding: 5px 20px;
    border-radius: 20px;
    color: var(--text-color);
    margin-bottom: 25px;
    text-transform: lowercase;
}

.hero-description {
    font-size: 15px;
    color: var(--secondary-text);
    margin-bottom: 30px;
    padding: 0 10px;
}

/* Buttons */
.cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
    padding: 15px 40px;
    border-radius: var(--radius-btn);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    box-shadow: 0 5px 15px rgba(226, 126, 205, 0.4);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover, .cta-button:active {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(226, 126, 205, 0.5);
}

.sticky-cta-wrapper {
    position: fixed;
    bottom: 20px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 100;
    pointer-events: none; /* Let clicks pass through wrapper */
}

.sticky-btn {
    pointer-events: auto;
    width: 90%;
    max-width: 400px;
    text-align: center;
    padding: 18px;
    font-size: 16px;
}

/* About Section */
.about-section {
    padding: 20px;
}

.about-card {
    background: var(--card-bg);
    border-radius: var(--radius-card);
    padding: 30px 20px;
    text-align: center;
    box-shadow: var(--shadow-soft);
}

.about-image-wrapper {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-color);
}

.about-content p {
    font-size: 14px;
    color: var(--secondary-text);
}

/* Services Section */
.services-section {
    padding: 20px;
}

.service-card {
    background: var(--card-bg);
    border-radius: var(--radius-card);
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-soft);
    border: 1px solid transparent;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-3px);
}

.service-card.highlight {
    border-color: var(--border-color);
    background: linear-gradient(to bottom right, #fff, #fffbf7);
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 10px 0;
}

.separator {
    height: 1px;
    background-color: rgba(0,0,0,0.05);
    margin: 5px 0;
}

.service-info {
    flex: 1;
    padding-right: 15px;
}

.service-name {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 4px;
}

.service-desc {
    font-size: 12px;
    color: var(--secondary-text);
    font-weight: 300;
}

.service-price {
    font-size: 16px;
    font-weight: 600;
    color: var(--accent-color);
    white-space: nowrap;
}

.service-group-title {
    text-align: center;
    margin: 30px 0 15px;
    font-size: 14px;
    color: var(--secondary-text);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-group-title::before, .service-group-title::after {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background-color: var(--border-color);
    margin: 0 10px;
}

/* Portfolio Section */
.portfolio-section {
    padding: 20px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.portfolio-item {
    aspect-ratio: 1;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    transition: transform 0.2s;
}

.portfolio-item:hover {
    transform: scale(1.02);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80vh;
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: var(--text-color);
    cursor: pointer;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Booking Section */
.booking-section {
    padding: 40px 20px 80px;
    text-align: center;
}

.booking-desc {
    margin-bottom: 30px;
    color: var(--secondary-text);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: transform 0.2s;
}

.social-btn:hover {
    transform: translateY(-2px);
}

.social-btn svg {
    width: 20px;
    height: 20px;
}

.telegram {
    background-color: #e3f1fc;
    color: #2481cc;
}

.whatsapp {
    background-color: #e3fcf0;
    color: #25d366;
}

.contact-phone {
    font-size: 18px;
    color: var(--text-color);
    font-weight: 500;
    margin-top: 10px;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background-color: white;
    font-size: 12px;
    color: var(--secondary-text);
}

.footer-name {
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-color);
}

/* Desktop Specific Adjustments */
@media (min-width: 768px) {
    .main-container {
        border-left: 1px solid rgba(0,0,0,0.03);
        border-right: 1px solid rgba(0,0,0,0.03);
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
