/* Root Variables - Elegant Floral Theme */
:root {
    --primary-color: #d4a5a5;
    --secondary-color: #9b7e7e;
    --accent-color: #e8b4b8;
    --dark-color: #3a3a3a;
    --light-color: #faf8f6;
    --white: #ffffff;
    --text-dark: #2c2c2c;
    --text-light: #6b6b6b;
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--light-color);
    overflow-x: hidden;
    position: relative;
}

/* Floating Flowers Animation */
.flower-decoration {
    position: fixed;
    width: 120px;
    height: 120px;
    background-image: url('../images/bg-flower.png');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0;
    z-index: 1;
    pointer-events: none;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.flower-top-left {
    top: 10%;
    left: 5%;
    animation: floatInOut 8s ease-in-out infinite;
}

.flower-top-right {
    top: 15%;
    right: 5%;
    animation: floatInOut 8s ease-in-out infinite 2s;
}

.flower-bottom-left {
    bottom: 25%;
    left: 3%;
    animation: floatInOut 8s ease-in-out infinite 4s;
    width: 140px;
    height: 140px;
}

.flower-bottom-right {
    bottom: 20%;
    right: 3%;
    animation: floatInOut 8s ease-in-out infinite 6s;
}

.flower-mid-left {
    top: 50%;
    left: 2%;
    animation: floatInOut 10s ease-in-out infinite 1s;
    width: 100px;
    height: 100px;
}

.flower-mid-right {
    top: 60%;
    right: 2%;
    animation: floatInOut 10s ease-in-out infinite 5s;
    width: 100px;
    height: 100px;
}

@keyframes floatInOut {
    0% {
        opacity: 0;
        transform: translateY(20px) rotate(0deg) scale(0.8);
    }
    25% {
        opacity: 0.6;
        transform: translateY(0) rotate(5deg) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translateY(-10px) rotate(-5deg) scale(1.05);
    }
    75% {
        opacity: 0.6;
        transform: translateY(0) rotate(3deg) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(20px) rotate(0deg) scale(0.8);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.2rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--primary-color);
    font-style: italic;
    letter-spacing: 2px;
    transition: var(--transition);
    text-decoration: none;
    cursor: pointer;
}

.logo:hover {
    color: var(--secondary-color);
}

/* Navbar shrink on scroll - desktop */
.navbar.scrolled .logo {
    font-size: 1.3rem;
}

.navbar.scrolled .nav-menu a {
    font-size: 0.85rem;
}

.navbar.scrolled .lang-btn {
    padding: 0.3rem 0.6rem;
    font-size: 0.75rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 400;
    transition: var(--transition);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: var(--transition);
}

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

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

.nav-menu a.active {
    color: var(--primary-color);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    transition: var(--transition);
}

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.lang-btn {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--text-dark);
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-family: 'Georgia', serif;
    cursor: pointer;
    transition: var(--transition);
}

.lang-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

.lang-btn.active {
    background: var(--primary-color);
    color: var(--white);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5e6e8 0%, #d4a5a5 100%);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="floral" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.3)"/></pattern></defs><rect width="100" height="100" fill="url(%23floral)"/></svg>');
    opacity: 0.4;
}

.hero-overlay::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background-image: url('../images/logo-only-flower.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
}

/* Hero Rotating Flowers */
.hero::before,
.hero::after {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    background-image: url('../images/bg-flower.png');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0;
    pointer-events: none;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.2));
}

.hero::before {
    top: 15%;
    left: 10%;
    animation: rotateFlowerIn 12s ease-in-out infinite;
}

.hero::after {
    bottom: 20%;
    right: 10%;
    animation: rotateFlowerIn 12s ease-in-out infinite 6s;
}

@keyframes rotateFlowerIn {
    0% {
        opacity: 0;
        transform: rotate(0deg) scale(0.5);
    }
    15% {
        opacity: 0.4;
        transform: rotate(45deg) scale(0.8);
    }
    30% {
        opacity: 0.6;
        transform: rotate(90deg) scale(1);
    }
    50% {
        opacity: 0.7;
        transform: rotate(180deg) scale(1.1);
    }
    70% {
        opacity: 0.5;
        transform: rotate(270deg) scale(0.9);
    }
    85% {
        opacity: 0.3;
        transform: rotate(315deg) scale(0.7);
    }
    100% {
        opacity: 0;
        transform: rotate(360deg) scale(0.5);
    }
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 5rem;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 1rem;
    font-style: italic;
    letter-spacing: 8px;
    text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.4),
                 0 0 30px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-shadow: 1px 2px 8px rgba(0, 0, 0, 0.4),
                 0 0 20px rgba(0, 0, 0, 0.2);
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 2px 6px rgba(0, 0, 0, 0.4),
                 0 0 15px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background: var(--white);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    background: var(--primary-color);
    color: var(--white);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator span {
    display: block;
    width: 20px;
    height: 30px;
    border: 2px solid var(--white);
    border-radius: 20px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--white);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(10px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Featured Section */
.featured {
    padding: 80px 0;
    background: var(--white);
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.featured-item {
    text-align: center;
    padding: 2rem;
    transition: var(--transition);
}

.featured-item:hover {
    transform: translateY(-10px);
}

.featured-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.featured-item h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 400;
}

.featured-item p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 300;
    font-style: italic;
}

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

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background: var(--light-color);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    background: var(--white);
    border: 1px solid var(--primary-color);
    color: var(--text-dark);
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: var(--transition);
    font-family: inherit;
}

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

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    aspect-ratio: 1;
    transition: var(--transition);
}

.gallery-item.hide {
    display: none;
}

.gallery-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: var(--transition);
    color: var(--white);
}

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

.gallery-overlay h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* About Hero Section */
.about-hero {
    height: 60vh;
    min-height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5e6e8 0%, #d4a5a5 100%);
    overflow: hidden;
    margin-top: 72px;
}

.about-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="floral" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.3)"/></pattern></defs><rect width="100" height="100" fill="url(%23floral)"/></svg>');
    opacity: 0.4;
}

.about-hero .hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.about-hero .hero-title {
    font-size: 4rem;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 1rem;
    font-style: italic;
    letter-spacing: 6px;
    text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.4),
                 0 0 30px rgba(0, 0, 0, 0.3);
}

.about-hero .hero-subtitle {
    font-size: 1.5rem;
    color: var(--white);
    font-weight: 300;
    letter-spacing: 2px;
    text-shadow: 1px 2px 8px rgba(0, 0, 0, 0.4),
                 0 0 20px rgba(0, 0, 0, 0.2);
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--white);
}

.about-page {
    padding: 80px 0;
    margin-top: 72px;
}

.about-details {
    margin-top: 3rem;
}

.about-details h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.about-details p {
    margin-bottom: 1.5rem;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-text h2 {
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-weight: 300;
    font-style: italic;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-image-placeholder {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image-placeholder img {
    width: 100%;
    height: auto;
    display: block;
}

/* Instagram Section */
.instagram-section {
    padding: 30px 0;
    background: linear-gradient(135deg, #f3a473 0%, #ea8967 25%, #e37a65 50%, #d46f7d 75%, #c86e9d 100%);
    color: var(--white);
}

.instagram-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.instagram-icon {
    margin-bottom: 0;
}

.instagram-icon svg {
    width: 50px;
    height: 50px;
}

.instagram-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0;
    font-weight: 300;
    font-style: italic;
}

.instagram-content p {
    font-size: 0.95rem;
    margin-bottom: 0;
    opacity: 0.95;
    line-height: 1.5;
}

.btn-instagram {
    display: inline-block;
    padding: 10px 30px;
    background: var(--white);
    color: #c837ab;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    transition: var(--transition);
}

.btn-instagram:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--light-color);
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.contact-item {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1rem;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--secondary-color);
}

.contact-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.contact-cta {
    background: var(--white);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contact-cta p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 2rem 0 1rem;
    position: relative;
    z-index: 10;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
    font-style: italic;
    color: var(--primary-color);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.footer-links {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-social a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.3rem;
    transition: var(--transition);
}

.footer-social a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

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

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
}

.lightbox-caption {
    color: var(--white);
    text-align: center;
    padding: 1rem;
    font-size: 1.2rem;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: none;
    font-size: 2rem;
    cursor: pointer;
    padding: 1rem 1.5rem;
    transition: var(--transition);
    border-radius: 5px;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-close {
    top: 20px;
    right: 20px;
}

.lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .flower-decoration {
        width: 90px;
        height: 90px;
    }

    .flower-bottom-left {
        width: 110px;
        height: 110px;
    }

    .flower-mid-left,
    .flower-mid-right {
        width: 80px;
        height: 80px;
    }

    .hero::before,
    .hero::after {
        width: 180px;
        height: 180px;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .flower-decoration {
        display: none;
    }

    .hero::before,
    .hero::after {
        width: 120px;
        height: 120px;
    }

    .hamburger {
        display: flex;
    }

    .nav-container {
        flex-wrap: nowrap;
    }

    .language-switcher {
        position: relative;
        top: auto;
        right: auto;
        width: 100%;
        padding: 0;
        margin-top: 1rem;
        padding-top: 1rem;
        background: transparent;
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        box-shadow: none;
        z-index: auto;
    }

    .nav-menu {
        position: fixed;
        top: var(--navbar-height, 72px);
        right: -100%;
        width: 100%;
        height: calc(100vh - var(--navbar-height, 72px));
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        transition: var(--transition);
        box-shadow: var(--shadow);
        gap: 1.5rem;
    }

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

    /* Shrink navbar on scroll - mobile */
    .navbar.scrolled {
        padding: 0.4rem 0;
    }

    .navbar.scrolled .logo {
        font-size: 1.2rem;
    }

    .navbar.scrolled .hamburger {
        transform: scale(0.85);
    }

    /* Adjust menu position when navbar shrinks */
    .navbar.scrolled + * .nav-menu,
    .navbar.scrolled .nav-menu {
        top: var(--navbar-height-scrolled, 52px);
        height: calc(100vh - var(--navbar-height-scrolled, 52px));
    }

    .hero-title {
        font-size: 3rem;
    }

    .featured-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }
}
