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

html {
    width: 100%;
    height: 100%;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #ffffff;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    width: 100%;
    min-height: 100vh;
    height: auto;
    color: #333;
    line-height: 1.7;
    position: relative;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: "kern" 1;
    text-rendering: optimizeLegibility;
}

/* Lock Screen */
.lock-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.3s ease;
}

.lock-screen.hidden {
    opacity: 0;
    pointer-events: none;
    display: none;
}

.lock-container {
    text-align: center;
    padding: 40px;
    max-width: 400px;
    width: 90%;
}

.lock-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.6;
}

.lock-title {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 30px;
    font-weight: 600;
}

.lock-input {
    width: 100%;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.lock-input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.lock-btn {
    width: 100%;
    padding: 15px;
    background: #667eea;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lock-btn:hover {
    background: #5568d3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.lock-btn:active {
    transform: translateY(0);
}

.lock-error {
    color: #dc3545;
    font-size: 0.9rem;
    margin-top: 15px;
    min-height: 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 100vh;
}

/* Header */
.header {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px 0;
}

.header-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.main-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 25px;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
    line-height: 1.2;
    animation: fadeInDown 0.8s ease-out;
}

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

.main-title::after {
    content: '👩‍🍳';
    font-size: 2.5rem;
    margin-left: 15px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.page-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.3;
}

.comment-btn {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 16px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.comment-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.comment-btn:hover::before {
    width: 300px;
    height: 300px;
}

.comment-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 25px rgba(102, 126, 234, 0.5);
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.comment-btn:active {
    transform: translateY(0) scale(0.98);
}

.travel-btn {
    background: linear-gradient(135deg, #4285f4 0%, #34a853 100%);
    box-shadow: 0 4px 15px rgba(66, 133, 244, 0.4);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.travel-btn:hover {
    box-shadow: 0 6px 25px rgba(66, 133, 244, 0.5);
    background: linear-gradient(135deg, #34a853 0%, #4285f4 100%);
}

.travel-btn svg {
    transition: transform 0.3s ease;
}

.travel-btn:hover svg {
    transform: scale(1.2) rotate(5deg);
}

.back-btn {
    display: inline-block;
    color: #667eea;
    text-decoration: none;
    font-size: 1.2rem;
    margin-bottom: 20px;
    transition: opacity 0.3s ease;
    font-weight: 500;
}

.back-btn:hover {
    opacity: 0.7;
}

/* Hero Section */
.hero {
    margin-bottom: 50px;
    animation: fadeInUp 0.8s ease-out;
}

.hero-image {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    background: #fff;
    border: 1px solid #e9ecef;
    position: relative;
    animation: float 6s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.hero-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(245, 87, 108, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

.hero-image:hover::before {
    opacity: 1;
}

.hero-photo {
    width: 100%;
    height: auto;
    display: block;
    animation: zoomIn 1s ease-out, fadeIn 1s ease-out;
    transition: transform 0.5s ease;
}

.hero-image:hover .hero-photo {
    transform: scale(1.05);
}

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

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

@keyframes zoomIn {
    from {
        transform: scale(0.95);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

.placeholder-image {
    width: 100%;
    min-height: 400px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.placeholder-content {
    text-align: center;
}

.chef-icon {
    font-size: 5rem;
    display: block;
    margin-bottom: 10px;
}

.placeholder-content p {
    color: #6c757d;
    font-size: 1.2rem;
}

/* Satisfaction Section */
.satisfaction-section {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    margin-bottom: 40px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    position: relative;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    line-height: 1.3;
}

.satisfaction-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    flex-direction: row;
}

.satisfaction-item {
    flex: 0 0 auto;
}

.satisfaction-btn {
    background: #ffffff;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 20px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    min-width: 120px;
    position: relative;
    overflow: hidden;
    animation: scaleIn 0.5s ease-out;
    animation-fill-mode: both;
}

.satisfaction-item:nth-child(1) .satisfaction-btn {
    animation-delay: 0.7s;
}

.satisfaction-item:nth-child(2) .satisfaction-btn {
    animation-delay: 0.8s;
}

.satisfaction-item:nth-child(3) .satisfaction-btn {
    animation-delay: 0.9s;
}

.satisfaction-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(102, 126, 234, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
}

.satisfaction-btn:hover::before {
    width: 200px;
    height: 200px;
}

.satisfaction-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.satisfaction-btn:active {
    transform: translateY(-2px) scale(1.02);
}

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

.satisfaction-btn.happy:hover {
    border-color: #28a745;
    background: #f0fff4;
}

.satisfaction-btn.neutral:hover {
    border-color: #ffc107;
    background: #fffbf0;
}

.satisfaction-btn.sad:hover {
    border-color: #dc3545;
    background: #fff5f5;
}

.satisfaction-btn .emoji {
    font-size: 3.5rem;
    line-height: 1;
}

.satisfaction-btn .count {
    font-weight: 700;
    color: #2c3e50;
    font-size: 1.3rem;
}

/* Gallery Section */
.gallery-section {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    margin-bottom: 40px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    position: relative;
    animation: fadeInUp 1s ease-out 0.7s both;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    aspect-ratio: 1;
    border: 2px solid #e9ecef;
    position: relative;
    animation: scaleIn 0.5s ease-out;
    animation-fill-mode: both;
}

.gallery-item:nth-child(1) {
    animation-delay: 0.8s;
}

.gallery-item:nth-child(2) {
    animation-delay: 0.9s;
}

.gallery-item:nth-child(3) {
    animation-delay: 1s;
}

.gallery-item:nth-child(4) {
    animation-delay: 1.1s;
}

.gallery-item::before {
    content: '📸';
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
    background: rgba(255, 255, 255, 0.9);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.gallery-item:hover {
    transform: scale(1.05) translateY(-5px);
    border-color: #667eea;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.gallery-item:hover::before {
    opacity: 1;
}

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

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

.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    font-size: 3rem;
}

/* Comment Form */
.comment-form-section {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    margin-bottom: 40px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 1.05rem;
    letter-spacing: 0.2px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1.05rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background: #f8f9fa;
    line-height: 1.6;
    letter-spacing: 0.2px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 16px;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(102, 126, 234, 0.5);
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

/* Comments List */
.comments-section {
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    animation: fadeInUp 1s ease-out 0.9s both;
    margin-bottom: 40px;
}

.comments-list {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.comment-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 30px;
    border-radius: 20px;
    border-left: 5px solid #667eea;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    animation: fadeInLeft 0.6s ease-out;
    animation-fill-mode: both;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.comment-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
    transition: width 0.3s ease;
}

.comment-item:hover::before {
    width: 8px;
}

.comment-item:nth-child(1) {
    animation-delay: 1s;
}

.comment-item:nth-child(2) {
    animation-delay: 1.1s;
}

.comment-item:nth-child(3) {
    animation-delay: 1.2s;
}

.comment-item:nth-child(4) {
    animation-delay: 1.3s;
}

.comment-item:nth-child(5) {
    animation-delay: 1.4s;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.comment-item:hover {
    transform: translateX(8px) translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
    background: #ffffff;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    flex-wrap: wrap;
    gap: 10px;
}

.comment-name {
    font-weight: 600;
    color: #667eea;
    font-size: 1.15rem;
    letter-spacing: 0.3px;
}

.comment-date {
    color: #6c757d;
    font-size: 0.9rem;
}

.comment-text {
    color: #495057;
    line-height: 1.8;
    font-size: 1.05rem;
    font-weight: 400;
    letter-spacing: 0.2px;
}

/* Footer */
.footer {
    text-align: center;
    padding: 20px 0;
    color: #9ca3af;
    margin-top: 40px;
    font-size: 0.75rem;
    font-weight: 400;
    opacity: 0.6;
}

.footer::before {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    html, body {
        width: 100%;
        overflow-x: hidden;
    }
    
    body {
        background: #ffffff;
    }

    .lock-container {
        padding: 30px 20px;
    }

    .lock-icon {
        font-size: 3rem;
    }

    .lock-title {
        font-size: 1.3rem;
    }

    .lock-input {
        font-size: 1rem;
        padding: 12px;
    }

    .lock-btn {
        font-size: 1rem;
        padding: 12px;
    }

    .main-title {
        font-size: 2.2rem;
        letter-spacing: 1px;
    }

    .main-title::after {
        font-size: 1.8rem;
        margin-left: 10px;
    }

    .page-title {
        font-size: 1.8rem;
    }

    .header-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .comment-btn {
        padding: 14px 35px;
        font-size: 1rem;
        display: block;
        width: auto;
        margin: 0 auto;
    }

    .satisfaction-stats {
        gap: 15px;
        flex-direction: row;
        justify-content: center;
    }

    .satisfaction-item {
        flex: 0 0 auto;
    }

    .satisfaction-btn {
        min-width: 100px;
        padding: 18px 25px;
    }

    .satisfaction-btn .emoji {
        font-size: 3rem;
    }

    .container {
        padding: 15px;
        width: 100%;
    }

    .comment-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .satisfaction-section,
    .comment-form-section,
    .comments-section {
        padding: 25px 20px;
    }
}

@media (max-width: 480px) {
    html, body {
        width: 100%;
        overflow-x: hidden;
    }
    
    body {
        background: #ffffff;
    }

    .lock-container {
        padding: 20px 15px;
    }

    .lock-icon {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .lock-title {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }

    .lock-input {
        font-size: 0.95rem;
        padding: 12px;
    }

    .lock-btn {
        font-size: 0.95rem;
        padding: 12px;
    }
    
    .main-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }

    .main-title::after {
        font-size: 1.5rem;
        margin-left: 8px;
    }

    .section-title {
        font-size: 1.5rem;
        letter-spacing: 0.5px;
    }

    .satisfaction-stats {
        gap: 10px;
        flex-direction: row;
        justify-content: center;
    }

    .satisfaction-item {
        flex: 0 0 auto;
    }
    
    .satisfaction-btn {
        min-width: 90px;
        padding: 15px 20px;
    }
    
    .satisfaction-btn .emoji {
        font-size: 2.5rem;
    }
    
    .container {
        padding: 10px;
        width: 100%;
    }
    
    .header {
        padding: 20px 0;
    }
    
    .hero-image {
        border-radius: 15px;
    }
    
    .satisfaction-section,
    .comment-form-section,
    .comments-section {
        padding: 20px 15px;
        border-radius: 15px;
    }
}
