* { margin: 0; padding: 0; box-sizing: border-box; }
        body {
            font-family: 'Georgia', serif;
            background: linear-gradient(rgba(255,255,255,0.85), rgba(255,255,255,0.85)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><rect fill="%23f5f5f5" width="100" height="100"/></svg>') fixed center/cover;
            color: #333;
            line-height: 1.6;
        }
        .container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 30px 0;
            border-bottom: 1px solid #eee;
        }
        
        .header-left h1 { 
            font-size: 2.5em; 
            color: #2c2c2c; 
            margin-bottom: 5px;
        }
        
        .header-left .subtitle { 
            color: #666; 
            font-style: italic; 
        }

        .login-nav-btn {
            padding: 10px 25px;
            background: #2c2c2c;
            color: white;
            border: none;
            cursor: pointer;
            border-radius: 30px; 
            transition: 0.3s;
            font-size: 1em;
        }
        .login-nav-btn:hover { background: #555; transform: scale(1.05); }

        .about-section {
            text-align: center;
            max-width: 800px;
            margin: 60px auto;
            padding: 20px;
        }
        .about-section h2 { font-size: 2.5em; margin-bottom: 20px; color: #2c2c2c; }

        .featured-section {
            max-width: 1100px;
            margin: 60px auto;
            padding: 20px;
        }

        .section-title {
            text-align: center;
            font-size: 2.5em;
            margin-bottom: 40px;
            color: #2c2c2c;
        }

        .featured-gallery {
            display: grid;
            grid-template-columns: repeat(3, 1fr); 
            gap: 25px;
            margin: 40px auto;
        }

        .featured-item {
            overflow: hidden; 
            border-radius: 8px; 
            cursor: pointer;
            transition: all 0.4s ease; 
            border: 1px solid #ddd;
            background: #fff;
            padding: 15px;
        }

        .featured-item:hover {
            transform: translateY(-10px); 
            box-shadow: 0 10px 20px rgba(0,0,0,0.2); 
        }

        .featured-item img {
            width: 100%;
            height: 300px; 
            object-fit: contain;
            background: #f9f9f9;
            transition: transform 0.5s ease; 
        }

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

        .contact-section {
            background: white;
            padding: 50px;
            border-radius: 20px;
            box-shadow: 0 15px 50px rgba(0,0,0,0.1);
            margin: 60px auto 80px;
            max-width: 800px;
        }

        .contact-section h2 {
            text-align: center;
            font-size: 2.5em;
            margin-bottom: 30px;
            color: #2c2c2c;
        }

        .contact-form {
            display: grid;
            gap: 20px;
            max-width: 600px;
            margin: 0 auto;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-group label {
            margin-bottom: 8px;
            font-weight: bold;
            color: #2c2c2c;
        }

        .contact-form input, .contact-form textarea {
            width: 100%;
            padding: 15px;
            border: 1px solid #ddd;
            border-radius: 10px;
            font-family: inherit;
            background: #f9f9f9;
            font-size: 1em;
        }

        .contact-form textarea {
            min-height: 150px;
            resize: vertical;
        }

        .submit-button {
            background: #2c2c2c;
            color: white;
            padding: 15px;
            border: none;
            border-radius: 10px;
            cursor: pointer;
            font-weight: bold;
            transition: 0.3s;
            font-size: 1.1em;
        }

        .submit-button:hover { background: #000; }

        footer {
            text-align: center;
            padding: 40px;
            border-top: 1px solid #ddd;
            margin-top: 50px;
            color: #888;
        }

        /* MODAL */
        .modal {
            display: none;
            position: fixed;
            z-index: 20000;
            left: 0; 
            top: 0;
            width: 100%; 
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            justify-content: center;
            align-items: center;
            flex-direction: column;
        }

        .modal.active { display: flex !important; }

        .modal-content {
            position: relative;
            width: 80vw;
            height: 80vh; 
            display: flex;
            flex-direction: column; 
            justify-content: center;
            align-items: center;
            gap: 15px; 
        }

        #modalImg {
            max-width: 100%;
            max-height: 85%; 
            object-fit: contain;
            border: 4px solid white;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }

        #modalTitle {
            color: white;
            font-size: 1.4em;
            margin: 0;
            font-family: 'Georgia', serif;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border: none;
            font-size: 45px;
            padding: 20px 10px;
            cursor: pointer;
            z-index: 20001;
            transition: 0.3s;
        }

        .nav-btn:hover { background: rgba(255, 255, 255, 0.3); }
        .prev { left: 30px; }
        .next { right: 30px; }

        .close {
            position: absolute;
            top: 20px;
            right: 35px;
            color: #f1f1f1;
            font-size: 40px;
            font-weight: bold;
            cursor: pointer;
            z-index: 20002;
        }

        /* LOGIN MODAL */
        #loginModal {
            display: none;
            position: fixed;
            z-index: 30000;
            left: 0; top: 0;
            width: 100%; height: 100%;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(10px);
            justify-content: center;
            align-items: center;
        }

        #loginModal.active { display: flex; }

        .login-content {
            background: white;
            padding: 40px;
            border-radius: 20px;
            width: 350px;
            text-align: center;
            box-shadow: 0 20px 40px rgba(0,0,0,0.4);
            position: relative;
        }

        .login-content h2 {
            margin-bottom: 25px;
            color: #2c2c2c;
            font-size: 1.8em;
        }

        #modalPassword {
            width: 100%;
            padding: 15px;
            margin-bottom: 20px;
            border: 2px solid #eee;
            border-radius: 12px;
            font-size: 16px;
            outline: none;
            transition: 0.3s;
        }

        #modalPassword:focus {
            border-color: #2c2c2c;
        }

        .login-content button {
            width: 100%;
            padding: 15px;
            background: #2c2c2c;
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 1.1em;
            cursor: pointer;
            transition: 0.3s;
            font-weight: bold;
        }

        .login-content button:hover {
            background: #000;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }

        #modalError {
            color: #ff4d4d;
            margin-top: 15px;
            font-size: 0.9em;
            font-weight: bold;
        }

        @media (max-width: 768px) {
            .featured-gallery {
                grid-template-columns: 1fr;
            }
            header {
                flex-direction: column;
                gap: 20px;
            }
        }