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

body {
    font-family: sans-serif;
    font-weight: 200;
    background-color: #FFFDF5;
    color: #333;
}

/* Navigation */
nav {
    position: fixed;
    left: 0;
    top: 0;
    width: 250px;
    height: 100vh;
    background: linear-gradient(135deg, #ffffff 50%, #ffffff 50%);
    padding: 40px 20px;
    box-shadow: 4px 0 15px rgba(0,0,0,0.15);
}

.logo {
    color: #000000;
    font-size: 28px;
    margin-bottom: 50px;
    text-align: center;
    letter-spacing: 2px;
}

nav ul {
    list-style: none;
}

nav ul li {
    margin-bottom: 25px;
}

nav ul li a {
    color: #000000;
    text-decoration: none;
    font-size: 22px;
    display: block;
    padding: 12px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fcb1e8;
    transform: translateX(5px);
}

/* Main Content */
.container {
    background-color: #FFFDF5;
    margin-left: 250px;
    padding: 60px 80px;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    letter-spacing: 2px;
    min-width: 600px;
}

.hero-image {
    width: 38%;
    max-width: 400px;
    height: auto;
    min-width: 250px;
    margin-bottom: 0rem;
    border-radius: 8px;
}

/* Header */
header {
    text-align: center;
    margin-bottom: 60px;
}

header h1 {
    font-weight: 300;
    font-size: 48px;
    color: #000;
    margin-bottom: 10px;
    font-variant: small-caps;
}

header p {
    font-size: 18px;
    color: #7f8c8d;
    font-style: italic;
}

/* Pricing Menu */
.pricing-menu {
    width: 100%;
    max-width: 800px;
    min-width: 600px;
    background: #fff;
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    margin-bottom: 60px;
}

.menu-section {
    margin-bottom: 40px;
}

.menu-section:last-child {
    margin-bottom: 0;
}

.section-title {
    font-size: 32px;
    font-weight: 600;
    color: #4a5f3a;
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-variant: small-caps;
}

.section-title::before,
.section-title::after {
    content: '';
    flex-grow: 1;
    height: 2px;
    background: #fcb1e8;
}

.menu-item {
    display: flex;
    align-items: baseline;
    margin-bottom: 15px;
    font-size: 20px;
}

.sub-item {
    font-size: 16px;
    font-style: italic;
    color: #666;
    margin-left: 20px;
    margin-top: -10px;
}

.service-name {
    white-space: nowrap;
    color: #333;
}

.dots {
    flex-grow: 1;
    border-bottom: 2px dotted #fcb1e8;
    margin: 0 10px 5px 10px;
    min-width: 20px;
}

.price {
    white-space: nowrap;
    font-weight: 500;
    color: #333;
}

/* Blog Posts */
.blog-post {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.post-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    color: #95a5a6;
    font-size: 14px;
}

.blog-post h2 {
    font-weight: 300;
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.blog-post p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.read-more {
    display: inline-block;
    color: #3498db;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #2980b9;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    width: 100%;
    max-width: 900px;
    margin-bottom: 60px;
}

.service-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.service-card h3 {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-card p {
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
}

.service-card .price {
    display: block;
    color: #fcb1e8;
    font-weight: bold;
    font-size: 18px;
}

/* Booking Section */
.booking-section {
    background: #fff;
    border-radius: 12px;
    padding: 50px;
    width: 100%;
    max-width: 1000px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
}

.booking-section h2 {
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 15px;
    color: #2c3e50;
    font-variant: small-caps;
}

.booking-description {
    color: #7f8c8d;
    margin-bottom: 40px;
    font-size: 16px;
}

.booking-button {
    display: inline-block;
    background-color: #fcb1e8;
    color: white;
    padding: 18px 50px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-bottom: 40px;
    font-variant: small-caps;
}

.booking-button:hover {
    background-color: #fa9dd9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(252, 177, 232, 0.4);
}

.contact-info {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.contact-info h3 {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 20px;
    color: #2c3e50;
}

.contact-info p {
    color: #555;
    margin-bottom: 12px;
    font-size: 16px;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    width: 100%;
    max-width: 1200px;
    margin-bottom: 60px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    aspect-ratio: 1;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.modal-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 8px;
    animation: zoom 0.3s;
}

@keyframes zoom {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.close {
    position: absolute;
    top: 30px;
    right: 50px;
    color: #fff;
    font-size: 50px;
    font-weight: 300;
    transition: color 0.3s;
}

.close:hover {
    color: #fcb1e8;
}

/* Two Column Layout */
.two-column-wrapper {
    display: flex;
    gap: 40px;
    width: 100%;
    max-width: 1400px;
    margin-bottom: 60px;
}

.left-column {
    flex: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.right-column {
    flex: 1;
    min-width: 300px;
}

.social-media-container {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    position: sticky;
    top: 60px;
    text-align: center;
    color: #7f8c8d;
    min-width: 351px;
    z-index: 1;
}

.Rken {
    transform: rotate(0deg) translateY(20px) translateX(0px);
    z-index: -100;
    max-height: 40px;
}

.cursive {
    font-weight: bold;
    font-size-adjust: 0.6;
}

/* Responsive - Tablet/Desktop Lower Resolutions */
@media (max-width: 1024px) {
    .two-column-wrapper {
        flex-direction: column;
        gap: 30px;
    }
    
    .right-column {
        width: 100%;
        order: 2;
    }
    
    .left-column {
        order: 1;
    }
    
    .social-media-container {
        position: static;
    }
}

/* Responsive - Mobile/Tablet */
@media (max-width: 768px) {
    /* Navigation moves to top */
    nav {
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: auto;
        padding: 20px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.15);
        z-index: 1000;
    }
    
    .logo {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    nav ul {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 10px;
        flex-wrap: wrap;
    }
    
    nav ul li {
        margin-bottom: 0;
    }
    
    nav ul li a {
        font-size: 18px;
        padding: 10px 15px;
    }
    
    /* Container adjusts for top nav */
    .container {
        margin-left: 0;
        margin-top: 140px;
        padding: 30px 20px;
        min-width: auto;
        max-width: 600px;
    }
    
    /* Hero image */
    .hero-image {
        width: 50%;
        margin-bottom: 2rem;
    }
    
    /* Headers */
    header h1 {
        font-size: 36px;
    }
    
    header p {
        font-size: 16px;
    }
    
    /* Pricing menu */
    .pricing-menu {
        padding: 30px 20px;
        min-width: auto;
    }
    
    .section-title {
        font-size: 24px;
        gap: 10px;
    }
    
    .menu-item {
        font-size: 16px;
        flex-wrap: wrap;
    }
    
    .sub-item {
        font-size: 14px;
        margin-left: 10px;
    }
    
    .service-name {
        white-space: normal;
    }
    
    /* Blog posts */
    .blog-post {
        padding: 25px;
    }
    
    .blog-post h2 {
        font-size: 24px;
    }
    
    .blog-post p {
        font-size: 16px;
    }
    
    .post-meta {
        flex-direction: column;
        gap: 5px;
    }
    
    /* Services grid */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 25px;
    }
    
    .service-card h3 {
        font-size: 22px;
    }
    
    /* Booking section */
    .booking-section {
        padding: 30px 20px;
    }
    
    .booking-section h2 {
        font-size: 28px;
    }
    
    .booking-button {
        padding: 15px 35px;
        font-size: 16px;
    }
    
    .contact-info h3 {
        font-size: 20px;
    }
    
    .contact-info p {
        font-size: 14px;
    }
    
    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .close {
        top: 20px;
        right: 30px;
        font-size: 40px;
    }
    
    /* Rken image */
    .Rken {
        transform: rotate(0deg);
        z-index: 1001;
        max-height: 60px;
        width: 100px;
        position: fixed;
        top: 20px;
        left: 20px;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .container {
        margin-top: 160px;
        padding: 20px 15px;
    }
    
    .logo {
        font-size: 20px;
    }
    
    /* Keep nav items horizontal on small screens */
    nav ul {
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 8px;
        flex-wrap: wrap;
    }
    
    nav ul li a {
        font-size: 16px;
        padding: 8px 12px;
    }
    
    header h1 {
        font-size: 28px;
    }
    
    .hero-image {
        width: 60%;
        max-width: 200px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .menu-item {
        font-size: 14px;
    }
    
    .booking-button {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .Rken {
        width: 50px;
    }
}
.logo {
    color:#4a5f3a;
}