/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Montserrat:wght@300;400;600&family=Dancing+Script:wght@700&family=Poppins:wght@400;600;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffd6e7;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

h1 {
    font-size: 3.5rem;
    letter-spacing: 1px;
}

h2 {
    font-size: 2.8rem;
    position: relative;
    display: inline-block;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--dark-pink), transparent);
}

.logo {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
}

/* Updated color palette */
:root {
    --baby-pink: #ffd6e7;
    --dark-pink: #ff85b3;
    --white: #ffffff;
    --black: #222222;
    --beige: #f5f5dc;
    --text-dark: #333;
    --text-light: #666;
}

/* Main layout styles */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header styles */
.header {
    background-color: #ffd6e7; /* Baby pink header */
    padding: 20px 0;
    position: fixed;
    width: 100%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    border-bottom: 1px solid rgba(255,133,179,0.2); /* Dark pink border */
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Great Vibes', cursive;
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--dark-pink);
    text-decoration: none;
    position: relative;
    letter-spacing: 1px;
}

.logo::before, .logo::after {
    content: "❀";
    color: var(--dark-pink);
    font-size: 1.2rem;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
}

.logo::before {
    left: -15px;
}

.logo::after {
    right: -15px;
}

.nav-menu {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-menu a {
    color: var(--black);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    letter-spacing: 1px;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--dark-pink);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--dark-pink);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: #333;
    transition: all 0.3s ease;
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile menu styles */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: #fff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 15px 0;
    }
}

/* Hero section styles */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background-color: #ffd6e7;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 80px;
    width: 100%;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-image {
    flex: 1;
    text-align: center;
    position: relative;
    background-color: rgba(255,255,255,0.3);
    border-radius: 15px;
    padding: 20px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    max-width: 800px;
    height: 80vh;
    display: block;
    object-fit: cover;
    object-position: center 30%;
    margin: 0 auto;
}

/* Fallback if image fails to load */
.hero-image:before {
    content: "Sikha's Photo";
    position: absolute;
    color: var(--dark-pink);
    font-size: 1.5rem;
    font-weight: bold;
    display: none;
}

.hero-image img[src=""]:before,
.hero-image img:not([src]):before {
    display: block;
}

@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        gap: 40px;
    }
    .hero-image {
        margin-top: 40px;
    }
    .hero-image img {
        max-width: 100%;
        min-width: auto;
    }
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--dark-pink);
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    display: inline-block;
}

.hero h1::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--dark-pink), transparent);
}

.subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.1);
    z-index: -1;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.btn:hover::before {
    transform: translateY(0);
}

.btn-primary {
    background-color: var(--dark-pink);
    color: var(--white);
    border: 1px solid var(--dark-pink);
    border-radius: 4px;
    transition: all 0.25s cubic-bezier(0.645,0.045,0.355,1);
}

.btn-primary:hover {
    background-color: var(--baby-pink);
    color: var(--black);
    transform: translateY(-3px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--dark-pink);
    border: 1px solid var(--dark-pink);
    border-radius: 4px;
    transition: all 0.25s cubic-bezier(0.645,0.045,0.355,1);
}

.btn-secondary:hover {
    background-color: var(--baby-pink);
    transform: translateY(-3px);
}

/* About section styles */
.about {
    padding: 100px 0;
    background-color: #ffd6e7;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.2) 0%, transparent 70%);
    z-index: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: var(--dark-pink);
}

.section-header .subtitle {
    color: var(--text-light);
    font-size: 1.3rem;
    font-weight: 300;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transform-style: preserve-3d;
    transition: all 0.5s ease;
    perspective: 1000px;
}

.about-card-inner {
    display: flex;
    gap: 40px;
}

.about-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 30px 50px rgba(0,0,0,0.15);
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 1.8rem;
    color: var(--dark-pink);
    margin-bottom: 20px;
    position: relative;
}

.about-text h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--dark-pink);
}

.about-text p {
    margin-bottom: 25px;
    line-height: 1.8;
    font-size: 1.1rem;
}

.skills {
    margin-top: 40px;
}

.skills h3 {
    font-size: 1.5rem;
    color: var(--dark-pink);
    margin-bottom: 20px;
}

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

.skill-item {
    background: var(--baby-pink);
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.skill-item:hover {
    background: var(--dark-pink);
    color: white;
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .skills-grid {
        grid-template-columns: 1fr;
    }
}

/* Portfolio section styles */
.portfolio {
    padding: 80px 0;
    background-color: #ffd6e7; /* Baby pink background */
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.portfolio-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.portfolio-card:hover {
    transform: translateY(-10px);
}

.portfolio-card img {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: contain;
}

.portfolio-card {
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.portfolio-info {
    padding: 20px;
    background: #fff;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.portfolio-info {
    padding: 20px;
    background: #fff;
}

.portfolio-info h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.portfolio-info p {
    color: #666;
    margin-bottom: 15px;
}

.packages-container {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    gap: 30px;
}

.package-column {
    flex: 1;
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.package-column h3 {
    color: var(--dark-pink);
    margin-bottom: 20px;
    text-align: center;
    font-size: 1.5rem;
    font-family: 'Great Vibes', cursive;
}

.package-list {
    list-style: none;
}

.package-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.package-list li:before {
    content: "•";
    color: var(--dark-pink);
    font-size: 1.5rem;
    margin-right: 10px;
}

.package-list li:last-child {
    border-bottom: none;
}

@media (max-width: 768px) {
    .packages-container {
        flex-direction: column;
        gap: 20px;
    }
}

/* Blog section styles */
.blog {
    padding: 80px 0;
    background-color: #fff;
}

.portfolio-image {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    aspect-ratio: 1/1;
}

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

.portfolio-image:hover img {
    transform: scale(1.05);
}

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

@media (max-width: 1200px) {
    #portfolio-showcase .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    #portfolio-showcase .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    #portfolio-showcase .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

.post-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.post-card:hover {
    transform: translateY(-5px);
}

.post-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.post-content {
    padding: 20px;
}

.post-content h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.post-date {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.post-content p {
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Contact section styles */
.contact {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
}

.form-group textarea {
    resize: vertical;
}

/* Footer styles */
.footer {
    background-color: #0a192f;
    color: #ccd6f6;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(100,255,218,0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-about p {
    color: #ecf0f1;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #3498db;
}

.social-icons {
    display: flex;
    gap: 15px;
}

/* Reviews section styles */
.reviews {
    padding: 80px 0;
    background-color: #ffd6e7;
}

.reviews-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.review-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    width: 350px;
    transition: all 0.5s ease;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.review-card:hover {
    transform: rotateY(15deg) translateX(10px);
    box-shadow: 20px 10px 30px rgba(0,0,0,0.2);
}

.stars {
    color: #ffc107;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.review-text {
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 15px;
}

.review-author {
    font-weight: bold;
    color: var(--dark-pink);
}

@media (max-width: 768px) {
    .review-card {
        width: 100%;
    }
}

.social-icons a {
    color: #fff;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #3498db;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    color: #bdc3c7;
    font-size: 0.9rem;
}

/* Gallery section styles */
.gallery-table {
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
    padding: 20px 0;
    scrollbar-width: thin;
    scrollbar-color: var(--dark-pink) var(--baby-pink);
}

.gallery-table::-webkit-scrollbar {
    height: 8px;
}

.gallery-table::-webkit-scrollbar-track {
    background: var(--baby-pink);
    border-radius: 10px;
}

.gallery-table::-webkit-scrollbar-thumb {
    background-color: var(--dark-pink);
    border-radius: 10px;
}

.gallery-row {
    display: inline-flex;
    gap: 15px;
    padding-bottom: 10px;
}

.gallery-item {
    display: inline-block;
    width: 200px;
    vertical-align: top;
    white-space: normal;
    position: relative;
}

.gallery-image-container {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 5px;
}

.gallery-image-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

.gallery-overlay {
    padding: 10px 0;
    text-align: center;
    background: rgba(255,255,255,0.9);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--dark-pink);
}

.gallery-overlay p {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Filter buttons */
.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.filter-btn {
    padding: 8px 16px;
    background: white;
    border: 1px solid var(--dark-pink);
    color: var(--dark-pink);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--dark-pink);
    color: white;
}
}

/* Gallery section styles */
.gallery-table {
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
    padding: 20px 0;
    scrollbar-width: thin;
    scrollbar-color: var(--dark-pink) var(--baby-pink);
}

.gallery-table::-webkit-scrollbar {
    height: 8px;
}

.gallery-table::-webkit-scrollbar-track {
    background: var(--baby-pink);
    border-radius: 10px;
}

.gallery-table::-webkit-scrollbar-thumb {
    background-color: var(--dark-pink);
    border-radius: 10px;
}

.gallery-row {
    display: inline-flex;
    gap: 15px;
    padding-bottom: 10px;
}

.gallery-item {
    display: inline-block;
    width: 200px;
    vertical-align: top;
    white-space: normal;
    position: relative;
}

.gallery-image-container {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 5px;
}

.gallery-image-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

.gallery-overlay {
    padding: 10px 0;
    text-align: center;
    background: rgba(255,255,255,0.9);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--dark-pink);
}

.gallery-overlay p {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Filter buttons */
.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.filter-btn {
    padding: 8px 16px;
    background: white;
    border: 1px solid var(--dark-pink);
    color: var(--dark-pink);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--dark-pink);
    color: white;
}
}